prometheus+grafana监控linux

Posted 小黄鸡1992

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了prometheus+grafana监控linux相关的知识,希望对你有一定的参考价值。


在prometheus监控linux过程中,需要向linux中打入探针,通过探针获取linux信息,并通过接口输出。下文将讲述如何监控linux。

1.下载

为了各位小伙伴方便,这里提供了一波下载地址,如果模板不是特别满意,也可以去官网自行下载。

node-exporter_rev17 (展示面板)
链接:https://pan.baidu.com/s/1d1Aogy6PkFu2wkW-ArsXsw
提取码:0ajw

node-exporter
链接:https://pan.baidu.com/s/1o3y2ciTqEszDByokfMU_Xw
提取码:wf1x

2.配置被监控服务器

因为需要监控linux服务器,所以需要在被监控的linux必须安装node-exporter。

1.解压

node-exporter默认端口为9100

tar -xvf node_exporter-0.17.0.linux-amd64.tar.gz -C /usr/local/

2.启动

cd /usr/local/node_exporter-0.17.0.linux-amd64
nohup ./node_exporter

3.设置prometheus

进入/usr/local/prometheus-2.17.1.linux-amd64/prometheus.yml,添加prometheus.yml 红框部分。

  - job_name: 'linux'
    static_configs:
    - targets: ['localhost:9100']
      labels:
        instance: linux

4.配置grafana

输入grafana可视化页面地址:ip:3000。

1.配置数据源 (prometheus地址:ip:9090)



上图填写你prometheus地址,端口切记填写9090,点击save后,如果失败会有提示 。

2.可视化界面模板


选择上文配置好的数据源,prometheus选项就是上文配置的数据源。

3.验证

出现以下显示则表示成功。

也可以去Dashboards | Grafana Labs 下载自己需要的面板

以上是关于prometheus+grafana监控linux的主要内容,如果未能解决你的问题,请参考以下文章

prometheus+grafana监控linux

linux Prometheus+Grafana监控服务器性能

prometheus+grafana监控linux

prometheus+grafana简介与linux下的安装

Prometheus+Grafana监控Linux与Windows资源

Grafana+Prometheus+Node_exporter监控Linux系统