Server State¶
admin.v2alpha.ServerInfo¶
[admin.v2alpha.ServerInfo proto]
Proto representation of the value returned by /server_info, containing server version/server status information.
{
  "version": "...",
  "state": "...",
  "uptime_current_epoch": "{...}",
  "uptime_all_epochs": "{...}",
  "hot_restart_version": "...",
  "command_line_options": "{...}"
}
- version
 (string) Server version.
- state
 (admin.v2alpha.ServerInfo.State) State of the server.
- uptime_current_epoch
 (Duration) Uptime since current epoch was started.
- uptime_all_epochs
 (Duration) Uptime since the start of the first epoch.
- hot_restart_version
 (string) Hot restart version.
- command_line_options
 (admin.v2alpha.CommandLineOptions) Command line options the server is currently running with.
Enum admin.v2alpha.ServerInfo.State¶
[admin.v2alpha.ServerInfo.State proto]
- LIVE
 (DEFAULT) Server is live and serving traffic.
- DRAINING
 Server is draining listeners in response to external health checks failing.
- PRE_INITIALIZING
 Server has not yet completed cluster manager initialization.
- INITIALIZING
 Server is running the cluster manager initialization callbacks (e.g., RDS).
admin.v2alpha.CommandLineOptions¶
[admin.v2alpha.CommandLineOptions proto]
{
  "base_id": "...",
  "concurrency": "...",
  "config_path": "...",
  "config_yaml": "...",
  "allow_unknown_static_fields": "...",
  "reject_unknown_dynamic_fields": "...",
  "admin_address_path": "...",
  "local_address_ip_version": "...",
  "log_level": "...",
  "component_log_level": "...",
  "log_format": "...",
  "log_format_escaped": "...",
  "log_path": "...",
  "service_cluster": "...",
  "service_node": "...",
  "service_zone": "...",
  "file_flush_interval": "{...}",
  "drain_time": "{...}",
  "parent_shutdown_time": "{...}",
  "mode": "...",
  "max_stats": "...",
  "max_obj_name_len": "...",
  "disable_hot_restart": "...",
  "enable_mutex_tracing": "...",
  "restart_epoch": "...",
  "cpuset_threads": "...",
  "disabled_extensions": []
}
- concurrency
 (uint32) See
--concurrencyfor details.
- config_path
 (string) See
--config-pathfor details.
- config_yaml
 (string) See
--config-yamlfor details.
- allow_unknown_static_fields
 (bool) See
--allow-unknown-static-fieldsfor details.
- reject_unknown_dynamic_fields
 (bool) See
--reject-unknown-dynamic-fieldsfor details.
- admin_address_path
 (string) See
--admin-address-pathfor details.
- local_address_ip_version
 (admin.v2alpha.CommandLineOptions.IpVersion) See
--local-address-ip-versionfor details.
- log_level
 (string) See
--log-levelfor details.
- component_log_level
 (string) See
--component-log-levelfor details.
- log_format
 (string) See
--log-formatfor details.
- log_format_escaped
 (bool) See
--log-format-escapedfor details.
- log_path
 (string) See
--log-pathfor details.
- service_cluster
 (string) See
--service-clusterfor details.
- service_node
 (string) See
--service-nodefor details.
- service_zone
 (string) See
--service-zonefor details.
- file_flush_interval
 (Duration) See
--file-flush-interval-msecfor details.
- drain_time
 (Duration) See
--drain-time-sfor details.
- parent_shutdown_time
 (Duration) See
--parent-shutdown-time-sfor details.
- mode
 (admin.v2alpha.CommandLineOptions.Mode) See
--modefor details.
- max_stats
 (uint64) max_stats and max_obj_name_len are now unused and have no effect.
- max_obj_name_len
 (uint64)
- disable_hot_restart
 (bool) See
--disable-hot-restartfor details.
- enable_mutex_tracing
 (bool) See
--enable-mutex-tracingfor details.
- restart_epoch
 (uint32) See
--restart-epochfor details.
- cpuset_threads
 (bool) See
--cpuset-threadsfor details.
- disabled_extensions
 (string) See
--disable-extensionsfor details.
Enum admin.v2alpha.CommandLineOptions.IpVersion¶
[admin.v2alpha.CommandLineOptions.IpVersion proto]
- v4
 (DEFAULT) 
- v6
 
Enum admin.v2alpha.CommandLineOptions.Mode¶
[admin.v2alpha.CommandLineOptions.Mode proto]
- Serve
 (DEFAULT) Validate configs and then serve traffic normally.
- Validate
 Validate configs and exit.
- InitOnly
 Completely load and initialize the config, and then exit without running the listener loop.