中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

怎么在CentOS7系統中搭建Prometheus 監控

發布時間:2021-03-08 10:04:07 來源:億速云 閱讀:424 作者:Leah 欄目:系統運維

今天就跟大家聊聊有關怎么在CentOS7系統中搭建Prometheus 監控,可能很多人都不太了解,為了讓大家更加了解,小編給大家總結了以下內容,希望大家根據這篇文章可以有所收獲。

 簡介

prometheus可以拆分成多個節點進行指標收集。

安裝環境:CentOS7

安裝prometheus

wget -c https://github.com/prometheus/prometheus/releases/download/v2.23.0/prometheus-2.23.0.linux-amd64.tar.gz 

tar zxvf prometheus-2.23.0.linux-amd64.tar.gz  -C /opt/ 

cd /opt/ 

ln -s prometheus-2.23.0.linux-amd64 prometheus 

cat > /etc/systemd/system/prometheus.service <<EOF 

[Unit] 

Description=prometheus 

After=network.target 

 

[Service] 

Type=simple 

WorkingDirectory=/opt/prometheus 

ExecStart=/opt/prometheus/prometheus --config.file="/opt/prometheus/prometheus.yml" 

LimitNOFILE=65536 

PrivateTmp=true 

RestartSec=2 

StartLimitInterval=0 

Restart=always 

 

[Install] 

WantedBy=multi-user.target 

EOF 

systemctl daemon-reload  

systemctl enable prometheus 

systemctl start prometheus 

 配置Prometheus

這里配置的是監聽/opt/prometheus/servers/目錄下的json文件

cat > /opt/prometheus/prometheus.yml <<EOF 

# my global config 

global: 

  scrape_interval:     15s # Set the scrape interval to every 15 seconds. Default is every 1 minute. 

  evaluation_interval: 15s # Evaluate rules every 15 seconds. The default is every 1 minute. 

  # scrape_timeout is set to the global default (10s). 

# Alertmanager configuration 

alerting: 

  alertmanagers: 

  - static_configs: 

    - targets: 

      # - alertmanager:9093 

 

# Load rules once and periodically evaluate them according to the global 'evaluation_interval'. 

rule_files: 

  # - "first_rules.yml" 

  # - "second_rules.yml" 

 

# A scrape configuration containing exactly one endpoint to scrape: 

# Here it's Prometheus itself. 

scrape_configs: 

  # The job name is added as a label `job=<job_name>` to any timeseries scraped from this config. 

  - job_name: 'prometheus' 

 

    # metrics_path defaults to '/metrics' 

    # scheme defaults to 'http'. 

 

    static_configs: 

    - targets: ['localhost:9090'] 

     

  - job_name: 'servers' 

    file_sd_configs: 

    - refresh_interval: 61s 

      files: 

        - /opt/prometheus/servers/*.json 

EOF 

systemctl restart prometheus 

json格式

怎么在CentOS7系統中搭建Prometheus 監控[     

    { 

        "targets": [ 

            "192.168.1.164:9100" 

        ], 

        "labels": { 

            "instance": "192.168.1.164", 

            "job": "node_exporter" 

        } 

    }, 

    { 

        "targets": [ 

            "192.168.1.167:9100" 

        ], 

        "labels": { 

            "instance": "192.168.1.167", 

            "job": "node_exporter" 

        } 

    } 

安裝node_exporter

安裝到/opt/node_exporter路徑下,保持默認的端口

https://github.com/prometheus/node_exporter/releases/download/v1.0.1/node_exporter-1.0.1.linux-amd64.tar.gz 

tar zxvf node_exporter-1.0.1.linux-amd64.tar.gz -C /opt/ 

cd /opt/ 

ln -s  node_exporter-1.0.1.linux-amd64 node_exporter 

cat > /etc/systemd/system/node_exporter.service <<EOF 

[Unit] 

Description=node_exporter 

After=network.target 

 

[Service] 

Type=simple 

WorkingDirectory=/opt/node_exporter 

ExecStart=/opt/node_exporter/node_exporter 

LimitNOFILE=65536 

PrivateTmp=true 

RestartSec=2 

StartLimitInterval=0 

Restart=always 

 

[Install] 

WantedBy=multi-user.target 

EOF 

systemctl daemon-reload 

systemctl enable node_exporter 

systemctl start node_exporter 

圖形展示

直接安裝grafana進行展示

yum -y install   https://dl.grafana.com/oss/release/grafana-7.3.6-1.x86_64.rpm 

systemctl enable grafana-server 

systemctl start grafana-server 

啟動之后,grafana默認監聽的是3000端口,直接使用瀏覽器進行訪問就可以了,默認用戶名密碼是admin/admin,第一次登陸之后會提示修改。

怎么在CentOS7系統中搭建Prometheus 監控

配置數據源:鼠標左邊的菜單 Configuration -> Data Source -> Add data source -> 選擇prometheus -> url那欄填入prometheus的地址就可以了 -> 最后 Save & test 就可以了。

grafana.com/grafana/dashboards 官網已經有人做好的模板,我們直接import進來就可以了。

導入面板:鼠標左邊的菜單 Dashboards -> Import -> 填入id -> Load -> 選擇數據源就可以了。

我經常用的是:1860 、8919 這兩個來查看node_exporter監控

怎么在CentOS7系統中搭建Prometheus 監控


看完上述內容,你們對怎么在CentOS7系統中搭建Prometheus 監控有進一步的了解嗎?如果還想了解更多知識或者相關內容,請關注億速云行業資訊頻道,感謝大家的支持。

原文地址:https://www.toutiao.com/i6914917162675192324/

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

桃园县| 博兴县| 思茅市| 鲁甸县| 聂拉木县| 阳原县| 瓦房店市| 临汾市| 勐海县| 枝江市| 安陆市| 乡宁县| 台东县| 达州市| 天镇县| 梅州市| 彰化市| 永丰县| 中宁县| 三门县| 塘沽区| 巢湖市| 开封县| 区。| 平谷区| 连江县| 黄梅县| 改则县| 东乡族自治县| 碌曲县| 兴业县| 芦山县| 尼勒克县| 商都县| 西城区| 石林| 华坪县| 灌阳县| 凤台县| 乌兰浩特市| 樟树市|