解壓 tar xvzf prometheus-2.6.1.linux-amd64.tar.gz
移動到安裝目錄 mv prometheus-2.6.1.linux-amd64 /usr/local/
修改目錄名 mv prometheus-2.6.1.linux-amd64 prometheus
進入到目錄 cd /usr/local/prometheus
修改配置檔案用來監控本機 vim prometheus.yml
scrape_configs:
- job_name: 'prometheus'
static_configs:
# 監控本地及埠
- targets: ['xiangsikai:9090']
./prometheus --config.file=prometheus.yml
訪問位址 http://localhost:9090
頁面解釋
alerts 監控告警規則
graph 圖形
status 基礎環境、命令列日誌,配置檔案、角色定義監控指標告警規則,當前已被納入主機的情況、服務發現功能
進入system目錄下 cd /usr/lib/systemd/system
建立檔案 vim prometheus.service
[unit]
description=
[service]
restart=on-failure
execstart=/usr/local/prometheus/prometheus --config.file=/usr/local/prometheus/prometheus.yml
[install]
wantedby=multi-user.target
生效系統system檔案 systemctl daemon-reload
停止/啟動服務 systemctl stop prometheus.service/systemctl start prometheus.service
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監控
github位址包含docker compose安裝方法 元件介紹 prometheus server 包含資料採集scrapes job,stores time series data push gateway prometheus server的乙個 節點,當一些節點沒有提供http endpo...
Prometheus 安裝部署
prometheus 安裝部署 二進位制安裝部署 2 解壓包 tar xvzf prometheus 2.6.1.linux amd64.tar.gz 3 移動到安裝目錄 mv prometheus 2.6.1.linux amd64 usr local prometheus 4 進入目錄 cd u...