zabbix添加ceph监控
应用背景:
网上监控ceph集群的资料不算多,git上有个开源的监控项目,是跟zabbix结合的,主要包含一个shell写的脚本和zabbix监控模板,拿来测试小记一下。
开源地址:
https://github.com/BodihTao/ceph-zabbix
测试环境:
一台ceph集群中的ceph-monitor主机(CentOS 7.2)
一台Zabbix Server(CentOS 7.2)
操作步骤:
在ceph-monitor主机上操作
前提1:装好zabbix-agent,并配好主动模式(ServerActive=IP)
前提2:装好zabbix-sender,为了把搜集到的数据发送给Zabbix Server
~]# git clone https://github.com/BodihTao/ceph-zabbix.git ~]# cd ceph-zabbix ~]# cp ceph-status.sh /etc/zabbix/scripts/ ~]# crontab -e
# 每分钟一次 搜集信息的脚本 Zabbix Server 脚本所在的主机名(或者IP) * * * * * /etc/zabbix/scripts/ceph-status.sh 192.168.1.110 ceph-monitor
保存,退出;
在Zabbix Server上操作
1. 在web界面导入ceph-zabbix中的模板zabbix_templates;
2. 添加ceph-monitor主机,并链接上导入的模板;
结束.