想打造 New Relic 那樣漂亮的實時監控系統咱們只須要 InfluxDB/collectd/Grafana 這三個工具,這三個工具的關係是這樣的:html
採集數據(collectd)-> 存儲數據(InfluxDB) -> 顯示數據(Grafana)。前端
下面的安裝和配置步驟在 Ubuntu 14.04 Server 64bit 版上完成。升級整個系統後重啓:python
$ sudo apt-get update
$ sudo apt-get upgrade
$ sudo reboot
InfluxDB 是 Go 寫的,不依賴任何其餘包或庫,很乾淨。安裝很容易:linux
$ wget https://s3.amazonaws.com/influxdb/influxdb_latest_amd64.deb
$ sudo dpkg -i influxdb_latest_amd64.deb
啓動 InfluxDB:git
$ sudo /etc/init.d/influxdb start
Setting ulimit -n 65536
Starting the process influxdb [ OK ]
influxdb process was started [ OK ]
啓動後打開 web 管理界面 http://192.168.2.183:8083/ 默認用戶名和密碼是 root 和 root. InfluxDB 的 Web 管理界面端口是 8083,HTTP API 監聽端口是 8086,若是須要更改這些默認設定,修改 InfluxDB 的配置文件 /opt/influxdb/current/config.toml 後重啓 InfluxDB 就能夠了。github
InfluxDBweb
在剛安裝好的 InfluxDB 上建立一個名爲 collectd 的數據庫,能夠用命令行建立,也能夠用 Web 管理界面操做:數據庫
$ curl "http://192.168.2.183:8086/db?u=root&p=root" -d "{\"name\": \"collectd\"}"
InfluxDBapi
安裝 collectd:瀏覽器
$ sudo apt-get install collectd
配置 collectd 爲客戶端,收集到數據後直接發給 InfluxDB:
$ sudo vi /etc/collectd/collectd.conf
...
LoadPlugin network
...
<Plugin network>
Server "192.168.2.183" "25826"
</Plugin>
...
重啓 collectd:
$ sudo /etc/init.d/collectd restart
InfluxDB 如今自帶一個 collectd 插件來獲取 collectd 客戶端發來的數據,之前可沒這麼方便哦,0.8.4 版本之前只能經過 influxdb-collectd-proxy 這樣的第三方程序來鏈接 collectd 和 InfluxDB. 若是你檢查一下服務器上打開的端口就會發現 influxdb 插件啓動了一個 25826 端口,若是發現 InfluxDB 數據庫裏沒有(收集到)數據,務必檢查這個 25826 端口是否正常啓動了:
$ sudo netstat -tupln
Active Internet connections (only servers)
Proto Recv-Q Send-Q Local Address Foreign Address State PID/Program name
tcp 0 0 0.0.0.0:22 0.0.0.0:* LISTEN 622/sshd
tcp6 0 0 :::8086 :::* LISTEN 668/influxdb
tcp6 0 0 :::22 :::* LISTEN 622/sshd
tcp6 0 0 :::8090 :::* LISTEN 668/influxdb
tcp6 0 0 :::8099 :::* LISTEN 668/influxdb
tcp6 0 0 :::8083 :::* LISTEN 668/influxdb
udp6 0 0 :::25826 :::* 668/influxdb
InfluxDB 自帶的 collectd 插件默認是關閉的,須要手動配置打開 enabled = true,並填上 database = 「collectd」 這一行,這裏的 「collectd」 就是咱們上面建立的那個數據庫,更改配置後記得重啓 InfluxDB:
$ sudo vi /opt/influxdb/current/config.toml
$ sudo vi /opt/influxdb/shared/config.toml
...
# Configure the collectd api
[input_plugins.collectd]
enabled = true
# address = "0.0.0.0" # If not set, is actually set to bind-address.
# port = 25826
database = "collectd"
# types.db can be found in a collectd installation or on github:
# https://github.com/collectd/collectd/blob/master/src/types.db
# typesdb = "/usr/share/collectd/types.db" # The path to the collectd types.db file
...
$ sudo /etc/init.d/influxdb restart
Setting ulimit -n 65536
Setting ulimit -n 65536
influxdb process was stopped [ OK ]
Setting ulimit -n 65536
Starting the process influxdb [ OK ]
influxdb process was started [ OK ]
如今 InfluxDB 已經準備好接受和處理 collectd 傳來的數據了。用命令行或者 Web 管理界面驗證一下數據庫裏是否有數據:
$ curl -G 'http://192.168.2.183:8086/db/collectd/series?u=root&p=root&q=list+series&pretty=true'
[
{
"name": "list_series_result",
"columns": [
"time",
"name"
],
"points": [
[
0,
"192.168.2.183/cpu-0/cpu-idle"
],
...
]
}
]
InfluxDB
下載 grafana 後解壓放到 web 服務器上就可用。這裏省去配置 Nginx/Apache 之類的麻煩,直接用最簡單的 Web 服務器 python -m SimpleHTTPServer 驅動:
$ wget http://grafanarel.s3.amazonaws.com/grafana-1.9.1.tar.gz
$ tar xzvf grafana-1.9.1.tar.gz
$ cd grafana-1.9.1.tar.gz
$ cp config.sample.js config.js
$ vi config.js
...
// InfluxDB example setup (the InfluxDB databases specified need to exist)
datasources: {
influxdb: {
type: 'influxdb',
url: "http://192.168.2.183:8086/db/collectd",
username: 'root',
password: 'root',
},
...
},
...
$ sudo python -m SimpleHTTPServer
用瀏覽器訪問 Grafana,這裏的默認端口是 8000:
https://linux.cn/article-5252-1.html