啥也没写
分类: 服务器与存储
2015-06-11 14:02:32
mctop 与 top 相似,主要用于监视 Memcache 的流量,包括 key 的调用次数、对象存储大小、每秒的请求数、以及消耗的网络带宽等。
源代码:
1)安装:
1 2 3 4 5 6 7 8 9 10 |
[root@memcache2 mctop]# yum install libpcap-devel ruby-devel rubygems git [root@memcache2 mctop]# gem install ruby-pcap -v '0.7.8' [root@memcache2 mctop]# gem install bundle [root@memcache2 mctop]# gem install rake [root@memcache2 mctop]# git clone git://github.com/etsy/mctop.git [root@memcache2 mctop]# cd mctop/ [root@memcache2 mctop]# bundle install [root@memcache2 mctop]# rake install |
2)运行
1 2 3 4 5 6 7 8 9 |
[root@memcache2 mctop]# mctop -h Usage: mctop [options] -i, --interface=NIC Network interface to sniff (required) -p, --port=PORT Network port to sniff on (default 11211) -d, --discard=THRESH Discard keys with request/sec rate below THRESH -r, --refresh=MS Refresh the stats display every MS milliseconds -h, --help Show usage info [root@memcache2 mctop]# mctop -i bond0 -p 11211 |
转: