liunx 基礎(chǔ)資源監(jiān)控使用 exporter
讓客戶滿意是我們工作的目標(biāo),不斷超越客戶的期望值來自于我們對這個行業(yè)的熱愛。我們立志把好的技術(shù)通過有效、簡單的方式提供給客戶,將通過不懈努力成為客戶在信息化領(lǐng)域值得信任、有價值的長期合作伙伴,公司提供的服務(wù)項目有:域名注冊、網(wǎng)絡(luò)空間、營銷軟件、網(wǎng)站建設(shè)、競秀網(wǎng)站維護、網(wǎng)站推廣。
什么是exporter
exporter 是一個采集監(jiān)控數(shù)據(jù)并通過 prometheus 監(jiān)控對外提供數(shù)據(jù)的組件,exporter 主要通過被監(jiān)控對象提供的監(jiān)控相關(guān)接口獲取監(jiān)控數(shù)據(jù)
安裝部署
wget https://github.com/prometheus/node_exporter/releases/download/v0.18.1/node_exporter-0.18.1.linux-amd64.tar.gz
安裝到對應(yīng)目錄
制作標(biāo)準(zhǔn)啟動服務(wù)
cat /etc/systemd/system/node_exporter.service
[Unit]
Description=node_export
[Service]
ExecStart=/op/xxx/node_export
[Install]
WantedBy=multi-user.target
啟動
systemctl enable node_exporter.service
systemctl start node_exporter.service
在prometheus server 添加主機信息
scrape_configs:
# The job name is added as a label `job=` to any timeseries scraped from this config.
- job_name: 'shanghai'
static_configs:
- targets: ['x.x.x.x:9090']
relabel_configs:
- action: replace
source_labels: ['job']
regex: (.*)
replacement: $1
target_label: idc
- job_name: 'node1'
static_configs:
- targets: ['x.x.x.x:9100']
重啟prometheus 或者重載配置文件 kill -hup $pid
查看監(jiān)控是否生效
exporter 常見的監(jiān)控項
node_disk 磁盤
node_cpu cpu
node_memory 內(nèi)存
node_network 網(wǎng)絡(luò)
node_load1 系統(tǒng)負載
常用查詢語句
cpu 使用率
100 - (avg by (instance) (irate(node_cpu{instance="xxx:9100", mode="idle"}[5m])) * 100)
機器平均負載
網(wǎng)卡接收
sum(rate(node_network_receive_bytes_total{instance="xxx:9100",job="server",device!="lo"}[5m]))
網(wǎng)卡出量
sum(rate(node_network_transmit_bytes{instance="xxx:9100",job="server",device!="lo"}[5m]))
系統(tǒng)負載
node_load1{instance="xxx:9100"} // 1分鐘負載
node_load5{instance="xxx:9100"} // 5分鐘負載
node_load15{instance="xxx:9100"} // 15分鐘負載
內(nèi)存使用率
round((node_memory_MemTotal_bytes-(node_memory_MemFree_bytes+node_memory_Buffers_bytes+node_memory_Cached_bytes))/node_memory_MemTotal_bytes * 100)