Skip to content

Commit

Permalink
Use debug exporter (#320)
Browse files Browse the repository at this point in the history
  • Loading branch information
soderlind authored Dec 18, 2024
1 parent 009f34d commit 4e6037a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion examples/instrumentation/Wordpress/compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ services:
# OpenTelemetry collector. Make sure you set USERID and GOOGLE_APPLICATION_CREDENTIALS
# environment variables for your container to authenticate correctly
otel-collector:
image: otel/opentelemetry-collector-contrib:0.79.0
image: otel/opentelemetry-collector-contrib:0.91.0
volumes:
- ./otel-collector-config.yaml:/etc/otelcol-contrib/config.yaml

Expand Down
6 changes: 3 additions & 3 deletions examples/instrumentation/Wordpress/otel-collector-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ processors:
# Alternatively, add additional exporters for the backend of your choice and update the
# pipelines below
exporters:
logging:
debug:
verbosity: detailed
otlp:
endpoint: jaeger:4317
Expand All @@ -26,9 +26,9 @@ service:
metrics:
receivers: [otlp]
processors: [memory_limiter, batch]
exporters: [logging]
exporters: [debug]

traces:
receivers: [otlp]
processors: [memory_limiter, batch]
exporters: [logging, otlp]
exporters: [debug, otlp]

0 comments on commit 4e6037a

Please sign in to comment.