#################################### bosun安装 ################################
下载bosun
mkdir -p /m8/bosun
cd /m8/bosun
wget -c https://github.com/bosun-monitor/bosun/releases/download/0.4.0/bosun-linux-amd64 -O bosun-linux-amd64
wget -c中的-c是--continue的简称,表示断点续传下载文件
wget -O中的-O是--output-document=FILE 将文档写入 FILE。
Ctrl+a是在linux命令行把鼠标定位到前面
Ctrl+e是在linux命令行把鼠标定位到后面
如何复制命令行中的命令tmux
2.安装
chmod 755 bosun-linux-amd64
echo 'tsdbHost=172.18.1.217:14242' > bosun.conf
确认openTSDB开启自动增加metric的功能导致bosun没法添加metric。 修改openTSDB配置,将tsd.core.auto_create_metrics的值改为true,然后重启TSDB
然后在启动bosun
./bosun-linux-amd64 -c bosun.conf
页面访问
可以看到bosun本身也自带了非常多的监控项。
172.18.1.230:8070
scollector
用scollector作为客户端向bosun提交数据。
mkdir -p /m8/scollector
cd /m8/scollector
wget -c https://github.com/bosun-monitor/bosun/releases/download/0.5.0-alpha/scollector-linux-amd64 -O scollector-linux-amd64
chmod 755 scollector-linux-amd64
./scollector-linux-amd64 -h="172.18.1.230:8070" -d
-h的参数是bosun的域名或ip及端口。 -d是开启debug信息。
scollector具有自动发现服务的能力,比如开启了ntp服务,它就自动增加了ntp的监控项。而且scollector自带的系统监控项都已经有上百个了,非常详尽!
另外再提个重要的一点,bosun支持tag的通配符和或操作查询,这个是openTSDB所不具备的功能.
邮件报警设置
参考:bosun安装记录
http://zhengheng.me/2015/12/09/bosun-install/
网友评论