node_exporter 自定義監控
# cd node_exporter-1.0.1.linux-amd64/
# mkdir key
# touch height.sh
# cat height.sh
#!/bin/bash
height=`curl -X POST \
-H "Content-Type: application/json" \
-H "Authorization: Bearer $(cat /seal/lotus/token)" \
--data '{ "jsonrpc": "2.0", "method": "Filecoin.ChainHead", "params": [], "id": 1 }' \
'http://127.0.0.1:1234/rpc/v0' \
| jq .result.Height`
date +'%Y-%m-%d %H:%M:%S'
echo "height $height"
2020-12-25 21:41:01
height 353241
# crontab -l
* * * * * /bin/bash /root/node_exporter-1.0.1.linux-amd64/key/height.sh > /root/node_exporter-1.0.1.linux-amd64/key/key.prom
--collector.textfile.directory
vim /lib/systemd/system/node_exporter.service
# cat /lib/systemd/system/node_exporter.service
[Unit]
Description=node_exporter service
[Service]
User=root
ExecStart=/root/node_exporter-1.0.1.linux-amd64/node_exporter \
--collector.textfile.directory=/root/node_exporter-1.0.1.linux-amd64/key
TimeoutStopSec=10
Restart=on-failure
RestartSec=5
[Install]
WantedBy=multi-user.target
systemctl daemon-reload
systemctl restart node_exporter.service
- 獲取到
height
值
# curl http://localhost:9100/metrics | grep height
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0# HELP height Metric read from /root/node_exporter-1.0.1.linux-amd64/key/key.prom
# TYPE height untyped
height 355308
100 77348 0 77348 0 0 2288k 0 --:--:-- --:--:-- --:--:-- 2288k
參考:
相關文章
- 自定義監控項
- Prometheus Operator自定義監控項Prometheus
- zabbix_sender自定義監控
- cacti自定義監控指令碼指令碼
- 體驗監控寶自定義監控 送你《IT運維之道》運維
- 五、自定義Zabbix監控專案
- mysql監控:zabbix上自定義keyMySql
- 【Prometheus學習筆記】主機監控 -node_exporterPrometheus筆記Export
- 15.prometheus之pushgateway自定義監控PrometheusGateway
- 巧用Zabbix自定義監控Mysql效能狀態MySql
- 想在 KubeSphere 中進行自定義監控?來瞧瞧這
- 使用 Docker 安裝 Zabbix,並配置自定義監控項Docker
- 自定義帶監控的資料庫連線池資料庫
- Spring Boot 揭祕與實戰(九) 應用監控篇 – 自定義監控端點Spring Boot
- Spring Boot 揭祕與實戰(九) 應用監控篇 - 自定義監控端點Spring Boot
- Linux下Zabbix5.0 LTS新增自定義監控項Linux
- node-exporter 擴充套件用法 – shell 自定義 exporter 監控Export套件
- 分散式監控系統之Zabbix巨集、模板和自定義item分散式
- tinyVue(version:0.1.0)---支援computed屬性、watch監控,自定義指令Vue
- java 自定義監聽事件Java事件
- 簡單4步,利用Prometheus Operator實現自定義指標監控Prometheus指標
- 在 KubeSphere 中使用 APISIX Ingress 閘道器接入自定義監控API
- 基於 HTML5 的 WebGL 自定義 3D 攝像頭監控模型HTMLWeb3D模型
- 自定義View 實現多塔機監控類似星軌雷達掃描View
- 如何自定義中介軟體,實現業務程式碼無侵入監控及攔截
- WGCLOUD主機監測軟體的指令下發和自定義監控項有什麼區別GCCloud
- Springboot中自定義監聽器Spring Boot
- 配置node_exporterExport
- Oracle對儲存的監控及意義Oracle
- Prometheus 新增 node_exporterPrometheusExport
- Docker下Prometheus和Grafana三部曲之三:自定義監控項開發和配置DockerPrometheusGrafana
- 黑盒監控、日誌監控
- Mac自定義觸控欄 Touch Bar的顯示教程Mac
- 自定義View:自定義屬性(自定義按鈕實現)View
- 6.prometheus監控--監控dockerPrometheusDocker
- Oracle資料庫記憶體監控及意義Oracle資料庫記憶體
- TiDB監控實現--存活監控TiDB
- 聊聊前端監控——錯誤監控篇前端