File tree Expand file tree Collapse file tree 2 files changed +6
-2
lines changed
documentation/docs/guides Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -99,8 +99,8 @@ GOOSE_SEARCH_PATHS:
9999# Observability (OpenTelemetry)
100100# Prefer ENV, which overrides this configuration and fully supports
101101# OTel semantics. See the environment-variables guide for details.
102- OTEL_EXPORTER_OTLP_ENDPOINT : " http://localhost:4318"
103- OTEL_EXPORTER_OTLP_TIMEOUT : 20000
102+ otel_exporter_otlp_endpoint : " http://localhost:4318"
103+ otel_exporter_otlp_timeout : 20000
104104
105105# Security Configuration
106106SECURITY_PROMPT_ENABLED : true
Original file line number Diff line number Diff line change @@ -479,6 +479,10 @@ export OTEL_EXPORTER_OTLP_ENDPOINT="http://localhost:4318"
479479
480480# Debug traces to console (no collector needed)
481481export OTEL_TRACES_EXPORTER=" console"
482+
483+ # Sample 10% of traces (reduce volume in production)
484+ export OTEL_TRACES_SAMPLER=" parentbased_traceidratio"
485+ export OTEL_TRACES_SAMPLER_ARG=" 0.1"
482486```
483487
484488[ otel-env ] : https://opentelemetry.io/docs/specs/otel/configuration/sdk-environment-variables/
You can’t perform that action at this time.
0 commit comments