...
Code Block |
---|
receivers: otlp: # Defines the OTLP receiver to accept telemetry data (traces/metrics) protocols: grpc: endpoint: 0.0.0.0:4317 http: endpoint: 0.0.0.0:4318 processors: batch/traces: timeout: 1s send_batch_size: 50 batch/metrics: timeout: 1s send_batch_size: 50 exporters: prometheus: # Defines an exporter for Prometheus to expose telemetry data endpoint: 0.0.0.0:8889 # The network address and port where Prometheus can scrape metrics zipkin: endpoint: "http://zipkin:9411/api/v2/spans" # Traces are exported to Zipkin at defined url service: pipelines: metrics: receivers: [otlp] processors: [batch/metrics] exporters: [prometheus] traces: receivers: [otlp] processors: [batch/traces] exporters: [zipkin] |
...