Telegraf是一個Influxdata的資料擷取套件,使用起來跟Collectd、Statsd、Logstash等軟體很像。通過plugin來實現資料的input和output。 今天我們嘗試自己編寫一個採集supervisord的外掛程式
1. 準備golang (最好1.9+)環境,
2. 準備一些dep 編譯環境 https://golang.github.io/dep/docs/installation.html
3. 準備http_proxy (你懂的)
4. go get github.com/influxdata/telegraf
5. cd $GOPATH/github.com/influxdata/telegraf
6. git checkout -b supervisor
7. cd plugins/inputs
8. mkdir supervisor
9. cd supervisor
10. 參考https://github.com/influxdata/telegraf/blob/master/CONTRIBUTING.md#input-plugin-example
11. vim telegraf/plugins/inputs/all/all.go 追加 _ "github.com/influxdata/telegraf/plugins/inputs/supervisor"
12. cd $GOPATH/github.com/influxdata/telegraf
13. http_proxy="http://<proxy>" make
14. ./telegraf --help
15. ./telegraf --input-filter supervisor config > telegraf.conf
16. ./telegraf --config telegraf.conf --test
supervisor.go 代碼 blog/telegraf.md at master · lmyyao/blog · GitHub