This is documentation for the next version of Grafana Tempo documentation. For the latest stable release, go to the latest version.
Enable multi-tenancy
Tempo is a multi-tenant distributed tracing backend.
Tempo uses the X-Scope-OrgID header to enforce multi-tenancy in Tempo and Grafana Enterprise Traces.
It is set to the tenant (or “organization”) name.
It is used for scoped writes (ingest) so that each span is stored under its specified tenant, and scoped reads so that queries return only that tenant’s data.
If you’re interested in setting up multi-tenancy, consult the multi-tenant example in the repository. This example uses the following settings to achieve multi-tenancy in Tempo.
Tenant IDs
Tenant IDs are transmitted to Tempo via the X-Scope-OrgID HTTP header. This header must be included in all requests to Tempo when multi-tenancy is enabled.
Multi-tenancy on ingestion is supported with both gRPC and HTTP for OTLP (OpenTelemetry Protocol). You can add the header in:
- OpenTelemetry Collector configuration
- Grafana Alloy configuration
- Any HTTP/gRPC client using
curlor other relevant tools
Example Alloy configuration
The following example shows how to configure Grafana Alloy to send traces with a tenant ID.
otelcol.exporter.otlphttp "tempo" {
// Define the client for exporting.
client {
// Send the X-Scope-OrgID header to the Tempo instance for multi-tenancy (tenant 1234).
headers = {
"X-Scope-OrgID" = "1234",
}
// Send to the locally running Tempo instance, on port 4317 (OTLP gRPC).
endpoint = "http://tempo:4318"
// Configure TLS settings for communicating with the endpoint.
tls {
// The connection is insecure.
insecure = true
// Do not verify TLS certificates when connecting.
insecure_skip_verify = true
}
}
}Configure multi-tenancy
Configure the OpenTelemetry Collector to attach the
X-Scope-OrgIDheader on push:exporters: otlp: headers: x-scope-orgid: foo-bar-bazConfigure the Tempo data source in Grafana to pass the tenant with the same header:
- name: Tempo-Multitenant jsonData: httpHeaderName1: "X-Scope-OrgID" secureJsonData: httpHeaderValue1: "foo-bar-baz"Enable multi-tenancy on the Tempo backend by setting the following configuration value on all Tempo components:
multitenancy_enabled: trueor from the command line:
--multitenancy.enabled=trueThis option forces all Tempo components to require the
X-Scope-OrgIDheader.
Configure per-tenant settings
After you enable multi-tenancy, you can customize settings on a per-tenant basis using runtime overrides. This is useful when different tenants have different requirements, for example varying block retention periods or ingestion limits.
This configuration works for both Tempo 2.x and Tempo 3.x architectures.
To configure per-tenant overrides, create a separate overrides file and reference it from your main Tempo configuration:
# tempo.yaml
overrides:
per_tenant_override_config: /conf/overrides.yamlDefine tenant-specific settings in the overrides.yaml file.
The following example sets different block retention periods and ingestion limits for two tenants:
# overrides.yaml
overrides:
"tenant-a":
compaction:
block_retention: 24h
ingestion:
burst_size_bytes: 20000000
rate_limit_bytes: 4000000
max_traces_per_user: 10000
global:
max_bytes_per_trace: 30000000
metrics_generator:
collection_interval: 15s
ring_size: 2
max_active_series: 5000
processors:
- span-metrics
- service-graphs
forwarder:
queue_size: 5000
workers: 3
"tenant-b":
compaction:
block_retention: 48h
ingestion:
burst_size_bytes: 20000000
rate_limit_bytes: 4000000
max_traces_per_user: 10000
global:
max_bytes_per_trace: 30000000
metrics_generator:
ring_size: 2
max_active_series: 100000
processors: []
forwarder:
queue_size: 5000
workers: 3Warning
When using per-tenant overrides, you must set every field you want to preserve. Tempo replaces unset fields with zero values, not with the defaults from your main configuration. Omitting a field can lead to unexpected behavior, such as a
0sretention effectively disabling block retention for that tenant.
The overrides file is dynamically loaded, so you can update it at runtime without restarting Tempo.
For the full list of available override fields, refer to Overrides.


