Skip to main content

Tracing

The tracing system allows developers to visualize call flows in their infrastructure. Traefik Hub API Gateway uses OpenTelemetry, an open standard designed for distributed tracing.


Helm Chart Configuration Options

Traefik Hub API Gateway can be configured to provide traces in the OpenTelemetry format using the Helm Chart values. To know more about the Helm Chart options, refer to the Helm Chart reference page (Options tracing.otlp).

Configuration Options

The section below describes how to configure Traefik Hub API Gateway to provide tracing using the install configuration.

FieldDescriptionDefaultRequired
tracing.addInternalsEnables tracing for internal resources (e.g.: ping@internals).falseNo
tracing.serviceNameService name used in selected backend."traefik"No
tracing.sampleRateThe proportion of requests to trace, specified between 0.0 and 1.0.1.0No
tracing.globalAttributesApplies a list of shared key:value attributes on all spans.No
tracing.capturedRequestHeadersDefines the list of request headers to add as attributes.
It applies to client and server kind spans.
No
tracing.capturedResponseHeadersDefines the list of response headers to add as attributes.
It applies to client and server kind spans.
False
tracing.safeQueryParamsBy default, all query parameters are redacted.
Defines the list of query parameters to not redact.
No
hub.tracing.additionalTraceHeaders.traceContextConfiguration object to duplicate Trace Context headers into dedicated headers.No
hub.tracing.additionalTraceHeaders.traceContext.traceParentName of the header to replicate the entire traceparent value.""No
hub.tracing.additionalTraceHeaders.traceContext.traceStateName of the header to replicate the tracestate value.""No
hub.tracing.additionalTraceHeaders.traceContext.traceIdExtracts the trace-id from the traceparent header and duplicates it into a dedicated header.""No
hub.tracing.additionalTraceHeaders.traceContext.parentIdExtracts the parent-id from the traceparent header and duplicates it into a dedicated header.""No
tracing.otlp.httpThis instructs the exporter to send the tracing to the OpenTelemetry Collector using HTTP.
Setting the sub-options with their default values.
null/falseNo
tracing.otlp.http.endpointURL of the OpenTelemetry Collector to send tracing to.
Format="<scheme>://<host>:<port><path>"
"http://localhost:4318/v1/tracing"Yes
tracing.otlp.http.headersAdditional headers sent with tracing by the exporter to the OpenTelemetry Collector.No
tracing.otlp.http.tls.caPath to the certificate authority used for the secure connection to the OpenTelemetry Collector, it defaults to the system bundle.""No
tracing.otlp.http.tls.certPath to the public certificate used for the secure connection to the OpenTelemetry Collector. When using this option, setting the key option is required.""No
tracing.otlp.http.tls.keyThis instructs the exporter to send the tracing to the OpenTelemetry Collector using HTTP.
Setting the sub-options with their default values.
""null/false ""No
tracing.otlp.http.tls.insecureskipverifyIf insecureSkipVerify is true, the TLS connection to the OpenTelemetry Collector accepts any certificate presented by the server regardless of the hostnames it covers.falseYes
tracing.otlp.grpcThis instructs the exporter to send tracing to the OpenTelemetry Collector using gRPC.falseNo
tracing.otlp.grpc.endpointAddress of the OpenTelemetry Collector to send tracing to.
Format="<host>:<port>"
"localhost:4317"Yes
tracing.otlp.grpc.headersAdditional headers sent with tracing by the exporter to the OpenTelemetry Collector.No
tracing.otlp.grpc.insecureAllows exporter to send tracing to the OpenTelemetry Collector without using a secured protocol.falseYes
tracing.otlp.grpc.tls.caPath to the certificate authority used for the secure connection to the OpenTelemetry Collector, it defaults to the system bundle.""No
tracing.otlp.grpc.tls.certPath to the public certificate used for the secure connection to the OpenTelemetry Collector. When using this option, setting the key option is required.""No
tracing.otlp.grpc.tls.keyThis instructs the exporter to send the tracing to the OpenTelemetry Collector using HTTP.
Setting the sub-options with their default values.
""null/false ""No
tracing.otlp.grpc.tls.insecureskipverifyIf insecureSkipVerify is true, the TLS connection to the OpenTelemetry Collector accepts any certificate presented by the server regardless of the hostnames it covers.falseYes

Generative AI Span Attributes Early Access

Early Access

This feature is currently in early access.

When you enable the AI Gateway, Traefik Hub enriches request spans with OpenTelemetry GenAI semantic-convention attributes. The AI middlewares (chat-completion, responses-api, messages-api) and the MCP middleware each add their own set of attributes. A first group of attributes is always present, and a second group is opt-in because it can carry sensitive content.

note

These attributes are only emitted when the AI Gateway is enabled and the request is handled by an AI or MCP middleware.

Under detailed trace verbosity, each Hub middleware span is named middleware <type> (for example, middleware chat-completion or middleware mcp), making middleware spans easier to identify.

AI middleware spans

The following attributes are always present, they aren't configurable:

AttributeDescriptionExample
gen_ai.operation.nameThe Generative AI operation being performed.chat
gen_ai.provider.nameThe Generative AI provider handling the request, resolved from the provider field or the upstream host.openai
gen_ai.request.modelThe model requested by the client.gpt-4o
gen_ai.response.modelThe model that produced the response.gpt-4o-2024-08-06
gen_ai.conversation.idThe conversation identifier for the request, extracted automatically for the Responses API or read from a request header when traces.conversationIdHeader is set.conv_123
error.typeThe class of error the operation ended with, on error.500
traefik.middleware.typeThe Hub middleware category, for selecting AI spans.AI

