- 下载 mysqld_exporter 在mysql被测服务器上
- 解压压缩包
tar zxvf mysqld_exporter-0.11.0.linux-amd64.tar.gz
- 改名并移动到指定目录
mv mysqld_exporter-0.11.0.linux-amd64 /usr/local/mysql_exporter
cd /usr/local/mysql_exporter
- 登录mysql为exporter创建账号并授权(可以直接使用已经创建的账号)
# 创建数据库用户。
mysql> CREATE USER 'exporter'@'localhost' IDENTIFIED BY 'XXXXXXXX';
# 可查看主从运行情况查看线程,及所有数据库。
mysql> GRANT PROCESS, REPLICATION CLIENT, SELECT ON *.* TO 'exporter'@'localhost';
- 创建 mysql_exporter 配置文件、运行时可免密码连接数据库
vim /usr/local/mysql_exporter/.my.cnf
文件 .my.cnf 配置mysql服务地址,端口,账号,密码。
[client]
host=pt-mysql1
port=3306
user=user_xxx
password=******
- 启动exporter客户端
6.1 方式一,直接选择配置文档启动
./mysqld_exporter --config.my-cnf=.my.cnf
6.2 方式二,使用systemctl管控
添加启动配置:
vim /usr/lib/systemd/system/mysqld_exporter.service
[Unit]
Description=mysqld_exporter
After=network.target
[Service]
Type=simple
ExecStart=/usr/local/mysqld_exporter/mysqld_exporter -config.my-cnf=/usr/local/mysqld_exporter/.my.cnf
Restart=on-failure
[Install]
WantedBy=multi-user.target
加载配置并启动,设置开机启动。
systemctl daemon-reload
systemctl start mysqld_exporter
systemctl status mysqld_exporter
systemctl enable mysqld_exporter # 设置开机启动
- 修改prometheus配置 prometheus.yml 添加监控目标
vim /usr/local/prometheus/prometheus.yml
- job_name: mysql
static_configs:
- targets: ['192.168.*.**:9104']
labels:
group: mysqlgroup
完成后重启 Prometheus 或者 使用热加载
- Grafana 可以使用官方推荐的模板直接显示,可以根据自己需求修改面板。
Grafana MySQL Overview 模板ID为 7362 。
欢迎大家留言,一起讨论。