Skip to content

Commit 4e6037a

Browse files
authored
Use debug exporter (#320)
1 parent 009f34d commit 4e6037a

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

examples/instrumentation/Wordpress/compose.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ services:
4242
# OpenTelemetry collector. Make sure you set USERID and GOOGLE_APPLICATION_CREDENTIALS
4343
# environment variables for your container to authenticate correctly
4444
otel-collector:
45-
image: otel/opentelemetry-collector-contrib:0.79.0
45+
image: otel/opentelemetry-collector-contrib:0.91.0
4646
volumes:
4747
- ./otel-collector-config.yaml:/etc/otelcol-contrib/config.yaml
4848

examples/instrumentation/Wordpress/otel-collector-config.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ processors:
1414
# Alternatively, add additional exporters for the backend of your choice and update the
1515
# pipelines below
1616
exporters:
17-
logging:
17+
debug:
1818
verbosity: detailed
1919
otlp:
2020
endpoint: jaeger:4317
@@ -26,9 +26,9 @@ service:
2626
metrics:
2727
receivers: [otlp]
2828
processors: [memory_limiter, batch]
29-
exporters: [logging]
29+
exporters: [debug]
3030

3131
traces:
3232
receivers: [otlp]
3333
processors: [memory_limiter, batch]
34-
exporters: [logging, otlp]
34+
exporters: [debug, otlp]

0 commit comments

Comments
 (0)