国产亚洲精品福利在线无卡一,国产精久久一区二区三区,亚洲精品无码国模,精品久久久久久无码专区不卡

當(dāng)前位置: 首頁 > news >正文

深圳羅湖住房和建設(shè)局網(wǎng)站鄭州外語網(wǎng)站建站優(yōu)化

深圳羅湖住房和建設(shè)局網(wǎng)站,鄭州外語網(wǎng)站建站優(yōu)化,營銷型網(wǎng)站建設(shè)步驟,網(wǎng)站建設(shè)公司國內(nèi)技術(shù)最強Pushgateway簡介 Pushgateway是Prometheus監(jiān)控系統(tǒng)中的一個重要組件,它采用被動push的方式獲取數(shù)據(jù),由應(yīng)用主動將數(shù)據(jù)推送到pushgateway,然后Prometheus再從Pushgateway抓取數(shù)據(jù)。使用Pushgateway的主要原因是: Prometheus和targ…

Pushgateway簡介

在這里插入圖片描述

Pushgateway是Prometheus監(jiān)控系統(tǒng)中的一個重要組件,它采用被動push的方式獲取數(shù)據(jù),由應(yīng)用主動將數(shù)據(jù)推送到pushgateway,然后Prometheus再從Pushgateway抓取數(shù)據(jù)。使用Pushgateway的主要原因是:

  • Prometheus和target由于某些原因網(wǎng)絡(luò)不能互通,需要經(jīng)由Pushgateway代理
  • 某些作業(yè)生命周期較短,沒有足夠的時間等待Prometheus抓取數(shù)據(jù)。所以可以先把數(shù)據(jù)推送到Pushgateway,再讓Prometheus抓取

但是PushGateway也存在一些弊端:

  • 通過單個 Pushgateway 監(jiān)控多個實例時, Pushgateway 將會成為單點故障和潛在瓶頸
  • Pushgateway 可以持久化推送給它的所有監(jiān)控數(shù)據(jù)。
    因此,即使監(jiān)控目標以下線,prometheus 還會拉取到舊的監(jiān)控數(shù)據(jù),需要手動清理 pushgateway 不要的數(shù)據(jù)。

部署Pushgateway

下載安裝包

wget  https://github.com/prometheus/pushgateway/releases/download/v1.5.1/pushgateway-1.5.1.linux-amd64.tar.gz
tar xvf pushgateway-1.5.1.linux-amd64.tar.gz
pushgateway-1.5.1.linux-amd64/pushgateway /usr/bin/
pushgateway -h	#查看幫助

準備service文件

root@prometheus-server-01:~# cat /lib/systemd/system/pushgateway.service
[Unit]
Description=Prometheus Pushgateway
After=network.target[Service]
Type=simple
User=root
Group=root
ExecStart=pushgateway --web.listen-address=:9091
Restart=on-failure[Install]
WantedBy=multi-user.target

啟動服務(wù)

systemctl daemon-reload
systemctl start pushgateway
systemctl status pushgateway
systemctl enable pushgateway

訪問pushgateway界面
在這里插入圖片描述

配置Prometheus抓取數(shù)據(jù)

在prometheus配置中添加job,抓取pushgateway數(shù)據(jù),內(nèi)容如下:

  - job_name: pushgatewayhonor_labels: truestatic_configs:- targets: ["192.168.122.21:9091"]

配置修改完成后重啟Prometheus。然后在Prometheus界面查看target狀態(tài)
在這里插入圖片描述

測試

要推送數(shù)據(jù)到Pushgateway中,可以其提供的API接口來添加,默認URL地址為http://<ip>:9091/metrics/job/<job-name>/<label-name>/<label-value>
其中job-name是必填項,是job標簽的值,后邊可以跟任意數(shù)量的標簽&標簽值對,一般會添加一個instance/<instance-name>標簽來區(qū)分指標數(shù)據(jù)來源

測試向Pushgateway推送單條數(shù)據(jù)

執(zhí)行如下命令進行單條數(shù)據(jù)推送

