Mysql的监控采用一个使用mysqld_exporter启动多个进程来实现监控多个mysql实例。
代理部署架构如下
1,创建数据库监控账号
create user '监控账号'@'mysqld_exporter主机的IP' identified by '监控密码' with max_user_connections 10;
2,权限授予
grant process,show databases,show view,replication client,select on *.* to '监控账号'@'mysqld_exporter主机的IP';