diff --git a/examples/instrumentation/Wordpress/compose.yaml b/examples/instrumentation/Wordpress/compose.yaml index 882c2f9e..5864f735 100644 --- a/examples/instrumentation/Wordpress/compose.yaml +++ b/examples/instrumentation/Wordpress/compose.yaml @@ -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 diff --git a/examples/instrumentation/Wordpress/otel-collector-config.yaml b/examples/instrumentation/Wordpress/otel-collector-config.yaml index af7acc20..089229f0 100644 --- a/examples/instrumentation/Wordpress/otel-collector-config.yaml +++ b/examples/instrumentation/Wordpress/otel-collector-config.yaml @@ -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 @@ -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]