Integrate TiDB Cloud with Prometheus and Grafana
TiDB Cloud provides a Prometheus API endpoint. If you have a Prometheus service, you can monitor key metrics of TiDB Cloud from the endpoint easily.
This document describes how to configure your Prometheus service to read key metrics from the TiDB Cloud endpoint and how to view the metrics using Grafana.
Prometheus integration versions
TiDB Cloud has supported the project-level Prometheus integration (Beta) since March 15, 2022. Starting from October 21, 2025, TiDB Cloud introduces the cluster-level Prometheus integration (Preview). Starting from December 2, 2025, the cluster-level Prometheus integration becomes generally available (GA).
Cluster-level Prometheus integration: if no legacy project-level Prometheus integration remains undeleted within your organization by October 21, 2025, TiDB Cloud provides the cluster-level Prometheus integration for your organization to experience the latest enhancements.
Legacy project-level Prometheus integration (Beta): if at least one legacy project-level Prometheus integration remains undeleted within your organization by October 21, 2025, TiDB Cloud retains both existing and new integrations at the project level for your organization to avoid affecting current dashboards.
Prerequisites
To integrate TiDB Cloud with Prometheus, you must have a self-hosted or managed Prometheus service.
To set up third-party metrics integration for TiDB Cloud, you must have the
Organization OwnerorProject Owneraccess in TiDB Cloud. To view the integration page, you need at least theProject Viewerrole to access the target TiDB Cloud Dedicated clusters under your project in TiDB Cloud.
Limitation
- Prometheus and Grafana integrations now are only available for TiDB Cloud Dedicated clusters.
- Prometheus and Grafana integrations are not available when the cluster status is CREATING, RESTORING, PAUSED, or RESUMING.
Steps
Step 1. Get a scrape_config file for Prometheus
Before configuring your Prometheus service to read metrics of TiDB Cloud, you need to generate a scrape_config YAML file in TiDB Cloud first. The scrape_config file contains a unique bearer token that allows the Prometheus service to monitor your target TiDB Cloud Dedicated clusters.
Depending on your Prometheus integration version, the steps to get the scrape_config file for Prometheus and access the integration page are different.
- In the TiDB Cloud console, navigate to the My TiDB page, and then click the name of your target TiDB Cloud Dedicated cluster to go to its overview page.
- In the left navigation pane, click Settings > Integrations.
- On the Integrations page, click Integration to Prometheus.
- Click Add File to generate and show the
scrape_configfile for the current cluster. - Make a copy of the
scrape_configfile content for later use.
- In the TiDB Cloud console, navigate to the My TiDB page of your organization, and then click the Project view tab.
- In the project view, locate your target project, and then click for the project.
- In the left navigation pane, click Integrations under Project Settings.
- On the Integrations page, click Integration to Prometheus (BETA).
- Click Add File to generate and show the scrape_config file for the current project.
- Make a copy of the
scrape_configfile content for later use.
Step 2. Integrate with Prometheus
In the monitoring directory specified by your Prometheus service, locate the Prometheus configuration file.
For example,
/etc/prometheus/prometheus.yml.In the Prometheus configuration file, locate the
scrape_configssection, and then copy thescrape_configfile content obtained from TiDB Cloud to the section.In your Prometheus service, check Status > Targets to confirm that the new
scrape_configfile has been read. If not, you might need to restart the Prometheus service.
Step 3. Use Grafana GUI dashboards to visualize the metrics
After your Prometheus service is reading metrics from TiDB Cloud, you can use Grafana GUI dashboards to visualize the metrics as follows:
Depending on your Prometheus integration version, the link to download the Grafana dashboard JSON of TiDB Cloud for Prometheus is different.
Import this JSON to your own Grafana GUI to visualize the metrics.
(Optional) Customize the dashboard as needed by adding or removing panels, changing data sources, and modifying display options.
For more information about how to use Grafana, see Grafana documentation.
Best practice of rotating scrape_config
To improve data security, it is a general best practice to periodically rotate scrape_config file bearer tokens.
- Follow Step 1 to create a new
scrape_configfile for Prometheus. - Add the content of the new file to your Prometheus configuration file.
- Once you have confirmed that your Prometheus service is still able to read from TiDB Cloud, remove the content of the old
scrape_configfile from your Prometheus configuration file. - On the Integrations page of your project or cluster, delete the corresponding old
scrape_configfile to block anyone else from using it to read from the TiDB Cloud Prometheus endpoint.
Metrics available to Prometheus
Prometheus tracks the following metric data for your TiDB clusters.
For cluster-level Prometheus integration, the following additional metrics are also available:
FAQ
Why does the same metric have different values on Grafana and the TiDB Cloud console at the same time?
The aggregation calculation logic is different between Grafana and TiDB Cloud, so the displayed aggregated values might differ. You can adjust the
mini stepconfiguration in Grafana to get more fine-grained metric values.