OpenTelemetry OTLP span exporter preconfigured for Galileo platform integration.This exporter extends the standard OTLPSpanExporter with Galileo-specific
configuration and authentication. For most applications, consider using
GalileoSpanProcessor instead, which provides a complete tracing solution.
Complete OpenTelemetry span processor with integrated Galileo export functionality.This processor combines span processing and export capabilities into a single
component that can be directly attached to any OpenTelemetry TracerProvider.
It handles the complete lifecycle of spans from creation to export to Galileo.Examples
Copy
Ask AI
from opentelemetry.sdk.trace import TracerProvidertracer_provider = TracerProvider()processor = GalileoSpanProcessor(project="my-project")add_galileo_span_processor(tracer_provider, processor)