>  기사  >  데이터 베이스  >  nagios 监控redis

nagios 监控redis

WBOY
WBOY원래의
2016-06-07 16:39:33995검색

安装redis支持 perl -MCPAN -e shell cpan>install Redis 下载check_redis.pl http://exchange.nagios.org/directory/Plugins/Databases/check_redis-2Epl/details https://github.com/willixix/WL-NagiosPlugins 测试 ./check_redis.pl -H 192.168.0.130 -p

安装redis支持
perl -MCPAN -e shell
cpan>install Redis

下载check_redis.pl

http://exchange.nagios.org/directory/Plugins/Databases/check_redis-2Epl/details

https://github.com/willixix/WL-NagiosPlugins

测试
./check_redis.pl -H 192.168.0.130 -p 6379 -a ‘connected_clients,blocked_clients’ -w ~,~ -c ~,~ -f

OK: REDIS 2.6.12 on 192.168.0.130:6379 has 1 databases (db0) with 49801 keys, up 3 days 14 hours - connected_clients is 1, blocked_clients is 0 | connected_clients=1 blocked_clients=0

commands.cfg添加

define command {    
        command_name	check_redis    
        command_line	$USER1$/check_redis.pl -H $HOSTADDRESS$ -p $ARG1$ -a $ARG2$ -w $ARG3$ -c $ARG4$ -f
	}

加入主机监控

define service{
        use                             local-service         ; Name of service template to use
        host_name                       c1gredis
        service_description             redis
	check_command			check_redis!6379!'connected_clients,blocked_clients'!~,~!~,~
	notifications_enabled		0
        }

重新载入配置。

/etc/init.d/nagios reload

参考:
http://exchange.nagios.org/directory/Plugins/Databases/check_redis-2Epl/details
http://www.ttlsa.com/nagios/nagios-redis-monitor/
http://bbs.linuxtone.org/thread-6241-1-1.html

Related Posts

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.