memcached监控脚本

Posted Vincen_shen

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了memcached监控脚本相关的知识,希望对你有一定的参考价值。

#!/bin/bash

. /etc/init.d/functions
if [ `netstat -lntup| grep 11211|wc -l` -lt 1 ];then
        action "Memcached Serivce is error." /bin/false
        exit 1
fi

echo -e "del key\r\n"| nc 127.0.0.1 11211 &>/dev/null
echo -e "set key 0 0 10 \r\noldboy1234\r\n" |nc 127.0.0.1 11211 &>/dev/null
MCValues=`echo -e "get key\r\n"|nc 127.0.0.1 11211| grep oldboy1234|wc -l`

if [ $MCValues -eq 1 ];then
        action "Memcached Service Status is OK." /bin/true
else
        action "Memcached Service Status is Error." /bin/false
fi

echo -e 可以替换为 printf

以上是关于memcached监控脚本的主要内容,如果未能解决你的问题,请参考以下文章

ZABBIX监控一台服务器上多实例memcache落地经验步骤

监控异常进程脚本,

一个简单的监控redis性能的python脚本

phalcon: 缓存片段,文件缓存,memcache缓存

为 memcached 和 Rails 组合片段和对象缓存的最佳方式

memcached监控工具