Files
posthog/otel-collector-config.dev.yaml
Michi a335a5a50d feat: add django tracing (#32418)
Co-authored-by: graphite-app[bot] <96075541+graphite-app[bot]@users.noreply.github.com>
2025-06-04 10:31:32 +02:00

29 lines
800 B
YAML

receivers:
otlp:
protocols:
grpc:
endpoint: 0.0.0.0:4317 # Collector receiving OTLP gRPC
http:
endpoint: 0.0.0.0:4318 # Collector receiving OTLP HTTP
exporters:
otlp: # Using the standard OTLP exporter
endpoint: 'jaeger-local:4317' # Sending OTLP gRPC to Jaeger
tls:
insecure: true # For local communication to Jaeger
extensions: # Declaring the extensions
health_check: # Default configuration is usually fine
zpages: # Default configuration is usually fine
processors:
batch:
service:
pipelines:
traces:
receivers: [otlp]
processors: [batch]
exporters: [otlp]
extensions: [health_check, zpages] # Enabling the declared extensions