Menu
Enterprise

Cross-tenant query federation

GET supports creating access policies that can span multiple tenants. Viewers in Grafana Enterprise can see data coming from more than one tenant simultaneously.

By default, the GET gateway service is used as the target for querying GET (for example, using trace ID or TraceQL queries) and sending trace span data (using OTLP gRPC). Cross-tenant query federation, however, requires an extra component called the federation-frontend service.

Architecture

The federation-frontend service acts as the target for queries instead of the GET gateway service. The diagram below shows this as a visualization:

How the federation-frontend service enables cross-tenant query federation

The data from multiple tenants is aggregated in a single trace lookup or search query as multiple queries to the GET gateway. The gateway then carries out these queries and returns the data to the federation service which combines them as a final query result.

The federation-frontend runs with tenant federation enabled by default. The federation-frontend service can be deployed independently from a GET installation, however, there are certain circumstances in which some queries are not valid in this case.

Cross-tenant queries are made by sending queries via the federation-frontend service that include basic authentication with a username signifying that multiple tenants should be inspected. In this case, the username can be either tenant names or a wildcard to search all tenants when configuring the Authentication in the GET plugin. These tenants must be accessible using the same access policy token and separated by the pipe (|) symbol, or using the wildcard (*) symbol. Using the wildcard symbol searches all tenants that can be queried by the supplied access token.

Example authentication in the GET plugin for cross-tenant

This page covers the ability to query data from multiple tenants at once.

Before you begin

The procedures on this page assume there are two GET tenants: team-engineering and team-finance. To create a tenant, refer to Set up a GET tenant.

The federation-frontend target itself requires a configured GET installation installed using the tempo-distributed Helm chart. The examples provided use a GET installation that does not use TLS.

For cross-tenant querying, the federation-frontend component is usually deployed as part of a larger GET installation, and therefore has access to all of the configuration for that installation. Specify cross-tenant requests in the form <tenant1>|<tenant2>|...<tenantN>, in which case the federation-frontend separate the request into individual tenant requests.

To allow requests from any valid tenant associated with the supplied token, use a wildcard tenant name (*) as the username in cross-tenant requests. To use a wildcard tenant name, your federation-frontend must access the admin storage bucket as the GET clusters so the service can retrieve the specific tenants that pertain to the access policy that the token represents. Verify that the federation-frontend configuration includes an admin_client section. For example:

yaml
auth_enabled: true
admin_client:
  storage:
    backend: s3
    s3:
      bucket_name: <bucketName>
      endpoint: <s3Endpoint>
      access_key_id: <accessKey>
      secret_access_key: <secretKey>

In situations where a wildcard tenant name passes to the federation-frontend, you must supply an admin_client configuration section if the component is not part of a GET installation.

Configure cross-tenant queries

To enable the federation-frontend for an installed GET cluster, you need to add an extra configuration in your Helm chart’s values.yaml file and upgrade the GET cluster using the values.yaml file. This configuration assumes that TLS is not enabled as part of the GET installation.

This example configuration enables the federation-frontend service, and then details the targets that it should use to send onward queries to, via the proxy_targets URL list (this being the GET gateway). The default access policy management in GET allows only for tokens created in that GET cluster to access its own tenants, and therefore there is only one entry in the proxy_targets list.

For more information, refer to the federation-frontend configuration documentation.

  1. Locate your values.yaml file used with your tempo-distributed Helm chart installation.

  2. Open the file and add the following section:

    yaml
    enterpriseFederationFrontend:
      enabled: true
      proxy_targets:
    	- url: http://myinstall-get-cluster-tempo-enterprise-gateway.get.svc:3100
      	tls_insecure_skip_verify: true

    Save the changes.

  3. Use the command below to upgrade the GET cluster with the changes in your values.yaml file.

    • Change the GET installation name (MYINSTALL-GET-CLUSTER) to your GET cluster
    • Add the appropriate namespace by replacing GET-NAMESPACE
    • Add the version number of the Helm chart (HELM-CHART-VERSION). Run the command to upgrade the GET cluster.
    bash
    helm upgrade -f values.yaml MYINSTALL-GET-CLUSTER grafana/tempo-distributed --namespace GET-NAMESPACE --version HELM-CHART-VERSION

Helm updates the GET installation to include the federation-frontend service, which allows any queries routed to it to be cross-tenant compatible.

Queries against single tenants can be sent via the GET gateway, if required, although it may be more convenient to use the service for all queries regardless of cross-tenant status.

Set up an access policy with tenant federation and a token

