Skip to main content

OpenTelemetry Official OpenAI instrumentation

Project description

pypi

This library allows tracing LLM requests and logging of messages made by the OpenAI Python API library. It also captures the duration of the operations and the number of tokens used as metrics.

Many LLM platforms support the OpenAI SDK. This means systems such as the following are observable with this instrumentation when accessed using it:

OpenAI Compatible Platforms

Name

gen_ai.system

Azure OpenAI

az.ai.openai

Gemini

gemini

Perplexity

perplexity

xAI (Compatible with Anthropic)

xai

DeepSeek

deepseek

Groq

groq

MistralAI

mistral_ai

Installation

If your application is already instrumented with OpenTelemetry, add this package to your requirements.

pip install splunk-otel-instrumentation-openai

If you don’t have an OpenAI application, yet, try our examples which only need a valid OpenAI API key.

Check out zero-code example for a quick start.

Usage

This section describes how to set up OpenAI instrumentation if you’re setting OpenTelemetry up manually. Check out the manual example for more details.

Instrumenting all clients

When using the instrumentor, all clients will automatically trace OpenAI operations including chat completions and embeddings. You can also optionally capture prompts and completions as log events.

Make sure to configure OpenTelemetry tracing, logging, and events to capture all telemetry emitted by the instrumentation.

from opentelemetry.instrumentation.openai_v2 import OpenAIInstrumentor

OpenAIInstrumentor().instrument()

client = OpenAI()
# Chat completion example
response = client.chat.completions.create(
    model="gpt-4o-mini",
    messages=[
        {"role": "user", "content": "Write a short poem on open telemetry."},
    ],
)

# Embeddings example
embedding_response = client.embeddings.create(
    model="text-embedding-3-small",
    input="Generate vector embeddings for this text"
)

Enabling message content

Message content such as the contents of the prompt, completion, function arguments and return values are not captured by default. To capture message content as log events, set the environment variable OTEL_INSTRUMENTATION_GENAI_CAPTURE_MESSAGE_CONTENT to true.

See the upstream OpenTelemetry documentation for more details.

Suppressing nested instrumentation

When using multiple instrumentations together (e.g., LangChain + OpenAI), the higher-level instrumentation automatically sets SUPPRESS_LANGUAGE_MODEL_INSTRUMENTATION_KEY in the OpenTelemetry context to prevent duplicate spans for the same underlying LLM call.

This is handled transparently — no user configuration is needed. For example, when LangChain instrumentation is active alongside OpenAI instrumentation, you will see LangChain spans without redundant nested OpenAI spans.

Uninstrument

To uninstrument clients, call the uninstrument method:

from opentelemetry.instrumentation.openai_v2 import OpenAIInstrumentor

OpenAIInstrumentor().instrument()
# ...

# Uninstrument all clients
OpenAIInstrumentor().uninstrument()

References

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

splunk_otel_instrumentation_openai-0.1.2.tar.gz (189.7 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

File details

Details for the file splunk_otel_instrumentation_openai-0.1.2.tar.gz.

File metadata

File hashes

Hashes for splunk_otel_instrumentation_openai-0.1.2.tar.gz
Algorithm Hash digest
SHA256 df7bde6dbae5eb929452d3ce2655e528eaedb29f6585478b4e3bc3f7a12a157d
MD5 7e4f3e5422561f21e5842320794881a6
BLAKE2b-256 17a453afdf5815f9286a8b06826811fc6d3910d95c6aa1a51948b3d5a51f986b

See more details on using hashes here.

File details

Details for the file splunk_otel_instrumentation_openai-0.1.2-py3-none-any.whl.

File metadata

File hashes

Hashes for splunk_otel_instrumentation_openai-0.1.2-py3-none-any.whl
Algorithm Hash digest
SHA256 b36c2022c43ab37bdcb467715a002638f1bfaad24de114f89c45b3cdc1cfecb7
MD5 e14fea8761df5691ff2624092f025d40
BLAKE2b-256 053c2793307c9e0241ca9ad22bbc9ec6be0f3ddbef3444c04d4391bb65054431

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page