要配置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界面来查看监控指标的图表和生成报告。