欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

使用prometheus统计MySQL自增主键的剩余可用百分比

程序员文章站 2024-01-19 19:11:28
最近生产环境一套数据库因为疯狂写日志数据,造成主键值溢出的情况出现,因此有必要将这个指标监控起来。mysqld_exporter自带的这个功能,下面是我使用的启动参数:nohup ./mysqld_e...

最近生产环境一套数据库因为疯狂写日志数据,造成主键值溢出的情况出现,因此有必要将这个指标监控起来。

mysqld_exporter自带的这个功能,下面是我使用的启动参数:

nohup ./mysqld_exporter --config.my-cnf="./my.cnf" --web.listen-address=":9104" --collect.heartbeat --collect.auto_increment.columns --collect.binlog_size --collect.engine_innodb_status --collect.engine_tokudb_status --collect.slave_hosts --collect.slave_status --collect.info_schema.processlist --collect.info_schema.innodb_metrics > /dev/null 2>&1 & 

红色高亮的参数,就是用来采集到自增id的使用情况的。

实际上执行的类似这个sql:

select 
 table_schema,
 table_name,
 column_name,
 auto_increment,
 pow(2, case data_type
   when 'tinyint'  then 7
   when 'smallint' then 15
   when 'mediumint' then 23
   when 'int'    then 31
   when 'bigint'  then 63
   end+(column_type like '% unsigned'))-1 as max_int 
  from information_schema.tables t
   join information_schema.columns c using (table_schema,table_name)
  where
   c.extra = 'auto_increment' 
  and
   t.table_schema not in ('information_schema','mysql', 'sys','test','performance_schema') 
  and
   t.auto_increment is not null ;

使用prometheus统计MySQL自增主键的剩余可用百分比

在prometheus的web界面,我们可以测试编写如下的promql, 找出剩余自增id可以率少于40%的实例的库+表名

(mysql_info_schema_auto_increment_column_max{schema!~'test|mysql'} - mysql_info_schema_auto_increment_column{schema!~'test|mysql'})/mysql_info_schema_auto_increment_column_max{schema!~'test|mysql'}*100 < 40

使用prometheus统计MySQL自增主键的剩余可用百分比

取到数据后,我们可以在alertmanager里面配置相关的告警,或者再grafana上面绘制图,如下:

使用prometheus统计MySQL自增主键的剩余可用百分比

到此这篇关于使用prometheus统计mysql自增主键的剩余可用百分比的文章就介绍到这了,更多相关prometheus统计mysql自增主键内容请搜索以前的文章或继续浏览下面的相关文章希望大家以后多多支持!