123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155 |
- syntax = "proto3";
- package envoy.admin.v2alpha;
- import "google/protobuf/duration.proto";
- import "envoy/annotations/deprecation.proto";
- import "udpa/annotations/status.proto";
- option java_package = "io.envoyproxy.envoy.admin.v2alpha";
- option java_outer_classname = "ServerInfoProto";
- option java_multiple_files = true;
- option go_package = "github.com/envoyproxy/go-control-plane/envoy/admin/v2alpha";
- option (udpa.annotations.file_status).package_version_status = FROZEN;
- // [#protodoc-title: Server State]
- // Proto representation of the value returned by /server_info, containing
- // server version/server status information.
- // [#next-free-field: 7]
- message ServerInfo {
- enum State {
- // Server is live and serving traffic.
- LIVE = 0;
- // Server is draining listeners in response to external health checks failing.
- DRAINING = 1;
- // Server has not yet completed cluster manager initialization.
- PRE_INITIALIZING = 2;
- // Server is running the cluster manager initialization callbacks (e.g., RDS).
- INITIALIZING = 3;
- }
- // Server version.
- string version = 1;
- // State of the server.
- State state = 2;
- // Uptime since current epoch was started.
- google.protobuf.Duration uptime_current_epoch = 3;
- // Uptime since the start of the first epoch.
- google.protobuf.Duration uptime_all_epochs = 4;
- // Hot restart version.
- string hot_restart_version = 5;
- // Command line options the server is currently running with.
- CommandLineOptions command_line_options = 6;
- }
- // [#next-free-field: 29]
- message CommandLineOptions {
- enum IpVersion {
- v4 = 0;
- v6 = 1;
- }
- enum Mode {
- // Validate configs and then serve traffic normally.
- Serve = 0;
- // Validate configs and exit.
- Validate = 1;
- // Completely load and initialize the config, and then exit without running the listener loop.
- InitOnly = 2;
- }
- reserved 12;
- // See :option:`--base-id` for details.
- uint64 base_id = 1;
- // See :option:`--concurrency` for details.
- uint32 concurrency = 2;
- // See :option:`--config-path` for details.
- string config_path = 3;
- // See :option:`--config-yaml` for details.
- string config_yaml = 4;
- // See :option:`--allow-unknown-static-fields` for details.
- bool allow_unknown_static_fields = 5;
- // See :option:`--reject-unknown-dynamic-fields` for details.
- bool reject_unknown_dynamic_fields = 26;
- // See :option:`--admin-address-path` for details.
- string admin_address_path = 6;
- // See :option:`--local-address-ip-version` for details.
- IpVersion local_address_ip_version = 7;
- // See :option:`--log-level` for details.
- string log_level = 8;
- // See :option:`--component-log-level` for details.
- string component_log_level = 9;
- // See :option:`--log-format` for details.
- string log_format = 10;
- // See :option:`--log-format-escaped` for details.
- bool log_format_escaped = 27;
- // See :option:`--log-path` for details.
- string log_path = 11;
- // See :option:`--service-cluster` for details.
- string service_cluster = 13;
- // See :option:`--service-node` for details.
- string service_node = 14;
- // See :option:`--service-zone` for details.
- string service_zone = 15;
- // See :option:`--file-flush-interval-msec` for details.
- google.protobuf.Duration file_flush_interval = 16;
- // See :option:`--drain-time-s` for details.
- google.protobuf.Duration drain_time = 17;
- // See :option:`--parent-shutdown-time-s` for details.
- google.protobuf.Duration parent_shutdown_time = 18;
- // See :option:`--mode` for details.
- Mode mode = 19;
- // max_stats and max_obj_name_len are now unused and have no effect.
- uint64 max_stats = 20 [deprecated = true, (envoy.annotations.disallowed_by_default) = true];
- uint64 max_obj_name_len = 21
- [deprecated = true, (envoy.annotations.disallowed_by_default) = true];
- // See :option:`--disable-hot-restart` for details.
- bool disable_hot_restart = 22;
- // See :option:`--enable-mutex-tracing` for details.
- bool enable_mutex_tracing = 23;
- // See :option:`--restart-epoch` for details.
- uint32 restart_epoch = 24;
- // See :option:`--cpuset-threads` for details.
- bool cpuset_threads = 25;
- // See :option:`--disable-extensions` for details.
- repeated string disabled_extensions = 28;
- }
|