Skip to main content
Galileo supports logging traces from Microsoft Agent Framework applications using OpenTelemetry. The framework has built-in OTel instrumentation, so no extra instrumentation package is needed.

Set up OpenTelemetry

To log Microsoft Agent Framework traces using Galileo, the first step is to set up OpenTelemetry.
1

Installation

Add the OpenTelemetry packages to your project:
The opentelemetry-api and opentelemetry-sdk packages provide the core OpenTelemetry functionality. The opentelemetry-exporter-otlp package enables sending traces to Galileo’s OTLP endpoint.
2

Create environment variables for your Galileo settings

Set environment variables for your Galileo settings, for example in a .env file. These environment variables are consumed by the GalileoSpanProcessorto authenticate and route traces to the correct Galileo Project and Log stream:
3

Self hosted deployments: Set the OTel endpoint

Skip this step if you are using Galileo Cloud.
The OTel endpoint is different from Galileo’s regular API endpoint and is specifically designed to receive telemetry data in the OTLP format.If you are using:
  • Galileo Cloud at app.galileo.ai, then you don’t need to provide a custom OTel endpoint. The default endpoint https://api.galileo.ai/otel/traces will be used automatically.
  • A self-hosted Galileo deployment, replace the https://api.galileo.ai/otel/traces endpoint with your deployment URL. The format of this URL is based on your console URL, replacing console with api and appending /otel/traces.
For example:
  • if your console URL is https://console.galileo.example.com, the OTel endpoint would be https://api.galileo.example.com/otel/traces
  • if your console URL is https://console-galileo.apps.mycompany.com, the OTel endpoint would be https://api-galileo.apps.mycompany.com/otel/traces
The convention is to store this in the GALILEO_CONSOLE_URL environment variable. For example:
4

Initialize and create the Galileo span processor

The GalileoSpanProcessor automatically configures authentication and metadata using your environment variables. It also:
  • Auto-builds OTLP headers using your Galileo credentials
  • Configures the correct OTLP trace endpoint
  • Registers a batch span processor that exports traces to Galileo

Log a Microsoft Agent Framework agent using OpenTelemetry

Once OpenTelemetry is configured, you can use the GalileoSpanProcessor to capture traces from your agent.
1

Create the tracer provider with the Galileo span processor

Set up a TracerProvider with the GalileoSpanProcessor and register it as the global tracer provider:
2

Enable the framework's instrumentation

Enable the Microsoft Agent Framework’s built-in OTel instrumentation. Set enable_sensitive_data=True to send LLM inputs and outputs to Galileo. If set to False, only span metadata (timing, token counts, etc.) will be sent.
When you run your agent code, traces will be logged to Galileo.

Full example

Here is a full example based on the Microsoft Agent Framework’s tool calling sample. You can find this project in the Galileo SDK examples repo. To run this example, create a .env file with the following values set, or set them as environment variables:
.env
Remember to update these to match your Galileo API key, project name, and Log stream name.