diff --git a/.docker/otel-collector-config.yaml b/.docker/otel-collector-config.yaml index afc7579..f832d69 100644 --- a/.docker/otel-collector-config.yaml +++ b/.docker/otel-collector-config.yaml @@ -5,7 +5,6 @@ receivers: http: exporters: - debug: logging: prometheus: endpoint: "0.0.0.0:8889" diff --git a/README.md b/README.md index 844c53e..d8821f6 100644 --- a/README.md +++ b/README.md @@ -208,7 +208,7 @@ receivers: http: exporters: - debug: + logging: prometheus: endpoint: "0.0.0.0:8889" const_labels: @@ -218,6 +218,9 @@ exporters: tls: insecure: true +processors: + batch: + service: pipelines: metrics: @@ -226,6 +229,10 @@ service: traces: receivers: [otlp] exporters: [otlp] + logs: + receivers: [otlp] + processors: [batch] + exporters: [logging] ``` ## Development / contributions