要配置Prometheus監(jiān)控指標(biāo),您可以按照以下步驟操作:
prometheus.yml
文件中添加 targets
來指定監(jiān)控目標(biāo)的地址和端口。scrape_configs:
- job_name: 'my-app'
static_configs:
- targets: ['localhost:9090']
node_exporter
模塊收集系統(tǒng)指標(biāo)。您可以通過修改 prometheus.yml
文件中的 scrape_configs
部分來配置采集指標(biāo)的方式。scrape_configs:
- job_name: 'node'
static_configs:
- targets: ['localhost:9100']
prometheus.yml
文件中的 rule_files
部分來指定告警規(guī)則文件的路徑。rule_files:
- 'alert.rules'
sudo systemctl restart prometheus
通過上述步驟,您就可以配置Prometheus監(jiān)控指標(biāo)并實(shí)時監(jiān)控系統(tǒng)的性能和健康狀況。您可以訪問Prometheus的Web界面來查看監(jiān)控指標(biāo)的圖表和生成報(bào)告。