安裝和配置Prometheus監控系統可以分為以下幾個步驟:
sudo yum install prometheus
global:
scrape_interval: 15s
scrape_configs:
- job_name: 'node'
static_configs:
- targets: ['localhost:9100']
在這個示例配置文件中,我們定義了一個名為’node’的監控任務,監控目標是本地主機的9100端口。
sudo systemctl start prometheus
您還可以使用以下命令設置Prometheus在系統啟動時自動啟動:
sudo systemctl enable prometheus
http://localhost:9090
在Web界面中,您可以查看已添加的監控目標、執行查詢、查看圖形數據等。
這樣,您就成功在CentOS系統上安裝和配置了Prometheus監控系統。您可以根據實際需求進一步配置和使用Prometheus來監控系統性能和健康狀態。