Windows下本机简易监控系统搭建(Telegraf+Influxdb+Grafana)--转
原文地址:http://www.cnblogs.com/liugh/p/6683488.html
一、文件準備
? ? ?1.1 文件名稱
? ? ? ? ?telegraf-1.2.1_windows_amd64.zip
? ? ? ? ?influxdb-1.2.2_windows_amd64.zip
? ? ? ? ?grafana-4.2.0.windows-x64.zip
? ? ?1.2 下載地址
? ? ? ??https://portal.influxdata.com/downloads
? ? ? ?【注意、注意、注意】下載時可能需要FanQiang
? ? ? ??
?
? ? ? ??
?
? ? ? ? https://grafana.com/grafana/download?platform=windows
? ? ? ??
二、安裝
? ? 分別解壓下載下來的文件到指定目錄,比如:d:\Program Files
三、配置
3.1 Telegraf
? ? ? 修改influxdb.conf,設置日志文件目錄:
## Specify the log file name. The empty string means to log to stdout.logfile = "D:/Program Files/Telegraf/telegraf.log"3.2 InfluxDb
? ? 修改influxdb.conf,打開Web控制臺: ? ??
[admin]
# Determines whether the admin service is enabled.
enabled = true
# The default bind address used by the admin service.
bind-address = ":8083"
?3.3 Grafana
? ? 使用默認配置
四、啟動
? ? 4.1 Influxdb
? ? 通過cmd命令窗口,切換到influxdb安裝目錄,執行如下命令:
? ? ?influxd -config influxdb.conf
? ? 4.2 Telegraf
? ? 通過cmd命令窗口,切換到Telegraf安裝目錄,執行如下命令:
? ? ?telegraf -config telegraf.conf
? ? 4.3 Grafana
? ? 切換到Grafana安裝目錄中的bin目錄下,雙擊grafana-server.exe啟動程序
五、使用
? ?訪問http://localhost:3000,使用admin/admin登錄本機Grafana,新建influxdb數據源:
? ? ? ??
? ? ? ?【注意】Telegraf啟動后,向InfluxDb中上報數據時,會默認創建一個telegraf數據庫,所以上面我們配置DataBase是telegraf
? ? ? ?查看http://localhost:8083,可以發現telegraf庫中,默認有4個Measurements(表):
?
? ? ? ?配置Grafana中的面板,這樣一個簡易的本機監控系統就搭建完了:
?【注意】CPU是按核數維度統計的,磁盤隊列是按盤符統計的?
轉載于:https://www.cnblogs.com/davidwang456/p/7367632.html
總結
以上是生活随笔為你收集整理的Windows下本机简易监控系统搭建(Telegraf+Influxdb+Grafana)--转的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: Scalable, Distribute
- 下一篇: Java7里try-with-resou