Skip to content

Commit

Permalink
Update our otel config with stuff from the latest upstream configs
Browse files Browse the repository at this point in the history
  • Loading branch information
Dylan Myers committed Aug 29, 2023
1 parent f93a829 commit d5d5148
Showing 1 changed file with 25 additions and 5 deletions.
30 changes: 25 additions & 5 deletions otelcol-config.oiq.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,27 +6,47 @@ receivers:
protocols:
grpc:
http:
cors:
allowed_origins:
- "http://*"
- "https://*"

exporters:
jaeger:
endpoint: "jaeger:14250"
logging:
otlp:
endpoint: "jaeger:4317"
tls:
insecure: true
logging:
prometheus:
endpoint: "otelcol:9464"
resource_to_telemetry_conversion:
enabled: true
enable_open_metrics: true
googlecloud:

processors:
batch:
filter:
metrics:
exclude:
match_type: strict
metric_names:
- queueSize

connectors:
spanmetrics:

service:
pipelines:
traces:
receivers: [otlp]
processors: [batch]
exporters: [logging, jaeger, googlecloud]
exporters: [logging, jaeger, googlecloud, spanmetrics]
metrics:
receivers: [otlp]
processors: [batch]
exporters: [prometheus, logging, googlecloud]
exporters: [prometheus, logging, googlecloud, spanmetrics]
logs:
receivers: [otlp]
processors: [batch]
exporters: [logging]

0 comments on commit d5d5148

Please sign in to comment.