這篇文章給大家分享的是有關(guān)node_exporter的使用方法的內(nèi)容。小編覺得挺實(shí)用的,因此分享給大家學(xué)習(xí)。如下資料是關(guān)于node_exporter的內(nèi)容。
成都創(chuàng)新互聯(lián)成立于2013年,是專業(yè)互聯(lián)網(wǎng)技術(shù)服務(wù)公司,擁有項(xiàng)目成都網(wǎng)站設(shè)計(jì)、成都做網(wǎng)站、外貿(mào)網(wǎng)站建設(shè)網(wǎng)站策劃,項(xiàng)目實(shí)施與項(xiàng)目整合能力。我們以讓每一個夢想脫穎而出為使命,1280元思明做網(wǎng)站,已為上家服務(wù),為思明各地企業(yè)和個人服務(wù),聯(lián)系電話:18982081108下載軟件包:
1.下載安裝node_export
mkdir -p /usr/local/prometheus/exporter/node cd /usr/local/prometheus/exporter/node curl -s -OL https://github.com/prometheus/node_exporter/releases/download/v0.18.0/node_exporter-$Version.linux-amd64.tar.gz tar xf node_exporter-0.18.0.linux-amd64.tar.gz cp -a node_exporter-0.18.0.linux-amd64/node_exporter /usr/local/bin/
2.注冊系統(tǒng)服務(wù)
cat > /usr/lib/systemd/system/node-exporter.service <<-'EOF' [Unit] Description=This is prometheus node exporter After=docker.service [Service] Type=simple ExecStart=/usr/local/bin/node_exporter ExecReload=/bin/kill -HUP $MAINPID KillMode=process Restart=on-failure [Install] WantedBy=multi-user.target EOF
3.設(shè)置開機(jī)自啟,啟動服務(wù)
systemctl daemon-reload && systemctl enable node-exporter.service && systemctl start node-exporter.service
node_exporter 他的本質(zhì)就是監(jiān)控主機(jī)系統(tǒng),所以我們不建議將其部署為 docker 容器,因?yàn)樗枰L問主機(jī)系統(tǒng).
- job_name: node metrics_path: /metrics static_configs: - targets: ['192.168.111.65:9100']
重啟 prometheus,查看狀態(tài)
基于發(fā)現(xiàn)配置prometheus
在prometheus 主配置文件配置定義子配置文件路徑
- job_name: 'node' static_configs: file_sd_configs: - files: - metrics/node_exporter*.yaml refresh_interval: 2m
在prometheus安裝目錄下的targets目錄下(在主配置文件定義metrics目錄不存在則手動創(chuàng)建)創(chuàng)建文件 node_exporter65.yaml
- targets: ['192.168.111.65:9100'] # 如果有多個node_exporter,配置到[]中,隔開添加不需要重啟服務(wù),服務(wù)自動發(fā)現(xiàn)node_exporter客戶端 labels: app: node-exporter job: node
圖表編號為8919
https://grafana.com/grafana/dashboards/8919
然后可以看到如下圖表
開啟alertmanager配置告警規(guī)則
prometheus 主配置文件配置定義子配置文件路徑
rule_files: - "rules/*.yml"
prometheus 告警規(guī)則
在prometheus安裝目錄下的定義的rules目錄下(如果rules目錄不存在)創(chuàng)建文件 alarm_rule.yml
groups: - name: hostStatsAlert rules: - alert: hostCpuUsageAlert expr: (1- avg(irate(node_cpu_seconds_total{instance=~"$node",mode="idle"}[30m])))*100>85 for: 1m labels: level: disaster #定義一個等級標(biāo)簽,用于altermanager 發(fā)送消息 annotations: summary: "實(shí)例 {{ $labels.instance }} CPU使用率過高" description: "{{ $labels.instance }} CPU 使用率大于 85% (當(dāng)前值為: {{ $value }})" - alert: hostMemUsageAlert expr: (1 - (node_memory_MemAvailable_bytes / (node_memory_MemTotal_bytes)))* 100>85 for: 1m labels: level: disaster annotations: summary: "實(shí)例 {{ $labels.instance }} 內(nèi)存使用率過高" description: "{{ $labels.instance }} 內(nèi)存使用率大于 85% (當(dāng)前的值: {{ $value }})" - alert: hostLoad expr: sum(node_load15) >= sum(count(node_cpu_seconds_total{mode='system'}) by (cpu)) and node_load1 > node_load5 and node_load5 > node_load15 for: 1m labels: level: disaster annotations: summary: "實(shí)例 {{ $labels.instance }} 15 分鐘負(fù)載過高" description: "{{ $labels.instance }} 15 分鐘負(fù)載大于其 cpu 核心數(shù) (當(dāng)前的值: {{ $value }})" - alert: hostUp expr: up{job="node"} == 0 for: 1m labels: level: disaster annotations: summary: "實(shí)例 {{ $labels.instance }} 不可達(dá)" description: "{{ $labels.instance }} 實(shí)例不可達(dá),請盡快解決"
1.下載安裝alertmanager
wget https://github.com/prometheus/alertmanager/releases/download/v0.21.0/alertmanager-0.21.0.linux-amd64.tar.gz tar -xf alertmanager-0.21.0.linux-amd64.tar.gz mv alertmanager-0.21.0.linux-amd64 /usr/local/alertmanager
2.注冊系統(tǒng)服務(wù)
cat > /usr/lib/systemd/system/alertmanager.service <<-'EOF' [Unit] Description=This is alertmanager After=network.target [Service] Type=simple ExecStart=/usr/local/alertmanager/alertmanager --config.file=/usr/local/alertmanager/alertmanager.yml --cluster.advertise-address=0.0.0.0:9093 Restart=on-failure [Install] WantedBy=multi-user.target EOF
3.設(shè)置開機(jī)自啟,啟動服務(wù)
systemctl daemon-reload && systemctl enable alertmanager.service && systemctl start alertmanager.service
alertmanager 基于郵件報警配置
alertmanager 主配置文件配置
global: smtp_smarthost: 'smtp.qq.com:465' smtp_from: '88888888@qq.com' # 告警發(fā)送到的郵箱 smtp_auth_username: '88888888@qq.com' smtp_auth_password: 'pqrbkxvnpogxbobw' # 郵箱開啟SMTP/pop3后的密碼 smtp_require_tls: falseroute: group_by: ["instance"] group_wait: 30s group_interval: 5m repeat_interval: 2h receiver: mail receivers: - name: 'mail' email_configs: - to: '88888888@qq.com' send_resolved: False
看完這篇文章,你們學(xué)會node_exporter的使用方法了嗎?如果還想學(xué)到更多技能或想了解更多相關(guān)內(nèi)容,歡迎關(guān)注創(chuàng)新互聯(lián)網(wǎng)站建設(shè)公司行業(yè)資訊頻道,感謝各位的閱讀!
另外有需要云服務(wù)器可以了解下創(chuàng)新互聯(lián)建站aaarwkj.com,海內(nèi)外云服務(wù)器15元起步,三天無理由+7*72小時售后在線,公司持有idc許可證,提供“云服務(wù)器、裸金屬服務(wù)器、高防服務(wù)器、香港服務(wù)器、美國服務(wù)器、虛擬主機(jī)、免備案服務(wù)器”等云主機(jī)租用服務(wù)以及企業(yè)上云的綜合解決方案,具有“安全穩(wěn)定、簡單易用、服務(wù)可用性高、性價比高”等特點(diǎn)與優(yōu)勢,專為企業(yè)上云打造定制,能夠滿足用戶豐富、多元化的應(yīng)用場景需求。
網(wǎng)站欄目:node_exporter的使用方法-創(chuàng)新互聯(lián)
本文來源:http://aaarwkj.com/article8/hsdip.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供App設(shè)計(jì)、網(wǎng)頁設(shè)計(jì)公司、用戶體驗(yàn)、標(biāo)簽優(yōu)化、做網(wǎng)站、定制網(wǎng)站
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請盡快告知,我們將會在第一時間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時需注明來源: 創(chuàng)新互聯(lián)
猜你還喜歡下面的內(nèi)容