surrealpatch/dev/docker/otel-collector.yaml
2023-07-19 14:35:56 +00:00

36 lines
597 B
YAML

receivers:
otlp:
protocols:
grpc:
exporters:
otlp:
endpoint: 'tempo:4317'
tls:
insecure: true
prometheus:
endpoint: ':9090'
send_timestamps: true
metric_expiration: 60m
resource_to_telemetry_conversion:
enabled: true
logging: # add to a pipeline for debugging
loglevel: debug
# processors:
# batch:
# timeout: 1s
# span:
# name:
# from_attributes: ["name"]
service:
pipelines:
traces:
receivers: [otlp]
exporters: [otlp, logging]
metrics:
receivers: [otlp]
exporters: [prometheus]