开发者社区> 玄学酱> 正文

32.2. munin-node and plugins

简介:
+关注继续查看

config: /etc/munin/munin-node.conf

plugins: /usr/share/munin/plugins/

32.2.1. munin-node.conf

allow ^127\.0\.0\.1$
allow ^192\.168\.3\.5$
			

32.2.2. mysql plugin

mysql

# ln -s /usr/share/munin/plugins/mysql_* /etc/munin/plugins		
			
# vim /etc/munin/plugin-conf.d/munin-node
env.mysqlopts -uneo -pchen

# or

env.mysqlopts -h 172.16.1.17 -u monitor -ppassword

# service munin-node start
			

验证安装,telnet localhost 4949 之后,执行 fetch mysql_queries

32.2.3. apache plugin

apache

# ln -s /usr/share/munin/plugins/apache_* /etc/munin/plugins		
			
			
# vim /etc/httpd/conf/httpd.conf
ExtendedStatus On
<Location /server-status>
    SetHandler server-status
    Order deny,allow
    Deny from all
    Allow from .example.com
	Allow from localhost    
</Location>
			
			
# /etc/init.d/httpd restart
# service munin-node restart
			

验证安装,telnet localhost 4949 之后,执行 fetch apache_processes

32.2.4. memcached plugin

memcached plugin要求符号链接名字的格式是: memcached_connections_[IP Address]_[Port], IP与Port是在符号链接名字中配置的

ln -s /usr/share/munin/plugins/memcached_bytes_ /etc/munin/plugins/memcached_bytes_127_0_0_1_11211
ln -s /usr/share/munin/plugins/memcached_connections_ /etc/munin/plugins/memcached_connections_127_0_0_1_11211
ln -s /usr/share/munin/plugins/memcached_hits_ /etc/munin/plugins/memcached_hits_127_0_0_1_11211
ln -s /usr/share/munin/plugins/memcached_items_ /etc/munin/plugins/memcached_items_127_0_0_1_11211
ln -s /usr/share/munin/plugins/memcached_requests_ /etc/munin/plugins/memcached_requests_127_0_0_1_11211
ln -s /usr/share/munin/plugins/memcached_traffic_ /etc/munin/plugins/memcached_traffic_127_0_0_1_11211
			

验证安装,telnet localhost 4949 之后,执行 fetch memcached_requests_127_0_0_1_11211

Please enable JavaScript to view the &lt;a href="http://disqus.com/?ref_noscript"&gt;comments powered by Disqus.&lt;/a&gt;comments powered by Disqus





原文出处:Netkiller 系列 手札
本文作者:陈景峯
转载请与作者联系,同时请务必标明文章原始出处和作者信息及本声明。

版权声明:本文内容由阿里云实名注册用户自发贡献,版权归原作者所有,阿里云开发者社区不拥有其著作权,亦不承担相应法律责任。具体规则请查看《阿里云开发者社区用户服务协议》和《阿里云开发者社区知识产权保护指引》。如果您发现本社区中有涉嫌抄袭的内容,填写侵权投诉表单进行举报,一经查实,本社区将立刻删除涉嫌侵权内容。

相关文章
安装node,配置环境变量
安装node,配置环境变量
44 0
This package has been deprecated和node-sass安装报错node-sass@4.9.0 postinstall: node scripts/build.js问题
This package has been deprecated和node-sass安装报错node-sass@4.9.0 postinstall: node scripts/build.js问题
61 0
node29-第三方模块nodemon
node29-第三方模块nodemon
15 0
CentOS上部署node报错:node_modules/bcrypt/lib/binding/napi-v3/bcrypt_lib.node: invalid ELF header
CentOS上部署node报错:node_modules/bcrypt/lib/binding/napi-v3/bcrypt_lib.node: invalid ELF header
187 0
输入npm install 报错node-sass@4.13.0 postinstall:`node scripts/build.js` Failed at the node-sass@4.13.0
输入npm install 报错node-sass@4.13.0 postinstall:`node scripts/build.js` Failed at the node-sass@4.13.0错误详情
328 0
Node 热加载 supervisor
supervisor 会监视代码的改动,并自动重启 Node.js。 Node 启动服务的时候一搬为 node server.js,每次代码改动都需要重新执行 node server.js 。下载 supervisor 使用 supervisor server.js 可以实现热加载效果。
55 0
linux安装node
linux安装node
69 0
+关注
玄学酱
这个时候,玄酱是不是应该说点什么...
文章
问答
视频
文章排行榜
最热
最新
相关电子书
更多
低代码开发师(初级)实战教程
立即下载
阿里巴巴DevOps 最佳实践手册
立即下载
冬季实战营第三期:MySQL数据库进阶实战
立即下载