TiDB 集群监控

TiDB 提供了以下两种接口来监控集群状态:

  • 状态接口:通过 HTTP 接口对外汇报组件的信息。
  • Metrics 接口:使用 Prometheus 记录组件中各种操作的详细信息,使用 Grafana 进行可视化展示。

使用状态接口

状态接口用于监控组件的一些基本信息,并且可以作为 keepalive 的监测接口。另外,通过 PD 的状态接口可以看到整个 TiKV 集群的详细信息。

TiDB Server

  • TiDB API 地址:http://${host}:${port}
  • 默认端口:10080
  • 各类 api_name 详细信息:参见 TiDB API 文档

以下示例中,通过访问 http://${host}:${port}/status 获取当前 TiDB Server 的状态,并判断该 TiDB Server 是否存活。结果以 JSON 格式返回:

  1. curl http://127.0.0.1:10080/status
  1. {
  2. connections: 0, # 当前 TiDB Server 上的客户端连接数
  3. version: "5.7.25-TiDB-v3.0.0-beta-250-g778c3f4a5", # TiDB 版本号
  4. git_hash: "778c3f4a5a716880bcd1d71b257c8165685f0d70" # TiDB 当前代码的 Git Hash
  5. }

PD Server

  • PD API 地址:http://${host}:${port}/pd/api/v1/${api_name}
  • 默认端口:2379
  • 各类 api_name 详细信息:参见 PD API Doc