The following attributes are opt-in, grouped into levels set with traces.level. Each level includes everything from the level below it, minus anything listed in traces.excludeList:

AttributeLevelDescription
server.address, server.portminimal (default)The address and port of the upstream provider.
gen_ai.response.finish_reasonsdetailedThe upstream stop reasons, such as end_turn or content_filter.
gen_ai.usage.input_tokens, gen_ai.usage.output_tokensdetailedInput and output token counts.
gen_ai.usage.cache_creation.input_tokens, gen_ai.usage.cache_read.input_tokensdetailedThe cache token breakdown, present only when the provider reports those counts.
gen_ai.system_instructionscontentThe system prompt sent with the request.
gen_ai.tool.definitionscontentThe tools advertised in the request.
gen_ai.input.messagescontentThe request chat history, including tool-call parts.
gen_ai.output.messagescontentThe response messages, including tool-call parts.
System instructions

gen_ai.system_instructions captures the system prompt only. System-role messages sent inline in the request body are part of the conversation and appear under gen_ai.input.messages instead.

Provider cache tokens

gen_ai.usage.input_tokens already includes the cached tokens when the provider reports prompt caching. gen_ai.usage.cache_creation.input_tokens and gen_ai.usage.cache_read.input_tokens are the breakdown within it, not additional tokens on top, and appear only when the provider reports those counts.

Set the level you need on the AI middleware:

Enable detailed gen_ai span attributes on an AI middleware
apiVersion: traefik.io/v1alpha1
kind: Middleware
metadata:
name: chatcompletion
spec:
plugin:
chat-completion:
observability:
traces:
level: content
conversationIdHeader: X-Conversation-Id

conversationIdHeader is optional. Set it on Chat Completion and Messages API to populate gen_ai.conversation.id, since neither API exposes a native conversation field the way the Responses API does.

warning

At content, gen_ai.input.messages, gen_ai.output.messages, and gen_ai.system_instructions capture the prompt and completion content, which can contain personal or sensitive data. Set content only when your tracing backend is allowed to store this content.

MCP middleware spans

The following attributes are emitted on every MCP middleware span:

AttributeDescriptionExample
gen_ai.operation.nameThe MCP operation being performed.execute_tool
gen_ai.tool.nameThe name of the tool being called, on tool operations.get_weather
gen_ai.prompt.nameThe name of the prompt being requested, on prompt operations.code_review_prompt
mcp.method.nameThe JSON-RPC method invoked.tools/call
mcp.protocol.versionThe MCP protocol version negotiated with the client.2025-06-18
mcp.resource.uriThe URI of the resource read, on resource operations.file:///README.md
mcp.session.idThe MCP session identifier.session-123
jsonrpc.request.idThe JSON-RPC request identifier.1

The following attributes are opt-in. Each flag is off by default and is enabled under traces.genAI on the MCP middleware:

AttributeConfig flagDescription
gen_ai.tool.call.argumentstoolCallArgumentsThe arguments passed to the tool call.
gen_ai.tool.call.resulttoolCallResultThe result returned by the tool call.

Enable them on the MCP middleware:

Enable gen_ai tool-call attributes on the MCP middleware
apiVersion: traefik.io/v1alpha1
kind: Middleware
metadata:
name: mcp
spec:
plugin:
mcp:
traces:
genAI:
toolCallArguments: true
toolCallResult: true
warning

toolCallArguments and toolCallResult capture the tool inputs and outputs, which can contain personal or sensitive data. Enable them only when your tracing backend is allowed to store this content.

Additional Information

Default protocol

The OpenTelemetry trace exporter will export traces to the collector to https://localhost:4318/v1/traces using HTTP by default, use the tracing.otlp.grpc option explicitly to enable GRPC instead.

Trace sampling

By default, the OpenTelemetry trace exporter will sample 100% of traces. See the OpenTelemetry's SDK configuration to customize the sampling strategy.

Propagation

Traefik Hub API Gateway supports the OTEL_PROPAGATORS env variable to set up the propagators. The supported propagators are:

  • tracecontext (default)
  • baggage (default)
  • b3
  • b3multi
  • jaeger
  • xray
  • ottrace
Configuration Example
OTEL_PROPAGATORS=b3,jaeger

Forward OTel trace-id using a Header

To facilitate the propagation of OpenTelemetry (OTel) trace identifiers through dedicated headers, Traefik Hub API Gateway offers the tracing.additionalTraceHeaders.traceContext configuration. This feature allows the duplication of Trace Context headers into custom headers, enabling enhanced traceability across services.

Example

When migrating from a legacy tracing solution to OpenTelemetry, you may need to continue supplying a legacy tracing header. By using the duplicate headers option, you can automatically replicate the traceparent and tracestate values, as well as extract the trace-id and parent-id into custom headers.

For example, to replicate the trace-id in a header called E2ETrackingID, configure:

tracing:
additionalTraceHeaders:
traceContext:
traceId: E2ETrackingID

If the request arrives with an E2ETrackingID header, it will be overwritten by the trace-id extracted from the OpenTelemetry traceparent. This helps maintain backward compatibility with existing applications that rely on a legacy tracing header, while still adopting the standard W3C trace context format for OTel-based tracing.

info

When configuring tracing using install configuration, the hub prefix is required (e.g., hub.tracing.additionalTraceHeaders). However, when using Helm Chart values, the prefix is not needed (e.g., tracing.additionalTraceHeaders). This is because the Helm values are mapped directly to Traefik Hub's internal configuration, while the install configuration follows the binary CLI structure.