Skip to content

Commit

Permalink
Remove unnecessary configuration of logs exporter in Gen AI samples
Browse files Browse the repository at this point in the history
It is no longer necessary since we now set up the logging pipeline by
default with OTLP exporter.
  • Loading branch information
aabmass committed Dec 23, 2024
1 parent b03bf00 commit 898b26c
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,11 @@ OPENAI_API_KEY=sk-YOUR_API_KEY

OTEL_SERVICE_NAME=opentelemetry-python-openai

# Change to 'false' to disable logging
# Change to 'false' to disable collection of python logging logs
OTEL_PYTHON_LOGGING_AUTO_INSTRUMENTATION_ENABLED=true
# Change to 'console' if your OTLP endpoint doesn't support logs
# TODO: this should not be necessary once https://github.com/open-telemetry/opentelemetry-python-contrib/pull/3042 is released
OTEL_LOGS_EXPORTER=otlp

# Uncomment if your OTLP endpoint doesn't support logs
# OTEL_LOGS_EXPORTER=console

# Change to 'false' to hide prompt and completion content
OTEL_INSTRUMENTATION_GENAI_CAPTURE_MESSAGE_CONTENT=true
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,11 @@

OTEL_SERVICE_NAME=opentelemetry-python-vertexai

# Change to 'false' to disable logging
# Change to 'false' to disable collection of python logging logs
OTEL_PYTHON_LOGGING_AUTO_INSTRUMENTATION_ENABLED=true
# Change to 'console' if your OTLP endpoint doesn't support logs
# TODO: this should not be necessary once https://github.com/open-telemetry/opentelemetry-python-contrib/pull/3042 is released
OTEL_LOGS_EXPORTER=otlp

# Uncomment if your OTLP endpoint doesn't support logs
# OTEL_LOGS_EXPORTER=console

# Change to 'false' to hide prompt and completion content
OTEL_INSTRUMENTATION_GENAI_CAPTURE_MESSAGE_CONTENT=true

0 comments on commit 898b26c

Please sign in to comment.