Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
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]
Loading