Runtime¶
The HTTP connection manager supports the following runtime settings:
- http_connection_manager.normalize_path
% of requests that will have path normalization applied if not already configured in normalize_path. This is evaluated at configuration load time and will apply to all requests for a given configuration.
- tracing.client_enabled
% of requests that will be force traced if the x-client-trace-id header is set. Defaults to 100.
- tracing.global_enabled
% of requests that will be traced after all other checks have been applied (force tracing, sampling, etc.). Defaults to 100.
- tracing.random_sampling
% of requests that will be randomly traced. See here for more information. This runtime control is specified in the range 0-10000 and defaults to 10000. Thus, trace sampling can be specified in 0.01% increments.
- http_connection_manager.path_with_escaped_slashes_action
Overrides Envoy’s default action taken when the path_with_escaped_slashes_action. was not specified or set to the IMPLEMENTATION_SPECIFIC_DEFAULT value. Possible values:
2 sets action to the REJECT_REQUEST.
3 sets action to the UNESCAPE_AND_REDIRECT.
4 sets action to the UNESCAPE_AND_FORWARD.
all other values set the action to KEEP_UNCHANGED.
- http_connection_manager.path_with_escaped_slashes_action_enabled
% of requests that will be subject to the path_with_escaped_slashes_action. action. For all other requests the KEEP_UNCHANGED action will be applied. Defaults to 100.