使用Prometheus监控Linux系统各项指标
首先在Linux系统上安装一个探测器node explorer, 下载地址https://prometheus.io/docs/guides/node-exporter/
这个探测器会定期将linux系统的各项硬件指标和内核参数通过9100端口和url metrics暴露给外部。
启动node explorer,显示在9100端口上监听:
浏览器里输入hostname:9100/metrics就可以访问到node explorer收集到的各项参数:
一些例子:
CPU在不同工作模式下的使用时间:node_cpu_seconds_total
文件系统可用字节数:node_filesystem_avail_bytes
网卡收到的字节数:node_network_receive_bytes_total
下面用Prometheus来收集和展示通过node explorer暴露出来的数据。
在Prometheus安装目录的prometheus.yml文件里定义一个job,指向Linux系统上运行的node explorer:
本地启动Prometheus,打开下面的url:
http://localhost:9090/
输入node_cpu_seconds_total{mode=“system”},查询该服务器上所有CPU工作在系统态消耗的时间:
还可以指定时间窗口,只查询过去1分钟之内的CPU运行数据:
rate(node_cpu_seconds_total{mode=“system”}[1m])
- 点赞
- 收藏
- 关注作者
评论(0)