本篇內(nèi)容介紹了“怎么將Prometheus對(duì)應(yīng)的exporter做成系統(tǒng)服務(wù)”的有關(guān)知識(shí),在實(shí)際案例的操作過(guò)程中,不少人都會(huì)遇到這樣的困境,接下來(lái)就讓小編帶領(lǐng)大家學(xué)習(xí)一下如何處理這些情況吧!希望大家仔細(xì)閱讀,能夠?qū)W有所成!
我們提供的服務(wù)有:成都做網(wǎng)站、網(wǎng)站制作、微信公眾號(hào)開(kāi)發(fā)、網(wǎng)站優(yōu)化、網(wǎng)站認(rèn)證、和順ssl等。為千余家企事業(yè)單位解決了網(wǎng)站和推廣的問(wèn)題。提供周到的售前咨詢和貼心的售后服務(wù),是有科學(xué)管理、有技術(shù)的和順網(wǎng)站制作公司
這里以node_exporter為例介紹這個(gè)過(guò)程,node_exporter的作用是用于機(jī)器系統(tǒng)數(shù)據(jù)收集,監(jiān)控服務(wù)器CPU、內(nèi)存、磁盤、I/O等信息。
wget 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 mv node_exporter-1.0.1.linux-amd64 /usr/local/node_exporter
groupadd prometheus useradd -g prometheus -m -d /var/lib/prometheus -s /sbin/nologin prometheus chown prometheus.prometheus -R /usr/local/node_exporter
cat > /etc/systemd/system/node_exporter.service <4、啟動(dòng)node_exporter
systemctl daemon-reload systemctl start node_exporter systemctl status node_exporter systemctl enable node_exporter5、驗(yàn)證啟動(dòng)成功
curl 127.0.0.1:9100 curl 127.0.0.1:9100/metrics 或 http://127.0.0.1:9100/metricsEnd~
“怎么將Prometheus對(duì)應(yīng)的exporter做成系統(tǒng)服務(wù)”的內(nèi)容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業(yè)相關(guān)的知識(shí)可以關(guān)注創(chuàng)新互聯(lián)網(wǎng)站,小編將為大家輸出更多高質(zhì)量的實(shí)用文章!
分享題目:怎么將Prometheus對(duì)應(yīng)的exporter做成系統(tǒng)服務(wù)
標(biāo)題路徑:http://weahome.cn/article/goghej.html