监控
准备工作
配置prometheus
在scrape_configs
节点下新增WuKongIM
的监控项目
job_name: 唯一job名字
targets: 为WuKongIM
的内网ip
+ 5300端口
labels: id为WuKongIM
的nodeId
yaml
...
scrape_configs:
...
- job_name: xxxx-trace-metrics
static_configs:
- targets: ['xx.xx.xx.xx:5300']
labels:
id: "xxxx"
...
xx.xx.xx.xx
替换为WuKongIM
的内网ip
地址
xxxx
替换为WuKongIM
的nodeId
配置WuKongIM
在各节点的wk.yaml
文件中配置prometheus
的地址
yaml
trace:
prometheusApiUrl: "http://xx.xx.xx.xx:9090"
xx.xx.xx.xx
替换为prometheus
的内网ip
地址