当前位置:   article > 正文

@Prometheus监控数据库(MySQL)_mysql expoert 普米修斯

mysql expoert 普米修斯

普罗米修斯监控远程mysql服务

一、被监控点部署mysql_exporter

1、下载

[root@web02 /opt]# wget https://github.com/prometheus/mysqld_exporter/releases/download/v0.12.1/mysqld_exporter-0.12.1.linux-amd64.tar.gz
  • 1

2、解压

[root@web02 /opt]# mkdir /prometheus_mysql/
[root@web02 /opt]# tar xf mysqld_exporter-0.12.1.linux-amd64.tar.gz -C /prometheus_mysql/



[root@web02 /opt]# cd /prometheus_mysql/
[root@web02 /prometheus_mysql]# mv mysqld_exporter-0.12.1.linux-amd64/* ./
[root@web02 /prometheus_mysql]# rm -rf mysqld_exporter-0.12.1.linux-amd64/
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8

3、创建监控用户并授权

# 8.0之前
 grant select,replication client,process ON *.* to 'mysql_monitor'@'localhost' identified by 'abc123';
 
 
 
# 8.0之后
create user 'mysql_monitor'@'localhost' identified by 'abc123';
 grant select,replication client,process ON *.* to 'mysql_monitor'@'localhost';
 
 
 
#刷新权限
flush privileges;
 
 
 
 
# (注意:授权ip为localhost,因为不是prometheus服务器来直接找mariadb 获取数据,⽽是prometheus服务器找mysql_exporter,mysql_exporter 再找mariadb。所以这个localhost是指的mysql_exporter的IP)
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18

4、创建客户端配置文件

[root@web02 ~]# cat /prometheus_mysql/.my.cnf
[client]
#host=192.168.15.8
#port=9104
user=mysql_monitor
password=abc123
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6

5、加入systemd管理

[root@web02 /prometheus_mysql]# vim /usr/lib/systemd/system/mysqld_exporter.service
  
[Unit]
Description=prometheus server daemon
  
[Service]
ExecStart=/prometheus_mysql/mysqld_exporter  --config.my-cnf=/prometheus_mysql/.my.cnf
Restart=on-failure
 
[Install]
WantedBy=multi-user.target
 
 
 
 
# 重载
[root@web02 /prometheus_mysql]# systemctl daemon-reload
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17

6、启动mysql_exporter

[root@web02 ~]# systemctl enable mysqld_exporter.service --now
  • 1

7、检查

[root@web02 ~]# netstat -lntup|grep 9104
tcp6       0      0 :::9104                 :::*                    LISTEN      2046/mysqld_exporte 
 
 
 
[root@web02 ~]# curl 127.0.0.1:9104/metrics
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6

二、配置prometheus连接node

1、修改配置文件

[root@promethus ~]# vim /prometheus/prometheus.yml
...
  - job_name: 'mysql-matomo'
    static_configs:
    - targets: ['192.168.15.8:9104']
  • 1
  • 2
  • 3
  • 4
  • 5

2、重启服务

[root@promethus ~]# systemctl restart prometheus.service 
  • 1

三、检查

img

img

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/凡人多烦事01/article/detail/556497
推荐阅读
相关标签
  

闽ICP备14008679号