0、简介

文中主要监控MySQL/MySQL主从信息

版本:mysql-5.7,mysql_exporter-0.12.1

mysql_exporter下载地址

1、mysql_exporter部署

1.下载mysql_exporter并解压

  1. $ tar xf /opt/src/mysqld_exporter-0.12.1.linux-amd64.tar.gz
  2. // 将mysql_exporter二进制文件拷贝至/usr/local/bin
  3. $ cp /opt/src/mysqld_exporter-0.12.1.linux-amd64/mysqld_exporter /usr/local/bin/

2.需要授权用户给exporter使用

  1. > CREATE USER 'exporter'@'localhost' IDENTIFIED BY 'abc12345' WITH MAX_USER_CONNECTIONS 5;
  2. // 可查看主从运行情况查看线程,及所有数据库。
  3. > GRANT PROCESS, REPLICATION CLIENT, SELECT ON *.* TO 'exporter'@'localhost';

为该用户设置最大连接数为了避免监控数据过大导致服务器超载

3.修改mysql配置文件,添加刚才创建的exporter用户和密码

  1. $ vim /etc/my.cnf
  2. [client]
  3. user=exporter
  4. password=abc12345

4.启动exporter客户端,需指定mysql配置文件,读取exporter用户和密码

  1. $ mysqld_exporter --config.my-cnf=/etc/my.cnf
  2. 常用参数:
  3. // 选择采集innodb
  4. --collect.info_schema.innodb_cmp
  5. // innodb存储引擎状态
  6. --collect.engine_innodb_status
  7. // 指定配置文件
  8. --config.my-cnf="/etc/my.cnf"

5.添加system系统服务

  1. $ vim /usr/lib/systemd/system/mysql_exporter.service
  2. [Unit]
  3. Description=Prometheus
  4. Wants=network-online.target
  5. After=network-online.target
  6. [Service]
  7. User=root
  8. Group=root
  9. Type=simple
  10. ExecStart=/usr/local/bin/mysqld_exporter \
  11. --config.my-cnf=/etc/my.cnf
  12. [Install]
  13. WantedBy=multi-user.target

6.启动添加的system服务

  1. $ systemctl daemon-reload
  2. $ systemctl start mysql_exporter.service
  3. $ systemctl enable mysql_exporter.service
  4. // mysql_export默认端口 - 9104
  5. $ netstat -lntup | grep "9104"
  6. tcp6 0 0 :::9104 :::* LISTEN 34137/mysqld_export

7.curl查看捕获mysql数据

  1. curl http://localhost:9104/metrics

8.prometheus配置加入mysql节点

  1. $ vim /usr/local/prometheus/prometheus.yml
  2. - job_name: 'mysql'
  3. scrape_interval: 5s
  4. # 静态添加node
  5. static_configs:
  6. - targets: ['10.4.7.12:9104']

9.查看监控端是否接入

10.Granfana导入MySQL监控图表

去grafana dashboard下载对应的图表或者直接在grafana导入图表输入ID下载

图表下载地址:https://grafana.com/grafana/dashboards/7362

图表ID:11796

11.查看mysql dashboard

2、mysql报警规则

1.配置alertmanager报警,添加prometheus配置:

  1. rule_files:
  2. ...
  3. - "/data/etc/mysql*.rules"

