init_dump.proto 1.3 KB

1234567891011121314151617181920212223242526272829303132
  1. syntax = "proto3";
  2. package envoy.admin.v3;
  3. import "udpa/annotations/status.proto";
  4. option java_package = "io.envoyproxy.envoy.admin.v3";
  5. option java_outer_classname = "InitDumpProto";
  6. option java_multiple_files = true;
  7. option go_package = "github.com/envoyproxy/go-control-plane/envoy/admin/v3;adminv3";
  8. option (udpa.annotations.file_status).package_version_status = ACTIVE;
  9. // [#protodoc-title: InitDump]
  10. // Dumps of unready targets of envoy init managers. Envoy's admin fills this message with init managers,
  11. // which provides the information of their unready targets.
  12. // The :ref:`/init_dump <operations_admin_interface_init_dump>` will dump all unready targets information.
  13. message UnreadyTargetsDumps {
  14. // Message of unready targets information of an init manager.
  15. message UnreadyTargetsDump {
  16. // Name of the init manager. Example: "init_manager_xxx".
  17. string name = 1;
  18. // Names of unready targets of the init manager. Example: "target_xxx".
  19. repeated string target_names = 2;
  20. }
  21. // You can choose specific component to dump unready targets with mask query parameter.
  22. // See :ref:`/init_dump?mask={} <operations_admin_interface_init_dump_by_mask>` for more information.
  23. // The dumps of unready targets of all init managers.
  24. repeated UnreadyTargetsDump unready_targets_dumps = 1;
  25. }