#my_metric表示指標名稱,2022表示指標值
echo "my_metric 2022"| curl --data-binary @- http://192.168.122.21:9091/metrics/job/test-job/instance/192.168.122.22
#再執(zhí)行一次推送,將值改為2023
echo "my_metric 2023"| curl --data-binary @- http://192.168.122.21:9091/metrics/job/test-job/instance/192.168.122.22

在Pushgateway界面查看數(shù)據(jù),如下圖,可以看到只顯示了最新值。
在這里插入圖片描述

在Prometheus中查詢my_metric,驗證是否獲取到數(shù)據(jù)
在這里插入圖片描述

測試向Pushgateway推送多條數(shù)據(jù)

cat <<EOF | curl --data-binary @- http://192.168.122.21:9091/metrics/job/test-job/instance/192.168.122.22
#TYPE node_memory_total gauge
node_memory_total 10240000000
#TYPE node_memory_usage gauge
node_memory_usuge 1024000000
EOF

在Pushgateway界面查看數(shù)據(jù)
在這里插入圖片描述
在這里插入圖片描述

在Prometheus中查詢,驗證是否獲取到數(shù)據(jù)
在這里插入圖片描述
在這里插入圖片描述

測試刪除數(shù)據(jù)

curl -X DELETE  http://192.168.122.21:9091/metrics/job/test-job/instance/192.168.122.22

在Pushgateway界面驗證
在這里插入圖片描述

http://m.aloenet.com.cn/news/44838.html

相關(guān)文章:

  • 托者設(shè)計吧官網(wǎng)免費seo提交工具
  • 余姚的網(wǎng)站建設(shè)游戲推廣文案
  • 網(wǎng)站seo 優(yōu)化百度快速seo
  • 動態(tài)網(wǎng)站建設(shè)優(yōu)缺點排超聯(lián)賽積分榜
  • dede網(wǎng)站怎么做404頁面win10優(yōu)化大師
  • 做的網(wǎng)站怎么打開是白板seo顧問多少錢
  • 網(wǎng)站銷售系統(tǒng)怎么做河南網(wǎng)站優(yōu)化公司
  • 可以做審計初級題的網(wǎng)站如何推廣小程序
  • 網(wǎng)站頁面設(shè)計工作流程今日熱點新聞視頻
  • 百潤網(wǎng)站建設(shè)seo 最新
  • 百度網(wǎng)站優(yōu)化培訓(xùn)全國免費發(fā)布信息平臺
  • 威廉網(wǎng)站建設(shè)企業(yè)網(wǎng)站類型有哪些
  • 做旅游網(wǎng)站教程如何進行新產(chǎn)品的推廣
  • 濟南手工網(wǎng)站建設(shè)公司今日國際新聞頭條15條
  • 百度js轉(zhuǎn)wordpress搜索引擎優(yōu)化師工資
  • 電商網(wǎng)站開發(fā)定制青島網(wǎng)站seo優(yōu)化
  • 西寧做網(wǎng)站公司排名北京seo服務(wù)商
  • 網(wǎng)頁游戲開服表37排名優(yōu)化軟件點擊
  • 網(wǎng)站建設(shè)范文合肥網(wǎng)站seo推廣
  • 網(wǎng)站如何添加友情鏈接免費網(wǎng)站在線客服系統(tǒng)源碼
  • 龍華三網(wǎng)合一網(wǎng)站建設(shè)免費的推廣引流軟件下載
  • 泰安房產(chǎn)網(wǎng)網(wǎng)上交易中心seo關(guān)鍵詞排名工具
  • 珠海集團網(wǎng)站制作外包nba西部最新排名
  • 做一個電商網(wǎng)站百度熱搜風(fēng)云榜
  • 鄭州做網(wǎng)站的專業(yè)公司有哪些百度推廣總部客服投訴電話
  • 華久做網(wǎng)站葫島百度seo
  • 個人網(wǎng)站cms手機如何制作網(wǎng)站
  • 貴陽網(wǎng)站建設(shè)zbcskj重慶seo招聘
  • 防城港網(wǎng)站建設(shè)搜狗搜索舊版本
  • 怎樣做某個網(wǎng)站有更新的提醒seo排名計費系統(tǒng)