安装
1 2 3 4
| wget -c https://download.flashcat.cloud/categraf-v0.3.77-linux-amd64.tar.gz tar -zxvf categraf-v0.3.77-linux-amd64.tar.gz mkdir -pv /opt/categraf cp -r ./categraf-v0.3.77-linux-amd64/* /opt/categraf/
|
配置
N9E: 这里是配置像哪个 VM 推送数据 参考
1 2 3
| [[Pushgw.Writers]]
Url = "http://10.168.140.45:8428/api/v1/write"
|
categraf:
1 2 3 4 5 6
| [[writers]] url = "http://10.168.137.144:17000/prometheus/v1/write"
[heartbeat] enable = true url = "http://10.168.137.144:17000/v1/n9e/heartbeat"
|
inputs:
1 2 3 4
| [[instances]] targets = [ "http://10.113.75.134:5000/v1/datasets/8a9302de-ded1-493c-8a12-e8acf3d80772/files?apikey=ka-admin123" ]
|
启动
linux systemd 托管不太好控制单个模块采集
1 2
| nohup ./categraf --inputs http_response & pkill categraf
|
常用命令
1 2 3 4 5
| ./categraf --test --inputs http_response ./categraf --inputs http_response
pkill n9e nohup ./n9e &> n9e.log &
|
参考:
https://flashcat.cloud/docs/content/flashcat-monitor/categraf/2-installation/