通过该接口可以获取当前所有 TiKV 节点的状态以及负载均衡信息。下面以一个单节点的 TiKV 集群为例,说明用户需要了解的信息:

  1. curl http://127.0.0.1:2379/pd/api/v1/stores
  1. {
  2. "count": 1, # TiKV 节点数量
  3. "stores": [ # TiKV 节点的列表
  4. # 集群中单个 TiKV 节点的信息
  5. {
  6. "store": {
  7. "id": 1,
  8. "address": "127.0.0.1:20160",
  9. "version": "3.0.0-beta",
  10. "state_name": "Up"
  11. },
  12. "status": {
  13. "capacity": "20 GiB", # 存储总容量
  14. "available": "16 GiB", # 存储剩余容量
  15. "leader_count": 17,
  16. "leader_weight": 1,
  17. "leader_score": 17,
  18. "leader_size": 17,
  19. "region_count": 17,
  20. "region_weight": 1,
  21. "region_score": 17,
  22. "region_size": 17,
  23. "start_ts": "2019-03-21T14:09:32+08:00", # 启动时间
  24. "last_heartbeat_ts": "2019-03-21T14:14:22.961171958+08:00", # 最后一次心跳的时间
  25. "uptime": "4m50.961171958s"
  26. }
  27. }
  28. ]

使用 metrics 接口

Metrics 接口用于监控整个集群的状态和性能。

  • 如果使用 TiDB Ansible 部署 TiDB 集群,监控系统(Prometheus 和 Grafana)会同时部署。
  • 如果使用其他方式部署 TiDB 集群,在使用 metrics 接口前,需先部署 Prometheus 和 Grafana

成功部署 Prometheus 和 Grafana 之后,配置 Grafana

部署 Prometheus 和 Grafana

假设 TiDB 的拓扑结构如下:

节点 主机 IP 服务
Node1 192.168.199.113 PD1, TiDB, node_export, Prometheus, Grafana
Node2 192.168.199.114 PD2, node_export
Node3 192.168.199.115 PD3, node_export
Node4 192.168.199.116 TiKV1, node_export
Node5 192.168.199.117 TiKV2, node_export
Node6 192.168.199.118 TiKV3, node_export

第 1 步:下载二进制包

下载二进制包:

  1. wget https://download.pingcap.org/prometheus-2.8.1.linux-amd64.tar.gz
  2. wget https://download.pingcap.org/node_exporter-0.17.0.linux-amd64.tar.gz
  3. wget https://download.pingcap.org/grafana-6.1.6.linux-amd64.tar.gz

解压二进制包:

  1. tar -xzf prometheus-2.8.1.linux-amd64.tar.gz
  2. tar -xzf node_exporter-0.17.0.linux-amd64.tar.gz
  3. tar -xzf grafana-6.1.6.linux-amd64.tar.gz

第 2 步:在 Node1,Node2,Node3,Node4 上启动 node_exporter

  1. cd node_exporter-0.17.0.linux-amd64

启动 node_exporter 服务:

  1. ./node_exporter --web.listen-address=":9100" \
  2. --log.level="info" &

第 3 步:在 Node1 上启动 Prometheus

编辑 Prometheus 的配置文件:

  1. cd prometheus-2.8.1.linux-amd64 &&
  2. vi prometheus.yml
  1. ...
  2. global:
  3. scrape_interval: 15s
  4. evaluation_interval: 15s
  5. # scrape_timeout 设置为全局默认值 (10s)
  6. external_labels:
  7. cluster: 'test-cluster'
  8. monitor: "prometheus"
  9. scrape_configs:
  10. - job_name: 'overwritten-nodes'
  11. honor_labels: true # 不要覆盖 job 和实例的 label
  12. static_configs:
  13. - targets:
  14. - '192.168.199.113:9100'
  15. - '192.168.199.114:9100'
  16. - '192.168.199.115:9100'
  17. - '192.168.199.116:9100'
  18. - '192.168.199.117:9100'
  19. - '192.168.199.118:9100'
  20. - job_name: 'tidb'
  21. honor_labels: true # 不要覆盖 job 和实例的 label
  22. static_configs:
  23. - targets:
  24. - '192.168.199.113:10080'
  25. - job_name: 'pd'
  26. honor_labels: true # 不要覆盖 job 和实例的 label
  27. static_configs:
  28. - targets:
  29. - '192.168.199.113:2379'
  30. - '192.168.199.114:2379'
  31. - '192.168.199.115:2379'
  32. - job_name: 'tikv'
  33. honor_labels: true # 不要覆盖 job 和实例的 label
  34. static_configs:
  35. - targets:
  36. - '192.168.199.116:20180'
  37. - '192.168.199.117:20180'
  38. - '192.168.199.118:20180'
  39. ...

启动 Prometheus 服务:

  1. ./prometheus \
  2. --config.file="./prometheus.yml" \
  3. --web.listen-address=":9090" \
  4. --web.external-url="http://192.168.199.113:9090/" \
  5. --web.enable-admin-api \
  6. --log.level="info" \
  7. --storage.tsdb.path="./data.metrics" \
  8. --storage.tsdb.retention="15d" &

第 4 步:在 Node1 上启动 Grafana

编辑 Grafana 的配置文件:

  1. cd grafana-6.1.6 &&
  2. vi conf/grafana.ini
  1. ...
  2. [paths]
  3. data = ./data
  4. logs = ./data/log
  5. plugins = ./data/plugins
  6. [server]
  7. http_port = 3000
  8. domain = 192.168.199.113
  9. [database]
  10. [session]
  11. [analytics]
  12. check_for_updates = true
  13. [security]
  14. admin_user = admin
  15. admin_password = admin
  16. [snapshots]
  17. [users]
  18. [auth.anonymous]
  19. [auth.basic]
  20. [auth.ldap]
  21. [smtp]
  22. [emails]
  23. [log]
  24. mode = file
  25. [log.console]
  26. [log.file]
  27. level = info
  28. format = text
  29. [log.syslog]
  30. [event_publisher]
  31. [dashboards.json]
  32. enabled = false
  33. path = ./data/dashboards
  34. [metrics]
  35. [grafana_net]
  36. url = https://grafana.net
  37. ...

启动 Grafana 服务:

  1. ./bin/grafana-server \
  2. --config="./conf/grafana.ini" &

配置 Grafana

本小节介绍如何配置 Grafana。

第 1 步:添加 Prometheus 数据源

  1. 登录 Grafana 界面。

    • 默认地址:http://localhost:3000
    • 默认账户:admin
    • 默认密码:admin

      注意:

      Change Password 步骤可以选择 Skip

  2. 点击 Grafana 侧边栏菜单 Configuration 中的 Data Source

  3. 点击 Add data source

  4. 指定数据源的相关信息:

    • Name 处,为数据源指定一个名称。
    • Type 处,选择 Prometheus
    • URL 处,指定 Prometheus 的 IP 地址。
    • 根据需求指定其它字段。
  5. 点击 Add 保存新的数据源。

第 2 步:导入 Grafana 面板

执行以下步骤,为 PD Server、TiKV Server 和 TiDB Server 分别导入 Grafana 面板:

  1. 点击侧边栏的 Grafana 图标。

  2. 在侧边栏菜单中,依次点击 Dashboards > Import 打开 Import Dashboard 窗口。

  3. 点击 Upload .json File 上传对应的 JSON 文件(下载 TiDB Grafana 配置文件)。

    注意:

    TiKV、PD 和 TiDB 面板对应的 JSON 文件分别为 tikv_summary.jsontikv_details.jsontikv_trouble_shooting.jsonpd.jsontidb.jsontidb_summary.json

  4. 点击 Load

  5. 选择一个 Prometheus 数据源。

  6. 点击 Import,Prometheus 面板即导入成功。

查看组件 metrics

在顶部菜单中,点击 New dashboard,选择要查看的面板。

view dashboard

可查看以下集群组件信息:

  • TiDB Server:

    • query 处理时间,可以看到延迟和吞吐
    • ddl 过程监控
    • TiKV client 相关的监控
    • PD client 相关的监控
  • PD Server:

    • 命令执行的总次数
    • 某个命令执行失败的总次数
    • 某个命令执行成功的耗时统计
    • 某个命令执行失败的耗时统计
    • 某个命令执行完成并返回结果的耗时统计
  • TiKV Server:

    • GC 监控
    • 执行 KV 命令的总次数
    • Scheduler 执行命令的耗时统计
    • Raft propose 命令的总次数
    • Raft 执行命令的耗时统计
    • Raft 执行命令失败的总次数
    • Raft 处理 ready 状态的总次数