亲宝软件园·资讯

展开

Prometheus NodeExporter安装监控

LiberHome 人气:0

在mac下载安装prometheus

mac下安装Node Exporter

(NodeExporter是Prometheus提供的一个可以采集到主机信息的应用程序,它能采集到机器的 CPU、内存、磁盘等信息)

cd到目标目录,然后用命令下载二进制包

curl -OL https://github.com/prometheus/node_exporter/releases/download/v1.3.1/node_exporter-1.3.1.darwin-amd64.tar.gz

解压这个二进制包

tar -xzf node_exporter-1.3.1.darwin-amd64.tar.gz

进入&运行node exporter

cd node_exporter-1.3.1.darwin-amd64
cd ..
cp node_exporter-1.3.1.darwin-amd64/node_exporter /usr/local/bin/node_exporter

运行

cd ...
cd /usr/local/bin
./node_exporter

访问http://localhost:9100/看到

点击http://localhost:9100/metrics进去可以看到

# HELP node_cpu Seconds the cpus spent in each mode.
# TYPE node_cpu counter
node_cpu{cpu="cpu0",mode="idle"} 362812.7890625
# HELP node_load1 1m load average.
# TYPE node_load1 gauge
node_load1 3.0703125

数据说明

参考文档 https://yunlzheng.gitbook.io/prometheus-book/

加载全部内容

相关教程
猜你喜欢
用户评论