opentelemetry-python icon indicating copy to clipboard operation
opentelemetry-python copied to clipboard

OpenTelemetry logs not being suppressed on the console.

Open abhinavyesss opened this issue 10 months ago • 3 comments

Python 3.10.12 opentelemetry-api 1.24.0 opentelemetry-instrumentation-flask 0.45b0 azure-monitor-opentelemetry 1.4.1

My code is similar to the one displayed in this example. I have initialized OTEL_LOGS_EXPORTER=None.

On setting the above variable as None, I expected logs to not be exported.

However my console is filled with logs like: [2024-05-03 12:36:59,299][INFO][Process-483][OtelPeriodicExportingMetricReader][_universal][on_response] Response status: 200 Response headers: 'Transfer-Encoding': 'chunked' 'Content-Type': 'application/json; charset=utf-8' 'Server': 'Microsoft-HTTPAPI/2.0' 'Strict-Transport-Security': 'REDACTED' 'X-Content-Type-Options': 'REDACTED' 'Date': 'Fri, 03 May 2024 12:36:57 GMT' [2024-05-03 12:36:59,704][INFO][Process-488][OtelPeriodicExportingMetricReader][_universal][on_response] Response status: 200 Response headers: 'Transfer-Encoding': 'chunked' 'Content-Type': 'application/json; charset=utf-8' 'Server': 'Microsoft-HTTPAPI/2.0' 'Strict-Transport-Security': 'REDACTED' 'X-Content-Type-Options': 'REDACTED' 'Date': 'Fri, 03 May 2024 12:36:57 GMT'

This makes it hard for me to view the actual logs. What would be the correct way to stop these message from being displayed on the console?

abhinavyesss avatar May 03 '24 12:05 abhinavyesss