Verified Commit ae0dc952 authored by Hercules Merscher's avatar Hercules Merscher 🌴
Browse files

fix: README - perf considerations using OTel URL

parent d116294b
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -497,10 +497,10 @@ Use sampling to control overhead:

```bash
# Trace 1% of requests
export GITLAB_TRACING="opentracing://jaeger?udp_endpoint=localhost:6831&sampler=probabilistic&sampler_param=0.01"
export GITLAB_TRACING="otlp://localhost:4318?sampler=probabilistic&sampler_param=0.01"

# Trace all requests (high overhead)
export GITLAB_TRACING="opentracing://jaeger?udp_endpoint=localhost:6831&sampler=const&sampler_param=1"
export GITLAB_TRACING="otlp://localhost:4318?sampler=const&sampler_param=1"
```

### Conditional Expensive Operations