码迷,mamicode.com
首页 > 系统相关 > 详细

Memcache监控工具 -- memcache-top

时间:2015-04-23 18:01:38      阅读:180      评论:0      收藏:0      [点我收藏+]

标签:memcache-top   memcache   监控工具   

Memcache监控工具 -- memcache-top


介绍


memcache-top是用perl语言编写的,可以运行在term下的脚本文件,最新版本为0.6。它能够像top一样显示各个memcached节点的状态变化,其中包括系统管理员最关心的几个指数,例如:缓存命中率,内存使用率,读写QPS等。

 

安装


cd /usr/local
mkdir memcache-top
cd memcache-top
wget https://memcache-top.googlecode.com/files/memcache-top-v0.6
(如下无法连接,先下载下来后上传到服务器)
ln -s /usr/local/memcache-top/memcache-top-v0.6 /usr/bin/memcache-top
chmod a+x memcache-top-v0.6

 

使用


直接输入

memcache-top

默认的监控的memcached实例为localhost:11211。

 

显示的信息类似如下图:

技术分享

 

当需要监控多个memcached实例,输入--instances参数,多个实例之间用逗号分割。

memcache-top --instances 192.168.11.51:11211,192.168.11.52:11211,192.168.11.68:11211

 

显示的信息类似如下图:

技术分享

 

因为memcache-top-v0.6是一个perl脚本文件,可以直接打开它并进行memcached集群配置,多个节点之间以逗号分割。

 

找到如下配置,并修改:

# List of servers/ ports to query.
@default_instances = (
‘127.0.0.1:11211‘,
);


本文出自 “SQL Server Deep Dives” 博客,请务必保留此出处http://ultrasql.blog.51cto.com/9591438/1637581

Memcache监控工具 -- memcache-top

标签:memcache-top   memcache   监控工具   

原文地址:http://ultrasql.blog.51cto.com/9591438/1637581

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