码迷,mamicode.com
首页 > 其他好文 > 详细

修正Percona Monitoring Plugins for Zabbix的一处脚本Bug

时间:2018-10-31 20:13:58      阅读:145      评论:0      收藏:0      [点我收藏+]

标签:row   pytho   plugins   percona   status   版本   情况下   python脚本   今天   

今天小试了一把Percona Monitoring Plugins for Zabbix模板,自己辛辛苦苦写的那一大堆Python脚本,貌似用这个模板全都覆盖到了。
但是,我也发现最新的版本percona-monitoring-plugins_1.1.8也还是存在一个问题,那就是用于Mysql Replication的Slave Running和Slave Stopped监控项的数据不正确(一般情况下,两项数据均维持在0)。
经检查相关模板的脚本文件ss_get_mysql_stats.php,发现用于获取Slave Running和Slave Stopped监控项的脚本逻辑有问题。
相关脚本内容为:
$status[‘slave_lag‘] = $row[‘seconds_behind_master‘];
......
$status[‘slave_running‘] = ($row[‘slave_sql_running‘] == ‘Yes‘)
? $status[‘slave_lag‘] : 0;
$status[‘slave_stopped‘] = ($row[‘slave_sql_running‘] == ‘Yes‘)
? 0 : $status[‘slave_lag‘];
可见当slave_sql_running为Yes时,slave_running的取值是seconds_behind_master,slave_stopped的取值是0。
当slave_sql_running为No时,slave_running的取值是0,slave_stopped的取值是seconds_behind_master。
这里我将脚本中$status[‘slave_lag‘]更改为了1。
$status[‘slave_lag‘] = $row[‘seconds_behind_master‘];
......
$status[‘slave_running‘] = ($row[‘slave_sql_running‘] == ‘Yes‘)
? 1 : 0;
$status[‘slave_stopped‘] = ($row[‘slave_sql_running‘] == ‘Yes‘)
? 0 : 1;
修改后监控数据正常了。

修正Percona Monitoring Plugins for Zabbix的一处脚本Bug

标签:row   pytho   plugins   percona   status   版本   情况下   python脚本   今天   

原文地址:https://www.cnblogs.com/ajiangg/p/9884910.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!