夜莺监控使用指南
本文用于解决在部署和应用夜莺监控中遇到的一些问题以及官方文档缺失的某些步骤可能会遇到的坑。
安装过程
我使用是Nightingale
+Categraf
+Prometheus
的架构。
- Nightingale安装文档:https://flashcat.cloud/docs/content/flashcat-monitor/nightingale-v7/install/intro/
- Categraf安装文档:https://flashcat.cloud/docs/content/flashcat-monitor/categraf/2-installation/
- Prometheus安装文档:https://prometheus.fuckcloudnative.io/di-san-zhang-prometheus/di-2-jie-an-zhuang/gettingstarted
其中Prometheus
启动时,应使用./prometheus --web.enable-remote-write-receiver
作为启动语句,同时Categraf
配置文件应做如下改动:
# 找到此行配置
[[writers]]
url = "http://127.0.0.1:17000/prometheus/v1/write"
# 改成如下配置,根据Prometheus的部署确定IP和端口
[[writers]]
url = "http://localhost:9090/api/v1/write"
更改完配置后,在Prometheus
或者Nightingale
前端已经可以看到安装了Categraf
机器的相关监控信息。
采集过程
Categraf
自带的插件配置已经比较完善了,但是更改配置后,需要重启Categraf
或者执行
kill -HUP `pidof categraf`
这样在监控前端才能看到插件的监控数据。
标签:夜莺,prometheus,flashcat,Prometheus,监控,使用指南,Categraf From: https://www.cnblogs.com/LMFrank/p/18348777