github位址包含docker-compose安裝方法
元件介紹:
prometheus server 包含資料採集scrapes job, stores time series data;
push gateway : prometheus server的乙個**節點, 當一些節點沒有提供http endpoint時,可將資料push到**節點,prometheus會去**節點獲取資料;
exporters: 資料採集外掛程式, 暴露乙個http服務的介面給prometheus server定時抓取;
alertmanager: 報警外掛程式;
主機:192.168.200.118
(2),解壓包:tar -zxvf prometheus-2.16.0.linux-amd64.tar.gz
(3),移動到規範目錄:mv prometheus-2.16.10.linux-amd64 /opt/prometheus
(4),進入目錄:cd /opt/prometheus
(5),新建啟動指令碼
[root@test-zhapigw prometheus]# cat start.sh
nohup /opt/prometheus/prometheus --config.file=/opt/prometheus/prometheus.yml --storage.tsdb.retention=90d --web.enable-lifecycle &
[root@test-zhapigw prometheus]# chmod 777 start.sh
(6),新建過載配置指令碼
[root@test-zhapigw prometheus]#cat reload.sh
#!/bin/bash
curl -xpost
[root@test-zhapigw prometheus]# chmod 777 reload.sh
(7),啟動prometheus
bash /opt/prometheus/start.sh
(8),測試訪問
(9),檢視metrics暴漏出來的指標。
Prometheus監控部署安裝
1 熟悉配置檔案 配置檔案 usr local prometheus prometheus.yml global 定義全域性 scrape interval 15s 每個15s抓取一次資料,預設1分鐘。evaluation interval 15s 監控資料評估規則的評率,跟rule結合實現效果.a...
Prometheus安裝及監控minio
本文簡單的來說下prometheus安裝啟動,以centos7.x為例。wget tar xf prometheus 2.8.0.linux amd64.tar.gz c usr local mv usr local prometheus 2.8.0.linux amd64 usr local pr...
Prometheus 監控部署安裝 sdsca
prometheus 介紹 prometheus是乙個開源的系統監控和報警工具包,普羅公尺修斯在2016年加入了雲原生計算 會,成為繼kubernetes之後的第二個專案。普羅公尺修斯的主要特徵是 多維資料模型,時間序列資料由度量名稱和鍵 值對標識 promql是一種靈活的查詢語言,可以利用這種維度...