2.配置mysql报警规则

  1. groups:
  2. - name: MySQLStatsAlert
  3. rules:
  4. - alert: MySQL is down
  5. expr: mysql_up == 0
  6. for: 1m
  7. labels:
  8. severity: critical
  9. annotations:
  10. summary: "Instance {{ $labels.instance }} MySQL is down"
  11. description: "MySQL database is down. This requires immediate action!"
  12. - alert: open files high
  13. expr: mysql_global_status_innodb_num_open_files > (mysql_global_variables_open_files_limit) * 0.75
  14. for: 1m
  15. labels:
  16. severity: warning
  17. annotations:
  18. summary: "Instance {{ $labels.instance }} open files high"
  19. description: "Open files is high. Please consider increasing open_files_limit."
  20. - alert: Read buffer size is bigger than max. allowed packet size
  21. expr: mysql_global_variables_read_buffer_size > mysql_global_variables_slave_max_allowed_packet
  22. for: 1m
  23. labels:
  24. severity: warning
  25. annotations:
  26. summary: "Instance {{ $labels.instance }} Read buffer size is bigger than max. allowed packet size"
  27. description: "Read buffer size (read_buffer_size) is bigger than max. allowed packet size (max_allowed_packet).This can break your replication."
  28. - alert: Sort buffer possibly missconfigured
  29. expr: mysql_global_variables_innodb_sort_buffer_size <256*1024 or mysql_global_variables_read_buffer_size > 4*1024*1024
  30. for: 1m
  31. labels:
  32. severity: warning
  33. annotations:
  34. summary: "Instance {{ $labels.instance }} Sort buffer possibly missconfigured"
  35. description: "Sort buffer size is either too big or too small. A good value for sort_buffer_size is between 256k and 4M."
  36. - alert: Thread stack size is too small
  37. expr: mysql_global_variables_thread_stack <196608
  38. for: 1m
  39. labels:
  40. severity: warning
  41. annotations:
  42. summary: "Instance {{ $labels.instance }} Thread stack size is too small"
  43. description: "Thread stack size is too small. This can cause problems when you use Stored Language constructs for example. A typical is 256k for thread_stack_size."
  44. - alert: Used more than 80% of max connections limited
  45. expr: mysql_global_status_max_used_connections > mysql_global_variables_max_connections * 0.8
  46. for: 1m
  47. labels:
  48. severity: warning
  49. annotations:
  50. summary: "Instance {{ $labels.instance }} Used more than 80% of max connections limited"
  51. description: "Used more than 80% of max connections limited"
  52. - alert: InnoDB Force Recovery is enabled
  53. expr: mysql_global_variables_innodb_force_recovery != 0
  54. for: 1m
  55. labels:
  56. severity: warning
  57. annotations:
  58. summary: "Instance {{ $labels.instance }} InnoDB Force Recovery is enabled"
  59. description: "InnoDB Force Recovery is enabled. This mode should be used for data recovery purposes only. It prohibits writing to the data."
  60. - alert: InnoDB Log File size is too small
  61. expr: mysql_global_variables_innodb_log_file_size < 16777216
  62. for: 1m
  63. labels:
  64. severity: warning
  65. annotations:
  66. summary: "Instance {{ $labels.instance }} InnoDB Log File size is too small"
  67. description: "The InnoDB Log File size is possibly too small. Choosing a small InnoDB Log File size can have significant performance impacts."
  68. - alert: InnoDB Flush Log at Transaction Commit
  69. expr: mysql_global_variables_innodb_flush_log_at_trx_commit != 1
  70. for: 1m
  71. labels:
  72. severity: warning
  73. annotations:
  74. summary: "Instance {{ $labels.instance }} InnoDB Flush Log at Transaction Commit"
  75. description: "InnoDB Flush Log at Transaction Commit is set to a values != 1. This can lead to a loss of commited transactions in case of a power failure."
  76. - alert: Table definition cache too small
  77. expr: mysql_global_status_open_table_definitions > mysql_global_variables_table_definition_cache
  78. for: 1m
  79. labels:
  80. severity: page
  81. annotations:
  82. summary: "Instance {{ $labels.instance }} Table definition cache too small"
  83. description: "Your Table Definition Cache is possibly too small. If it is much too small this can have significant performance impacts!"
  84. - alert: Table open cache too small
  85. expr: mysql_global_status_open_tables >mysql_global_variables_table_open_cache * 99/100
  86. for: 1m
  87. labels:
  88. severity: page
  89. annotations:
  90. summary: "Instance {{ $labels.instance }} Table open cache too small"
  91. description: "Your Table Open Cache is possibly too small (old name Table Cache). If it is much too small this can have significant performance impacts!"
  92. - alert: Thread stack size is possibly too small
  93. expr: mysql_global_variables_thread_stack < 262144
  94. for: 1m
  95. labels:
  96. severity: page
  97. annotations:
  98. summary: "Instance {{ $labels.instance }} Thread stack size is possibly too small"
  99. description: "Thread stack size is possibly too small. This can cause problems when you use Stored Language constructs for example. A typical is 256k for thread_stack_size."
  100. - alert: InnoDB Buffer Pool Instances is too small
  101. expr: mysql_global_variables_innodb_buffer_pool_instances == 1
  102. for: 1m
  103. labels:
  104. severity: page
  105. annotations:
  106. summary: "Instance {{ $labels.instance }} InnoDB Buffer Pool Instances is too small"
  107. description: "If you are using MySQL 5.5 and higher you should use several InnoDB Buffer Pool Instances for performance reasons. Some rules are: InnoDB Buffer Pool Instance should be at least 1 Gbyte in size. InnoDB Buffer Pool Instances you can set equal to the number of cores of your machine."
  108. - alert: InnoDB Plugin is enabled
  109. expr: mysql_global_variables_ignore_builtin_innodb == 1
  110. for: 1m
  111. labels:
  112. severity: page
  113. annotations:
  114. summary: "Instance {{ $labels.instance }} InnoDB Plugin is enabled"
  115. description: "InnoDB Plugin is enabled"
  116. - alert: Binary Log is disabled
  117. expr: mysql_global_variables_log_bin != 1
  118. for: 1m
  119. labels:
  120. severity: warning
  121. annotations:
  122. summary: "Instance {{ $labels.instance }} Binary Log is disabled"
  123. description: "Binary Log is disabled. This prohibits you to do Point in Time Recovery (PiTR)."
  124. - alert: Binlog Cache size too small
  125. expr: mysql_global_variables_binlog_cache_size < 1048576
  126. for: 1m
  127. labels:
  128. severity: page
  129. annotations:
  130. summary: "Instance {{ $labels.instance }} Binlog Cache size too small"
  131. description: "Binlog Cache size is possibly to small. A value of 1 Mbyte or higher is OK."
  132. - alert: Binlog Statement Cache size too small
  133. expr: mysql_global_variables_binlog_stmt_cache_size <1048576 and mysql_global_variables_binlog_stmt_cache_size > 0
  134. for: 1m
  135. labels:
  136. severity: page
  137. annotations:
  138. summary: "Instance {{ $labels.instance }} Binlog Statement Cache size too small"
  139. description: "Binlog Statement Cache size is possibly to small. A value of 1 Mbyte or higher is typically OK."
  140. - alert: Binlog Transaction Cache size too small
  141. expr: mysql_global_variables_binlog_cache_size <1048576
  142. for: 1m
  143. labels:
  144. severity: page
  145. annotations:
  146. summary: "Instance {{ $labels.instance }} Binlog Transaction Cache size too small"
  147. description: "Binlog Transaction Cache size is possibly to small. A value of 1 Mbyte or higher is typically OK."
  148. - alert: Sync Binlog is enabled
  149. expr: mysql_global_variables_sync_binlog == 1
  150. for: 1m
  151. labels:
  152. severity: page
  153. annotations:
  154. summary: "Instance {{ $labels.instance }} Sync Binlog is enabled"
  155. description: "Sync Binlog is enabled. This leads to higher data security but on the cost of write performance."
  156. - alert: IO thread stopped
  157. expr: mysql_slave_status_slave_io_running != 1
  158. for: 1m
  159. labels:
  160. severity: critical
  161. annotations:
  162. summary: "Instance {{ $labels.instance }} IO thread stopped"
  163. description: "IO thread has stopped. This is usually because it cannot connect to the Master any more."
  164. - alert: SQL thread stopped
  165. expr: mysql_slave_status_slave_sql_running == 0
  166. for: 1m
  167. labels:
  168. severity: critical
  169. annotations:
  170. summary: "Instance {{ $labels.instance }} SQL thread stopped"
  171. description: "SQL thread has stopped. This is usually because it cannot apply a SQL statement received from the master."
  172. - alert: SQL thread stopped
  173. expr: mysql_slave_status_slave_sql_running != 1
  174. for: 1m
  175. labels:
  176. severity: critical
  177. annotations:
  178. summary: "Instance {{ $labels.instance }} Sync Binlog is enabled"
  179. description: "SQL thread has stopped. This is usually because it cannot apply a SQL statement received from the master."
  180. - alert: Slave lagging behind Master
  181. expr: rate(mysql_slave_status_seconds_behind_master[1m]) >30
  182. for: 1m
  183. labels:
  184. severity: warning
  185. annotations:
  186. summary: "Instance {{ $labels.instance }} Slave lagging behind Master"
  187. description: "Slave is lagging behind Master. Please check if Slave threads are running and if there are some performance issues!"
  188. - alert: Slave is NOT read only(Please ignore this warning indicator.)
  189. expr: mysql_global_variables_read_only != 0
  190. for: 1m
  191. labels:
  192. severity: page
  193. annotations:
  194. summary: "Instance {{ $labels.instance }} Slave is NOT read only"
  195. description: "Slave is NOT set to read only. You can accidentally manipulate data on the slave and get inconsistencies..."

