title | summary |
---|---|
Upgrade Cluster Monitoring Services |
Learn how to upgrade the Prometheus, Grafana, and Alertmanager monitoring services for your TiDB cluster. |
When deploying a TiDB cluster, TiUP automatically deploys monitoring services (such as Prometheus, Grafana, and Alertmanager) for the cluster. If you scale out this cluster, TiUP also automatically adds monitoring configurations for newly added nodes during the scaling. The monitoring services automatically deployed by TiUP are usually not the latest versions of these third-party monitoring services. To use the latest versions, you can follow this document to upgrade the monitoring services.
When managing a cluster, TiUP uses its own configurations to override the configurations of the monitoring services. If you directly upgrade the monitoring services by replacing their configuration files, any subsequent TiUP operations such as deploy
, scale-out
, scale-in
, and reload
on the cluster might overwrite your upgrade, leading to errors. To upgrade Prometheus, Grafana, and Alertmanager, follow the steps in this document rather than directly replacing configuration files.
Note:
- If your monitoring services are deployed manually instead of using TiUP, you can directly upgrade them without referring to this document.
- The TiDB compatibility with newer versions of monitoring services has not been tested, so some features might not work as expected after the upgrade. For any issues, create an issue on GitHub.
- The upgrade steps in this document are applicable for TiUP version 1.9.0 and later. Therefore, check your TiUP version before the upgrade.
- When you use TiUP to upgrade the TiDB cluster, TiUP will redeploy the monitoring services to the default version. You need to redo the upgrade for monitoring services after the TiDB upgrade.
For better compatibility with TiDB, it is recommended to use the Prometheus installation package provided in the TiDB installation package. The version of Prometheus in the TiDB installation package is fixed. If you want to use a newer Prometheus version, refer to Prometheus Release Notes for new features of each version and choose a suitable version for your production environment. You can also consult with PingCAP technical staff for a recommended version.
In the following upgrade steps, you need to download the Prometheus installation package of your desired version from the Prometheus website, and then use it to create a Prometheus package that TiUP can use.
Download a new installation package from the Prometheus download page and extract it.
-
Download the TiDB server package and extract it. Note that your downloading means you agree to the Privacy Policy.
https://download.pingcap.org/tidb-community-server-{version}-linux-{arch}.tar.gz
Tip:
{version}
in the link indicates the version number of TiDB and{arch}
indicates the architecture of the system, which can beamd64
orarm64
. For example, the download link forv8.1.0
in theamd64
architecture ishttps://download.pingcap.org/tidb-community-toolkit-v8.1.0-linux-amd64.tar.gz
. -
In the extracted files, locate
prometheus-v{version}-linux-amd64.tar.gz
and extract it.tar -xzf prometheus-v{version}-linux-amd64.tar.gz
-
Copy the files extracted in Step 1, and then use the copied files to replace the files in the
./prometheus-v{version}-linux-amd64/prometheus
directory extracted in Step 2. -
Recompress the
./prometheus-v{version}-linux-amd64
directory and name the new compressed package asprometheus-v{new-version}.tar.gz
, where{new-version}
can be specified according to your need.cd prometheus-v{version}-linux-amd64 tar -zcvf ../prometheus-v{new-version}.tar.gz ./
Execute the following command to upgrade Prometheus:
tiup cluster patch <cluster-name> prometheus-v{new-version}.tar.gz -R prometheus --overwrite
After the upgrade, you can go to the home page of the Prometheus server (usually at http://<Prometheus-server-host-name>:9090
), click Status in the top navigation menu, and then open the Runtime & Build Information page to check the Prometheus version and confirm whether the upgrade is successful.
For better compatibility with TiDB, it is recommended to use the Grafana installation package provided in the TiDB installation package. The version of Grafana in the TiDB installation package is fixed. If you want to use a newer Grafana version, refer to Grafana Release Notes for new features of each version and choose a suitable version for your production environment. You can also consult with PingCAP technical staff for a recommended version.
In the following upgrade steps, you need to download the Grafana installation package of your desired version from the Grafana website, and then use it to create a Grafana package that TiUP can use.
- Download a new installation package from the Grafana download page. You can choose either the
OSS
orEnterprise
edition according to your needs. - Extract the downloaded package.
-
Download the TiDB server package and extract it. Note that your downloading means you agree to the Privacy Policy.
https://download.pingcap.org/tidb-community-server-{version}-linux-{arch}.tar.gz
Tip:
{version}
in the link indicates the version number of TiDB and{arch}
indicates the architecture of the system, which can beamd64
orarm64
. For example, the download link forv8.1.0
in theamd64
architecture ishttps://download.pingcap.org/tidb-community-toolkit-v8.1.0-linux-amd64.tar.gz
. -
In the extracted files, locate
grafana-v{version}-linux-amd64.tar.gz
and extract it.tar -xzf grafana-v{version}-linux-amd64.tar.gz
-
Copy the files extracted in Step 1, and then use the copied files to replace the files in the
./grafana-v{version}-linux-amd64/
directory extracted in Step 2. -
Recompress the
./grafana-v{version}-linux-amd64
directory and name the new compressed package asgrafana-v{new-version}.tar.gz
, where{new-version}
can be specified according to your need.cd grafana-v{version}-linux-amd64 tar -zcvf ../grafana-v{new-version}.tar.gz ./
Execute the following command to upgrade Grafana:
tiup cluster patch <cluster-name> grafana-v{new-version}.tar.gz -R grafana --overwrite
After the upgrade, you can go to the home page of the Grafana server (usually at http://<Grafana-server-host-name>:3000
), and then check the Grafana version on the page to confirm whether the upgrade is successful.
The Alertmanager package in the TiDB installation package is directly from the Prometheus website. Therefore, when upgrading Alertmanager, you only need to download and install a new version of Alertmanager from the Prometheus website.
Download the alertmanager
installation package from the Prometheus download page.
Execute the following command to upgrade Alertmanager:
tiup cluster patch <cluster-name> alertmanager-v{new-version}-linux-amd64.tar.gz -R alertmanager --overwrite
After the upgrade, you can go to the home page of the Alertmanager server (usually at http://<Alertmanager-server-host-name>:9093
), click Status in the top navigation menu, and then check the Alertmanager version to confirm whether the upgrade is successful.