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