3.最后需要重启prometheus即可

Prometheus 监控MySQL的更多相关文章

  1. Grafana+Prometheus 监控 MySQL

    转自:Grafana+Prometheus 监控 MySQL 架构图 环境 IP 环境 需装软件 192.168.0.237 mysql-5.7.20 node_exporter-0.15.2.lin ...

  2. Prometheus 监控Mysql服务器及Grafana可视化

    Prometheus 监控Mysql服务器及Grafana可视化. mysql_exporter:用于收集MySQL性能信息. 使用版本 mysqld_exporter 0.11.0 官方地址 使用文 ...

  3. 使用 Docker 部署 Grafana + Prometheus 监控 MySQL 数据库

    一.背景 在平时开发过程当中需要针对 MySQL 数据库进行监控,这里我们可以使用 Grafana 和 Prometheus 来实现监控功能.Grafana 是一款功能强大的仪表盘面板,支持多种数据源 ...

  4. 采用prometheus 监控mysql

    1. prometheus 是什么 开源的系统监控和报警工具,监控项目的流量.内存量.负载量等实时数据. 它通过直接或短时jobs中介收集监控数据,在本地存储所有收集到的数据,并且通过定义好的rule ...

  5. Grafana+Prometheus监控mysql性能

    #cmd /usr/local 今天讲一下如何监控服务器中的mysql数据库的性能 一.数据库操作 1.mysql启动 #service mysqld start #启动数据库 #service my ...

  6. 手把手教你使用 Prometheus 监控 MySQL 与 MariaDB.md

    概述 MySQL 是常用的关系型数据库,MariaDB 作为 MySQL 的分支版本,兼容 MySQL 协议,也越来越流行.在 Kubernetes 环境中如何使用 Prometheus 来对它们进行 ...

  7. Grafan+Prometheus 监控 MySQL

    架构图 环境 IP 环境 需装软件 192.168.0.237 mysql-5.7.20 node_exporter-0.15.2.linux-amd64.tar.gz mysqld_exporter ...

  8. prometheus监控mysql

    创建一个用于mysqld_exporter连接到MySQL的用户并赋予所需的权限 mysql> GRANT REPLICATION CLIENT, PROCESS ON *.* TO '; my ...

  9. 使用Prometheus监控SpringBoot应用

    通过之前的文章我们使用Prometheus监控了应用服务器node_exporter,数据库mysqld_exporter,今天我们来监控一下你的应用.(本文以SpringBoot 2.1.9.REL ...

随机推荐

  1. 【作业1.0】OO第一单元作业总结

    OO第一单元作业已全部完成,为了使这一单元的作业能够收获更多一点,我回忆起我曾经在计算机组成课设中,经常我们会写一些实验报告,经常以此对实验内容反思总结.在我们开始下一单元的作业之前,我在此对OO第一 ...

  2. EPX-Studio脚本调用

    procedure TF408017792.Button1Click(Sender: TObject); var NEPX: IExcelPanelXDisp; begin NEPX := this. ...

  3. Zetatier One 基本用法

    Zetatier One 基本用法 ZeroTier One是用加密的点对点技术将处于不同物理位置的网络建立私人的局域网,即使用软件实现路由和交换机功能,而且它能使用WEB控制台管理网络,是对SDN( ...

  4. Linux常用命令总结(一)

    一.cd命令 用于切换当前目录,类似与win的命令.它可以切换到绝对路径,也可以是相对路径. cd  /root/Doce  # 切换到绝对路径/root/Doce目录下 cd ./path  # 切 ...

  5. Linux 部署Tomcat图文注解 一学就会

    导读 安装tomcat前首先要安装对应的jdk并配置Java环境. 安装jdk,请参考:点我直达 安装Tomcat 下载Tomcat包 官网地址:点我直达 Tomcat与jdk兼容关系 注:Tomca ...

  6. 关于PS切图

    现在前端项目中碰到越来越多的图片处理问题,虽然找自己公司UI小哥哥小姐姐可以解决,但是每次都找不仅要看别人有没有时间,更得看人家脸色 唉,自己摸索着来吧(多图,流量党请注意切换WiFi): 通常切图的 ...

  7. 前端CSS学习笔记

    一 CSS介绍 层叠样式表(英文全称:Cascading Style Sheets)是一种用来表现HTML(超文本标记语言)或XML(标准通用标记语言的一个子集)等文件样式的计算机语言.CSS不仅可以 ...

  8. Spring Cloud 系列之 Netflix Zuul 服务网关

    什么是 Zuul Zuul 是从设备和网站到应用程序后端的所有请求的前门.作为边缘服务应用程序,Zuul 旨在实现动态路由,监视,弹性和安全性.Zuul 包含了对请求的路由和过滤两个最主要的功能. Z ...

  9. 项目脚手架 - 《Spring Boot + MyBatis + MyBatis Generator》

    前言 最近启动了一个新的项目发现,每当一个新项目的启动往往需要从头搭建一个"框架",其中虽然很多基础代码可以Copy,但也会浪费不少时间. 基于这个情况,我打算在GitHub上创建 ...

  10. 2.Django与Vue的结合

    Django与Vue的结合 在django项目中创建vue项目 首先,进去django项目的项目目录中,执行: vue-init webpack firstvue ## firstvue为前端项目的名 ...