.. _envoy_v3_api_file_envoy/admin/v3/config_dump.proto: ConfigDump ========== .. _envoy_v3_api_msg_admin.v3.ConfigDump: admin.v3.ConfigDump ------------------- `[admin.v3.ConfigDump proto] `_ The :ref:`/config_dump ` admin endpoint uses this wrapper message to maintain and serve arbitrary configuration information from any component in Envoy. .. code-block:: json { "configs": [] } .. _envoy_v3_api_field_admin.v3.ConfigDump.configs: configs (**repeated** `Any `_) This list is serialized and dumped in its entirety at the :ref:`/config_dump ` endpoint. The following configurations are currently supported and will be dumped in the order given below: * *bootstrap*: :ref:`BootstrapConfigDump ` * *clusters*: :ref:`ClustersConfigDump ` * *endpoints*: :ref:`EndpointsConfigDump ` * *listeners*: :ref:`ListenersConfigDump ` * *routes*: :ref:`RoutesConfigDump ` EDS Configuration will only be dumped by using parameter `?include_eds` You can filter output with the resource and mask query parameters. See :ref:`/config_dump?resource={} `, :ref:`/config_dump?mask={} `, or :ref:`/config_dump?resource={},mask={} ` for more information. .. _envoy_v3_api_msg_admin.v3.UpdateFailureState: admin.v3.UpdateFailureState --------------------------- `[admin.v3.UpdateFailureState proto] `_ .. code-block:: json { "failed_configuration": "{...}", "last_update_attempt": "{...}", "details": "..." } .. _envoy_v3_api_field_admin.v3.UpdateFailureState.failed_configuration: failed_configuration (`Any `_) What the component configuration would have been if the update had succeeded. This field may not be populated by xDS clients due to storage overhead. .. _envoy_v3_api_field_admin.v3.UpdateFailureState.last_update_attempt: last_update_attempt (`Timestamp `_) Time of the latest failed update attempt. .. _envoy_v3_api_field_admin.v3.UpdateFailureState.details: details (`string `_) Details about the last failed update attempt. .. _envoy_v3_api_msg_admin.v3.BootstrapConfigDump: admin.v3.BootstrapConfigDump ---------------------------- `[admin.v3.BootstrapConfigDump proto] `_ This message describes the bootstrap configuration that Envoy was started with. This includes any CLI overrides that were merged. Bootstrap configuration information can be used to recreate the static portions of an Envoy configuration by reusing the output as the bootstrap configuration for another Envoy. .. code-block:: json { "bootstrap": "{...}", "last_updated": "{...}" } .. _envoy_v3_api_field_admin.v3.BootstrapConfigDump.bootstrap: bootstrap (:ref:`config.bootstrap.v3.Bootstrap `) .. _envoy_v3_api_field_admin.v3.BootstrapConfigDump.last_updated: last_updated (`Timestamp `_) The timestamp when the BootstrapConfig was last updated. .. _envoy_v3_api_msg_admin.v3.ListenersConfigDump: admin.v3.ListenersConfigDump ---------------------------- `[admin.v3.ListenersConfigDump proto] `_ Envoy's listener manager fills this message with all currently known listeners. Listener configuration information can be used to recreate an Envoy configuration by populating all listeners as static listeners or by returning them in a LDS response. .. code-block:: json { "version_info": "...", "static_listeners": [], "dynamic_listeners": [] } .. _envoy_v3_api_field_admin.v3.ListenersConfigDump.version_info: version_info (`string `_) This is the :ref:`version_info ` in the last processed LDS discovery response. If there are only static bootstrap listeners, this field will be "". .. _envoy_v3_api_field_admin.v3.ListenersConfigDump.static_listeners: static_listeners (**repeated** :ref:`admin.v3.ListenersConfigDump.StaticListener `) The statically loaded listener configs. .. _envoy_v3_api_field_admin.v3.ListenersConfigDump.dynamic_listeners: dynamic_listeners (**repeated** :ref:`admin.v3.ListenersConfigDump.DynamicListener `) State for any warming, active, or draining listeners. .. _envoy_v3_api_msg_admin.v3.ListenersConfigDump.StaticListener: admin.v3.ListenersConfigDump.StaticListener ------------------------------------------- `[admin.v3.ListenersConfigDump.StaticListener proto] `_ Describes a statically loaded listener. .. code-block:: json { "listener": "{...}", "last_updated": "{...}" } .. _envoy_v3_api_field_admin.v3.ListenersConfigDump.StaticListener.listener: listener (`Any `_) The listener config. .. _envoy_v3_api_field_admin.v3.ListenersConfigDump.StaticListener.last_updated: last_updated (`Timestamp `_) The timestamp when the Listener was last successfully updated. .. _envoy_v3_api_msg_admin.v3.ListenersConfigDump.DynamicListenerState: admin.v3.ListenersConfigDump.DynamicListenerState ------------------------------------------------- `[admin.v3.ListenersConfigDump.DynamicListenerState proto] `_ .. code-block:: json { "version_info": "...", "listener": "{...}", "last_updated": "{...}" } .. _envoy_v3_api_field_admin.v3.ListenersConfigDump.DynamicListenerState.version_info: version_info (`string `_) This is the per-resource version information. This version is currently taken from the :ref:`version_info ` field at the time that the listener was loaded. In the future, discrete per-listener versions may be supported by the API. .. _envoy_v3_api_field_admin.v3.ListenersConfigDump.DynamicListenerState.listener: listener (`Any `_) The listener config. .. _envoy_v3_api_field_admin.v3.ListenersConfigDump.DynamicListenerState.last_updated: last_updated (`Timestamp `_) The timestamp when the Listener was last successfully updated. .. _envoy_v3_api_msg_admin.v3.ListenersConfigDump.DynamicListener: admin.v3.ListenersConfigDump.DynamicListener -------------------------------------------- `[admin.v3.ListenersConfigDump.DynamicListener proto] `_ Describes a dynamically loaded listener via the LDS API. .. code-block:: json { "name": "...", "active_state": "{...}", "warming_state": "{...}", "draining_state": "{...}", "error_state": "{...}" } .. _envoy_v3_api_field_admin.v3.ListenersConfigDump.DynamicListener.name: name (`string `_) The name or unique id of this listener, pulled from the DynamicListenerState config. .. _envoy_v3_api_field_admin.v3.ListenersConfigDump.DynamicListener.active_state: active_state (:ref:`admin.v3.ListenersConfigDump.DynamicListenerState `) The listener state for any active listener by this name. These are listeners that are available to service data plane traffic. .. _envoy_v3_api_field_admin.v3.ListenersConfigDump.DynamicListener.warming_state: warming_state (:ref:`admin.v3.ListenersConfigDump.DynamicListenerState `) The listener state for any warming listener by this name. These are listeners that are currently undergoing warming in preparation to service data plane traffic. Note that if attempting to recreate an Envoy configuration from a configuration dump, the warming listeners should generally be discarded. .. _envoy_v3_api_field_admin.v3.ListenersConfigDump.DynamicListener.draining_state: draining_state (:ref:`admin.v3.ListenersConfigDump.DynamicListenerState `) The listener state for any draining listener by this name. These are listeners that are currently undergoing draining in preparation to stop servicing data plane traffic. Note that if attempting to recreate an Envoy configuration from a configuration dump, the draining listeners should generally be discarded. .. _envoy_v3_api_field_admin.v3.ListenersConfigDump.DynamicListener.error_state: error_state (:ref:`admin.v3.UpdateFailureState `) Set if the last update failed, cleared after the next successful update. The *error_state* field contains the rejected version of this particular resource along with the reason and timestamp. For successfully updated or acknowledged resource, this field should be empty. .. _envoy_v3_api_msg_admin.v3.ClustersConfigDump: admin.v3.ClustersConfigDump --------------------------- `[admin.v3.ClustersConfigDump proto] `_ Envoy's cluster manager fills this message with all currently known clusters. Cluster configuration information can be used to recreate an Envoy configuration by populating all clusters as static clusters or by returning them in a CDS response. .. code-block:: json { "version_info": "...", "static_clusters": [], "dynamic_active_clusters": [], "dynamic_warming_clusters": [] } .. _envoy_v3_api_field_admin.v3.ClustersConfigDump.version_info: version_info (`string `_) This is the :ref:`version_info ` in the last processed CDS discovery response. If there are only static bootstrap clusters, this field will be "". .. _envoy_v3_api_field_admin.v3.ClustersConfigDump.static_clusters: static_clusters (**repeated** :ref:`admin.v3.ClustersConfigDump.StaticCluster `) The statically loaded cluster configs. .. _envoy_v3_api_field_admin.v3.ClustersConfigDump.dynamic_active_clusters: dynamic_active_clusters (**repeated** :ref:`admin.v3.ClustersConfigDump.DynamicCluster `) The dynamically loaded active clusters. These are clusters that are available to service data plane traffic. .. _envoy_v3_api_field_admin.v3.ClustersConfigDump.dynamic_warming_clusters: dynamic_warming_clusters (**repeated** :ref:`admin.v3.ClustersConfigDump.DynamicCluster `) The dynamically loaded warming clusters. These are clusters that are currently undergoing warming in preparation to service data plane traffic. Note that if attempting to recreate an Envoy configuration from a configuration dump, the warming clusters should generally be discarded. .. _envoy_v3_api_msg_admin.v3.ClustersConfigDump.StaticCluster: admin.v3.ClustersConfigDump.StaticCluster ----------------------------------------- `[admin.v3.ClustersConfigDump.StaticCluster proto] `_ Describes a statically loaded cluster. .. code-block:: json { "cluster": "{...}", "last_updated": "{...}" } .. _envoy_v3_api_field_admin.v3.ClustersConfigDump.StaticCluster.cluster: cluster (`Any `_) The cluster config. .. _envoy_v3_api_field_admin.v3.ClustersConfigDump.StaticCluster.last_updated: last_updated (`Timestamp `_) The timestamp when the Cluster was last updated. .. _envoy_v3_api_msg_admin.v3.ClustersConfigDump.DynamicCluster: admin.v3.ClustersConfigDump.DynamicCluster ------------------------------------------ `[admin.v3.ClustersConfigDump.DynamicCluster proto] `_ Describes a dynamically loaded cluster via the CDS API. .. code-block:: json { "version_info": "...", "cluster": "{...}", "last_updated": "{...}" } .. _envoy_v3_api_field_admin.v3.ClustersConfigDump.DynamicCluster.version_info: version_info (`string `_) This is the per-resource version information. This version is currently taken from the :ref:`version_info ` field at the time that the cluster was loaded. In the future, discrete per-cluster versions may be supported by the API. .. _envoy_v3_api_field_admin.v3.ClustersConfigDump.DynamicCluster.cluster: cluster (`Any `_) The cluster config. .. _envoy_v3_api_field_admin.v3.ClustersConfigDump.DynamicCluster.last_updated: last_updated (`Timestamp `_) The timestamp when the Cluster was last updated. .. _envoy_v3_api_msg_admin.v3.RoutesConfigDump: admin.v3.RoutesConfigDump ------------------------- `[admin.v3.RoutesConfigDump proto] `_ Envoy's RDS implementation fills this message with all currently loaded routes, as described by their RouteConfiguration objects. Static routes that are either defined in the bootstrap configuration or defined inline while configuring listeners are separated from those configured dynamically via RDS. Route configuration information can be used to recreate an Envoy configuration by populating all routes as static routes or by returning them in RDS responses. .. code-block:: json { "static_route_configs": [], "dynamic_route_configs": [] } .. _envoy_v3_api_field_admin.v3.RoutesConfigDump.static_route_configs: static_route_configs (**repeated** :ref:`admin.v3.RoutesConfigDump.StaticRouteConfig `) The statically loaded route configs. .. _envoy_v3_api_field_admin.v3.RoutesConfigDump.dynamic_route_configs: dynamic_route_configs (**repeated** :ref:`admin.v3.RoutesConfigDump.DynamicRouteConfig `) The dynamically loaded route configs. .. _envoy_v3_api_msg_admin.v3.RoutesConfigDump.StaticRouteConfig: admin.v3.RoutesConfigDump.StaticRouteConfig ------------------------------------------- `[admin.v3.RoutesConfigDump.StaticRouteConfig proto] `_ .. code-block:: json { "route_config": "{...}", "last_updated": "{...}" } .. _envoy_v3_api_field_admin.v3.RoutesConfigDump.StaticRouteConfig.route_config: route_config (`Any `_) The route config. .. _envoy_v3_api_field_admin.v3.RoutesConfigDump.StaticRouteConfig.last_updated: last_updated (`Timestamp `_) The timestamp when the Route was last updated. .. _envoy_v3_api_msg_admin.v3.RoutesConfigDump.DynamicRouteConfig: admin.v3.RoutesConfigDump.DynamicRouteConfig -------------------------------------------- `[admin.v3.RoutesConfigDump.DynamicRouteConfig proto] `_ .. code-block:: json { "version_info": "...", "route_config": "{...}", "last_updated": "{...}" } .. _envoy_v3_api_field_admin.v3.RoutesConfigDump.DynamicRouteConfig.version_info: version_info (`string `_) This is the per-resource version information. This version is currently taken from the :ref:`version_info ` field at the time that the route configuration was loaded. .. _envoy_v3_api_field_admin.v3.RoutesConfigDump.DynamicRouteConfig.route_config: route_config (`Any `_) The route config. .. _envoy_v3_api_field_admin.v3.RoutesConfigDump.DynamicRouteConfig.last_updated: last_updated (`Timestamp `_) The timestamp when the Route was last updated. .. _envoy_v3_api_msg_admin.v3.ScopedRoutesConfigDump: admin.v3.ScopedRoutesConfigDump ------------------------------- `[admin.v3.ScopedRoutesConfigDump proto] `_ Envoy's scoped RDS implementation fills this message with all currently loaded route configuration scopes (defined via ScopedRouteConfigurationsSet protos). This message lists both the scopes defined inline with the higher order object (i.e., the HttpConnectionManager) and the dynamically obtained scopes via the SRDS API. .. code-block:: json { "inline_scoped_route_configs": [], "dynamic_scoped_route_configs": [] } .. _envoy_v3_api_field_admin.v3.ScopedRoutesConfigDump.inline_scoped_route_configs: inline_scoped_route_configs (**repeated** :ref:`admin.v3.ScopedRoutesConfigDump.InlineScopedRouteConfigs `) The statically loaded scoped route configs. .. _envoy_v3_api_field_admin.v3.ScopedRoutesConfigDump.dynamic_scoped_route_configs: dynamic_scoped_route_configs (**repeated** :ref:`admin.v3.ScopedRoutesConfigDump.DynamicScopedRouteConfigs `) The dynamically loaded scoped route configs. .. _envoy_v3_api_msg_admin.v3.ScopedRoutesConfigDump.InlineScopedRouteConfigs: admin.v3.ScopedRoutesConfigDump.InlineScopedRouteConfigs -------------------------------------------------------- `[admin.v3.ScopedRoutesConfigDump.InlineScopedRouteConfigs proto] `_ .. code-block:: json { "name": "...", "scoped_route_configs": [], "last_updated": "{...}" } .. _envoy_v3_api_field_admin.v3.ScopedRoutesConfigDump.InlineScopedRouteConfigs.name: name (`string `_) The name assigned to the scoped route configurations. .. _envoy_v3_api_field_admin.v3.ScopedRoutesConfigDump.InlineScopedRouteConfigs.scoped_route_configs: scoped_route_configs (**repeated** `Any `_) The scoped route configurations. .. _envoy_v3_api_field_admin.v3.ScopedRoutesConfigDump.InlineScopedRouteConfigs.last_updated: last_updated (`Timestamp `_) The timestamp when the scoped route config set was last updated. .. _envoy_v3_api_msg_admin.v3.ScopedRoutesConfigDump.DynamicScopedRouteConfigs: admin.v3.ScopedRoutesConfigDump.DynamicScopedRouteConfigs --------------------------------------------------------- `[admin.v3.ScopedRoutesConfigDump.DynamicScopedRouteConfigs proto] `_ .. code-block:: json { "name": "...", "version_info": "...", "scoped_route_configs": [], "last_updated": "{...}" } .. _envoy_v3_api_field_admin.v3.ScopedRoutesConfigDump.DynamicScopedRouteConfigs.name: name (`string `_) The name assigned to the scoped route configurations. .. _envoy_v3_api_field_admin.v3.ScopedRoutesConfigDump.DynamicScopedRouteConfigs.version_info: version_info (`string `_) This is the per-resource version information. This version is currently taken from the :ref:`version_info ` field at the time that the scoped routes configuration was loaded. .. _envoy_v3_api_field_admin.v3.ScopedRoutesConfigDump.DynamicScopedRouteConfigs.scoped_route_configs: scoped_route_configs (**repeated** `Any `_) The scoped route configurations. .. _envoy_v3_api_field_admin.v3.ScopedRoutesConfigDump.DynamicScopedRouteConfigs.last_updated: last_updated (`Timestamp `_) The timestamp when the scoped route config set was last updated. .. _envoy_v3_api_msg_admin.v3.SecretsConfigDump: admin.v3.SecretsConfigDump -------------------------- `[admin.v3.SecretsConfigDump proto] `_ Envoys SDS implementation fills this message with all secrets fetched dynamically via SDS. .. code-block:: json { "static_secrets": [], "dynamic_active_secrets": [], "dynamic_warming_secrets": [] } .. _envoy_v3_api_field_admin.v3.SecretsConfigDump.static_secrets: static_secrets (**repeated** :ref:`admin.v3.SecretsConfigDump.StaticSecret `) The statically loaded secrets. .. _envoy_v3_api_field_admin.v3.SecretsConfigDump.dynamic_active_secrets: dynamic_active_secrets (**repeated** :ref:`admin.v3.SecretsConfigDump.DynamicSecret `) The dynamically loaded active secrets. These are secrets that are available to service clusters or listeners. .. _envoy_v3_api_field_admin.v3.SecretsConfigDump.dynamic_warming_secrets: dynamic_warming_secrets (**repeated** :ref:`admin.v3.SecretsConfigDump.DynamicSecret `) The dynamically loaded warming secrets. These are secrets that are currently undergoing warming in preparation to service clusters or listeners. .. _envoy_v3_api_msg_admin.v3.SecretsConfigDump.DynamicSecret: admin.v3.SecretsConfigDump.DynamicSecret ---------------------------------------- `[admin.v3.SecretsConfigDump.DynamicSecret proto] `_ DynamicSecret contains secret information fetched via SDS. .. code-block:: json { "name": "...", "version_info": "...", "last_updated": "{...}", "secret": "{...}" } .. _envoy_v3_api_field_admin.v3.SecretsConfigDump.DynamicSecret.name: name (`string `_) The name assigned to the secret. .. _envoy_v3_api_field_admin.v3.SecretsConfigDump.DynamicSecret.version_info: version_info (`string `_) This is the per-resource version information. .. _envoy_v3_api_field_admin.v3.SecretsConfigDump.DynamicSecret.last_updated: last_updated (`Timestamp `_) The timestamp when the secret was last updated. .. _envoy_v3_api_field_admin.v3.SecretsConfigDump.DynamicSecret.secret: secret (`Any `_) The actual secret information. Security sensitive information is redacted (replaced with "[redacted]") for private keys and passwords in TLS certificates. .. _envoy_v3_api_msg_admin.v3.SecretsConfigDump.StaticSecret: admin.v3.SecretsConfigDump.StaticSecret --------------------------------------- `[admin.v3.SecretsConfigDump.StaticSecret proto] `_ StaticSecret specifies statically loaded secret in bootstrap. .. code-block:: json { "name": "...", "last_updated": "{...}", "secret": "{...}" } .. _envoy_v3_api_field_admin.v3.SecretsConfigDump.StaticSecret.name: name (`string `_) The name assigned to the secret. .. _envoy_v3_api_field_admin.v3.SecretsConfigDump.StaticSecret.last_updated: last_updated (`Timestamp `_) The timestamp when the secret was last updated. .. _envoy_v3_api_field_admin.v3.SecretsConfigDump.StaticSecret.secret: secret (`Any `_) The actual secret information. Security sensitive information is redacted (replaced with "[redacted]") for private keys and passwords in TLS certificates. .. _envoy_v3_api_msg_admin.v3.EndpointsConfigDump: admin.v3.EndpointsConfigDump ---------------------------- `[admin.v3.EndpointsConfigDump proto] `_ Envoy's admin fill this message with all currently known endpoints. Endpoint configuration information can be used to recreate an Envoy configuration by populating all endpoints as static endpoints or by returning them in an EDS response. .. code-block:: json { "static_endpoint_configs": [], "dynamic_endpoint_configs": [] } .. _envoy_v3_api_field_admin.v3.EndpointsConfigDump.static_endpoint_configs: static_endpoint_configs (**repeated** :ref:`admin.v3.EndpointsConfigDump.StaticEndpointConfig `) The statically loaded endpoint configs. .. _envoy_v3_api_field_admin.v3.EndpointsConfigDump.dynamic_endpoint_configs: dynamic_endpoint_configs (**repeated** :ref:`admin.v3.EndpointsConfigDump.DynamicEndpointConfig `) The dynamically loaded endpoint configs. .. _envoy_v3_api_msg_admin.v3.EndpointsConfigDump.StaticEndpointConfig: admin.v3.EndpointsConfigDump.StaticEndpointConfig ------------------------------------------------- `[admin.v3.EndpointsConfigDump.StaticEndpointConfig proto] `_ .. code-block:: json { "endpoint_config": "{...}" } .. _envoy_v3_api_field_admin.v3.EndpointsConfigDump.StaticEndpointConfig.endpoint_config: endpoint_config (`Any `_) The endpoint config. .. _envoy_v3_api_msg_admin.v3.EndpointsConfigDump.DynamicEndpointConfig: admin.v3.EndpointsConfigDump.DynamicEndpointConfig -------------------------------------------------- `[admin.v3.EndpointsConfigDump.DynamicEndpointConfig proto] `_ .. code-block:: json { "endpoint_config": "{...}" } .. _envoy_v3_api_field_admin.v3.EndpointsConfigDump.DynamicEndpointConfig.endpoint_config: endpoint_config (`Any `_) The endpoint config. .. _envoy_v3_api_enum_admin.v3.ClientResourceStatus: Enum admin.v3.ClientResourceStatus ---------------------------------- `[admin.v3.ClientResourceStatus proto] `_ Resource status from the view of a xDS client, which tells the synchronization status between the xDS client and the xDS server. .. _envoy_v3_api_enum_value_admin.v3.ClientResourceStatus.UNKNOWN: UNKNOWN *(DEFAULT)* ⁣Resource status is not available/unknown. .. _envoy_v3_api_enum_value_admin.v3.ClientResourceStatus.REQUESTED: REQUESTED ⁣Client requested this resource but hasn't received any update from management server. The client will not fail requests, but will queue them until update arrives or the client times out waiting for the resource. .. _envoy_v3_api_enum_value_admin.v3.ClientResourceStatus.DOES_NOT_EXIST: DOES_NOT_EXIST ⁣This resource has been requested by the client but has either not been delivered by the server or was previously delivered by the server and then subsequently removed from resources provided by the server. For more information, please refer to the :ref:`"Knowing When a Requested Resource Does Not Exist" ` section. .. _envoy_v3_api_enum_value_admin.v3.ClientResourceStatus.ACKED: ACKED ⁣Client received this resource and replied with ACK. .. _envoy_v3_api_enum_value_admin.v3.ClientResourceStatus.NACKED: NACKED ⁣Client received this resource and replied with NACK.