Windows安装Prometheus+grafana+windows_exporter

鲁文昌
2023-12-01

Windows 安装Prometheus+grafana+windows_exporter

  • 记录自己的学习过程!

1.安装前准备

安装包下载

Prometheus下载地址https://prometheus.io/download/

windows_exporter下载https://github.com/prometheus-community/windows_exporter/releases

grafana下载https://grafana.com/grafana/download?platform=windows

2.启动

启动windows_exporter

​ 管理员运行windows_exporter-0.19.0-amd64.exe

​ 成功后访问 http://localhost:9182/

​ 点击Metrics

修改prometheus配置文件

​ 修改prometheus 配置文件prometheus.yml

​ 文末增加如下内容, 连接windows_exporter 的metrics监控。

  - job_name: "node_exporter"
    scrape_interval: 5s
    static_configs:
        - targets: ["localhost:9182"]

启动prometheus.exe

访问http://localhost:9090/graph

启动grafana

这里的客户端应该就是我们去操作grafana-server的一些服务吧。grafana-server就是我们的web端,双击打开即可。

随后打开浏览器输入http://localhost:3000即可进入grafana

初始的登陆账户和密码是:admin/admin

随后便会要求设置初始密码。

grafana页面基本如下。

左侧Configuration->Data sources-> add data source->Prometheus-> 修改URL 为localhost:9090 -> save & test ->done!

点击Dashboards->点击 Prometheus 2.0 Status查看界面

grafana可以修改仪表盘样式

dashboards网址:https://grafana.com/grafana/dashboards

左侧点击dashboards->import-> 选择网址上下载的文件或者 -> 选择数据源 -> save ! -> DONE

遇到的问题

1.Prometheus启动闪退

Prometheus.exe闪退问题的原因是:

yml文件格式错误(缩进问题或者key-value 格式问题)

参考https://www.cnblogs.com/hasz/p/12051834.html

 类似资料: