Setup using Phoenix OTEL
phoenix.otel
is a lightweight wrapper around OpenTelemetry primitives with Phoenix-aware defaults.
These defaults are aware of environment variables you may have set to configure Phoenix:
PHOENIX_COLLECTOR_ENDPOINT
PHOENIX_PROJECT_NAME
PHOENIX_CLIENT_HEADERS
PHOENIX_API_KEY
PHOENIX_GRPC_PORT
Quickstart: phoenix.otel.register
phoenix.otel.register
The phoenix.otel
module provides a high-level register
function to configure OpenTelemetry tracing by setting a global TracerProvider
. The register function can also configure headers and whether or not to process spans one by one or by batch.
Phoenix Authentication
If the PHOENIX_API_KEY
environment variable is set, register
will automatically add anauthorization
header to each span payload.
Configuring the collector endpoint
There are two ways to configure the collector endpoint:
Using environment variables
Using the
endpoint
keyword argument
Using environment variables
If you're setting the PHOENIX_COLLECTOR_ENDPOINT
environment variable, register
will
automatically try to send spans to your Phoenix server using gRPC.
Specifying the endpoint
directly
endpoint
directlyWhen passing in the endpoint
argument, you must specify the fully qualified endpoint. If the PHOENIX_GRPC_PORT
environment variable is set, it will override the default gRPC port.
The HTTP transport protocol is inferred from the endpoint
Additional configuration
register
can be configured with different keyword arguments:
project_name
: The Phoenix project nameor use
PHOENIX_PROJECT_NAME
env. var
headers
: Headers to send along with each span payloador use
PHOENIX_CLIENT_HEADERS
env. var
batch
: Whether or not to process spans in batch
Last updated
Was this helpful?