Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions ENV_VARS.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ Agents can be configured using environment variables:
| TA_BLOCKING_CONFIG_EDGE_DECISION_SERVICE_INCLUDE_PATH_REGEXES | Specify regexes which will be matched with http.url attribute to do EdgeDecisionService evaluation. The values should be separated by `,`. |
| TA_BLOCKING_CONFIG_EDGE_DECISION_SERVICE_EXCLUDE_PATH_REGEXES | Specify regexes which will be matched with http.url attribute to exclude spans from EdgeDecisionService evaluation. The values should be separated by `,`. |
| TA_BLOCKING_CONFIG_EVALUATE_EDS_FIRST | When `true`, blocking evaluation will be done using Edge Decision Service first and the results will be passed onto the internal evaluator. Only applicable for Traceable Edge deployments. |
| TA_BLOCKING_CONFIG_SKIP_CLIENT_SPANS | When `true`, blocking evaluation will be skipped for client spans. |
| TA_DEBUG_LOG | |
| TA_REMOTE_CONFIG_ENABLED | Denotes if config needs to be fetched from remote or not |
| TA_REMOTE_CONFIG_ENDPOINT | Denotes the agentmanager endpoint to connect to for config. eg: localhost:5441 |
Expand Down
3 changes: 3 additions & 0 deletions gen/go/proto/v1/config.proto
Original file line number Diff line number Diff line change
Expand Up @@ -132,6 +132,9 @@ message BlockingConfig {
// When `true`, blocking evaluation will be done using Edge Decision Service first and the results
// will be passed onto the internal evaluator. Only applicable for Traceable Edge deployments.
google.protobuf.BoolValue evaluate_eds_first = 12;

// when `true`, blocking evaluation will be skipped for client spans.
google.protobuf.BoolValue skip_client_spans = 13;
}

message ModsecurityConfig {
Expand Down
Loading
Loading