For demonstration purposes, we’ll create two new tenants, create a shared access policy for them, and then query trace data using a single data source and query.

Create two new tenants

First, create two new tenants, team-engineering and team-finance, using the Grafana Enterprise Traces plugin for Grafana.

  1. Within Grafana, select Apps > Grafana Enterprise Traces.

  2. Select Tenants and then choose Create tenant.

  3. Name the first tenant team-engineering.

  4. Select Create tenant again and name the second tenant team-finance.

    Add two new tenants using the GET plugins

Create an access policy for the tenants

To allow queries to span both GET tenants, create a new access policy called leadership. For demonstration purposes, name these tenants team-engineering and team-finance. To create a raw access policy:

  1. Create a new access policy leadership.

  2. Enable the traces:read scope.

  3. Add the tenants team-engineering and team-finance. Alternatively, you can add the special tenant name * to create an access policy that has access to all tenants in the cluster.

  4. Select Create to add the new access policy. Create a new access policy for the tenants

  5. Select Add token to create a new token for the access-policy.

  6. Select Copy to clipboard to store the token in your clipboard.

Set up a Grafana data source using the access policy

In the standard configuration, the Grafana Enterprise Traces plugin creates a data source for each tenant, which uses the GET gateway and configures it specifically for the single tenant specified. To use the cross-tenant capabilities, create a new Tempo data source that uses the federation-frontend service and specifies both tenants.

To set up a data source using the access policy:

  1. Create a new Tempo data source from the Grafana Connections menu and select Data sources. Select Add new data source.

  2. Search for Tempo and select Tempo data source.

  3. Under Connection field, select URL from the drop-down. Enter the URL of the frontend-federation Kubernetes service in your GET cluster. For example, where mycluster-get-install-tempo-enterprise-federation-frontend represents your GET namespace: http://mycluster-get-install-tempo-enterprise-federation-frontend.get.svc.cluster.local:3100.

  4. From the Authentication section, enable Basic authentication.

    1. In the User field, enter: team-engineering|team-finance where all the names of the tenants that you want to query across are separated by the | pipe character.
    2. In the Password field, paste the token created in the token creation process for the tenant policy.
  5. At the bottom of the page, select Save to preserve your changes and Test to validate the configuration.

Authorization for cross-tenant configuration in the GET plugin

The test should respond with ‘Data source successfully connected’.

Use OpenTelemetry telemetrygen to generate tracing data

Next, use OpenTelemetry telemetrygen to generate tracing data to test your configuration.

In the following instructions, the GET gateway is port-forwarded to a local development machine on port 3100 using the kubectl port-forward command.

To use this example, replace the content in upper case with the information for your cluster.

bash
kubectl port-forward --address 0.0.0.0 service/MYCLUSTER-GET-INSTALL-TEMPO-ENTERPRISE-GATEWAY 3100:3100 --namespace GET-NAMESPACE
  1. Install telemetrygen using the installation procedure. NOTE: You don’t need to configure an OpenTelemetry Collector as we are using the Grafana Agent.

  2. Create a new base64 token for both the team-engineering and team-finance tenants. For example:

    bash
    echo 'team-engineering:<generatedToken>' | base64
    echo 'team-finance:<generatedToken>' | base64
  3. Run this command twice to generate traces using telemetrygen for each separate tenant and token for each token. Replace the base64Token with the one generated for each tenant.

    bash
    telemetrygen traces --traces 1 --otlp-insecure --otlp-header 'Authorization="Basic <base64Token>"' --otlp-endpoint localhost:3100

This configuration sends a single trace to each of the tenants. When a cross-tenant query runs, you should see two traces instead of a single trace for one tenant.

Use cross-tenant query federation

Queries are performed using the cross-tenant configured data source in either Explore or inside of dashboards are performed across all the tenants that you specified in the User field. These queries are processed as if all the data were in a single tenant.

To submit a query across all tenants that your access policy has access rights to, you can either:

  • Explicitly set the name of all the tenants separated by a pipe character “|” in the username. For example, to query across tenant1, tenant2, and tenant3 you would enter tenant1|tenant2|tenant3.

  • Set the username to a wildcard character *. This will query all tenants that the access policy grants you access to, without requiring you to explicitly specify their names.

Conversely, if you use a wildcard username in your data source configuration with an access policy with specific tenants, that data source has access to only those tenants.

  1. Go to your Grafana instance and select the Explorer.
  2. Select your cross-tenant data source.
  3. Selection Query type > Search and select Run query. You should see two traces returned, one from each tenant.

TraceQL query showing results for cross-tenant search