grafana+influxdb+telegraf监控服务器cpu,内存和硬盘

目前的策略

数据采集:Telegraf

数据库:InfluxDB

展现:Grafana

报警:自开发shell

grafana相比graphite, 优势非常大, 特别是配置和部署, 要简单很多, 界面方面的体验做得非常好, 特别是还兼容graphite的数据。由于grafana仅仅只是提供界面显示, 所以他需要从influxdb中获取数据, 而influxdb中的数据又需要从其他地方收集过来, 常用的收集工具是collectd和telegraf, 我们选择telegraf,collectd在这里不做介绍, 有些数据不是太适合, 而 influxdb 自身集成 telegraf插件, 不需要进行专门的配置。

安装配置

influxdb 1.x+

管理后台默认端口: 8083, 我们可以直接访问后台管理数据
数据传递默认端口: 8086, 其他服务传递数据的端口

wget https://dl.influxdata.com/influxdb/releases/influxdb-1.0.2.x86_64.rpm  
yum localinstall influxdb-1.0.2.x86_64.rpm
service influxdb start # 启动服务

telegraf 1.x+

wget https://dl.influxdata.com/telegraf/releases/telegraf-1.0.1.x86_64.rpm
yum localinstall telegraf-1.0.1.x86_64.rpm
cd /etc/telegraf
# 只收集cpu, 内存和硬盘的数据
telegraf -sample-config -input-filter cpu:mem:disk -output-filter influxdb > telegraf.conf
# 设置将数据传递写入influxdb服务器
vi telegraf.conf
# 将地址改成 influxdb 对应的服务器地址, 端口默认 8086, 默认数据库 telegraf
service telegraf start # 启动服务

grafana 3.x+

默认启动端口 3000, 账户密码默认都是 admin

wget https://grafanarel.s3.amazonaws.com/builds/grafana-3.1.1-1470047149.x86_64.rpm
yum localinstall grafana-3.1.1-1470047149.x86_64.rpm
service grafana-server start # 启动服务
chkconfig --add grafana-server # 添加开机启动

官方文档

telegraf: https://docs.influxdata.com/telegraf/v1.0/
influxdb: https://docs.influxdata.com/influxdb/v1.0
grafana: http://docs.grafana.org/

附上一些参考资料

Telegraf 配置文件详解 及常用的input plugins:
https://my.oschina.net/xxbAndy/blog/751330
Grafana:
汉化包:https://github.com/moonstack/grafana-for-chinese
grafana 4.3.2-1文件列表:https://www.archlinux.org/packages/community/x86_64/grafana/files/

原文链接:http://www.jianshu.com/p/dfd329d30891

使用elasticsearch、logstash、kibana快速搭建实时日志分析平台:http://mp.weixin.qq.com/mp/getmasssendmsg?__biz=MjM5OTgxMTIwMw==#wechat_webview_type=1&wechat_redirect

你可能感兴趣的:(系统架构)