37 lines
738 B
YAML
37 lines
738 B
YAML
receivers:
|
|
otlp:
|
|
protocols:
|
|
grpc:
|
|
endpoint: 0.0.0.0:4317
|
|
http:
|
|
endpoint: 0.0.0.0:4318
|
|
|
|
processors:
|
|
batch:
|
|
timeout: 5s
|
|
send_batch_size: 512
|
|
send_batch_max_size: 1024
|
|
|
|
exporters:
|
|
debug:
|
|
verbosity: basic
|
|
otlp_http/grafana:
|
|
endpoint: ${env:GRAFANA_CLOUD_OTLP_ENDPOINT}
|
|
headers:
|
|
Authorization: ${env:GRAFANA_CLOUD_BASIC_AUTH_HEADER}
|
|
|
|
service:
|
|
pipelines:
|
|
traces:
|
|
receivers: [otlp]
|
|
processors: [batch]
|
|
exporters: [debug, otlp_http/grafana]
|
|
metrics:
|
|
receivers: [otlp]
|
|
processors: [batch]
|
|
exporters: [debug, otlp_http/grafana]
|
|
logs:
|
|
receivers: [otlp]
|
|
processors: [batch]
|
|
exporters: [debug, otlp_http/grafana]
|