监控
文章平均质量分 72
AZ9009ZA
这个作者很懒,什么都没留下…
展开
-
Cacti指定时间禁用启用报警
59 23 * * * /usr/bin/mysql -uroot -p'password' -e "update cacti.thold_data set thold_enabled='on' where id in(1,2,3)" > /tmp/m 2>&1 1 6 * * * /usr/bin/mysql -uroot -p'password' -e "update cacti.thold_data set thold_enabled='off' where id in(1,2,3)" > /t原创 2010-12-13 13:21:00 · 913 阅读 · 0 评论 -
MySQL从服务器监控
在 /etc/snmp/snmpd.conf文件上添加以下内容:exec .1.3.6.1.2.1.25.2010.1 slave_monitor /bin/sh /root/slave_monitor.sh/root/slave_monitor.sh文件内容如下:mysql -uslave -pslave -P 3306 -h192.168.1.5 -e"show slave status/G" > /root/slaveStatuscat /root/slaveStatus | grep Running原创 2010-12-19 16:37:00 · 1221 阅读 · 0 评论 -
CACTI实现短信报警的三种方法
一、使用飞信(添加中文注释之间的代码)/* Sends a group of graphs to a user */ function thold_mail($to, $from, $subject, $message, $filename, $headers = '') { global $config; include_once($config['base_path'] . '/plugins/settings/include/mailer.php');原创 2011-01-06 13:00:00 · 5106 阅读 · 0 评论