成人午夜视频全免费观看高清-秋霞福利视频一区二区三区-国产精品久久久久电影小说-亚洲不卡区三一区三区一区

怎么在CentOS7系統(tǒng)中搭建Prometheus監(jiān)控-創(chuàng)新互聯(lián)

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

我們提供的服務(wù)有:成都網(wǎng)站建設(shè)、成都網(wǎng)站制作、微信公眾號(hào)開(kāi)發(fā)、網(wǎng)站優(yōu)化、網(wǎng)站認(rèn)證、順城ssl等。為1000多家企事業(yè)單位解決了網(wǎng)站和推廣的問(wèn)題。提供周到的售前咨詢和貼心的售后服務(wù),是有科學(xué)管理、有技術(shù)的順城網(wǎng)站制作公司

 簡(jiǎn)介

prometheus可以拆分成多個(gè)節(jié)點(diǎn)進(jìn)行指標(biāo)收集。

安裝環(huán)境: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

這里配置的是監(jiān)聽(tīng)/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系統(tǒng)中搭建Prometheus 監(jiān)控[     

    {

        "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路徑下,保持默認(rèn)的端口

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進(jìn)行展示

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

啟動(dòng)之后,grafana默認(rèn)監(jiān)聽(tīng)的是3000端口,直接使用瀏覽器進(jìn)行訪問(wèn)就可以了,默認(rèn)用戶名密碼是admin/admin,第一次登陸之后會(huì)提示修改。

怎么在CentOS7系統(tǒng)中搭建Prometheus 監(jiān)控

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

grafana.com/grafana/dashboards 官網(wǎng)已經(jīng)有人做好的模板,我們直接import進(jìn)來(lái)就可以了。

導(dǎo)入面板:鼠標(biāo)左邊的菜單 Dashboards -> Import -> 填入id -> Load -> 選擇數(shù)據(jù)源就可以了。

我經(jīng)常用的是:1860 、8919 這兩個(gè)來(lái)查看node_exporter監(jiān)控

怎么在CentOS7系統(tǒng)中搭建Prometheus 監(jiān)控


看完上述內(nèi)容,你們對(duì)怎么在CentOS7系統(tǒng)中搭建Prometheus 監(jiān)控有進(jìn)一步的了解嗎?如果還想了解更多知識(shí)或者相關(guān)內(nèi)容,請(qǐng)關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道,感謝大家的支持。

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

網(wǎng)頁(yè)標(biāo)題:怎么在CentOS7系統(tǒng)中搭建Prometheus監(jiān)控-創(chuàng)新互聯(lián)
分享路徑:http://jinyejixie.com/article46/disehg.html

成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供移動(dòng)網(wǎng)站建設(shè)關(guān)鍵詞優(yōu)化、品牌網(wǎng)站設(shè)計(jì)手機(jī)網(wǎng)站建設(shè)、自適應(yīng)網(wǎng)站網(wǎng)頁(yè)設(shè)計(jì)公司

廣告

聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如需處理請(qǐng)聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來(lái)源: 創(chuàng)新互聯(lián)

成都網(wǎng)頁(yè)設(shè)計(jì)公司
望都县| 五指山市| 东乌| 岱山县| 佛山市| 秭归县| 南充市| 新田县| 鹰潭市| 视频| 中西区| 汝城县| 绥滨县| 竹北市| 桂林市| 长兴县| 达州市| 卢湾区| 开封县| 亚东县| 鄂伦春自治旗| 霍州市| 汶上县| 贵溪市| 长寿区| 永顺县| 延安市| 民乐县| 当雄县| 革吉县| 全州县| 昌宁县| 四会市| 汝州市| 常州市| 历史| 达日县| 达尔| 新田县| 玛曲县| 通海县|