安装包下载
Prometheus下载地址:https://prometheus.io/download/
windows_exporter下载:https://github.com/prometheus-community/windows_exporter/releases
grafana下载: https://grafana.com/grafana/download?platform=windows
管理员运行windows_exporter-0.19.0-amd64.exe
成功后访问 http://localhost:9182/
点击Metrics
修改prometheus 配置文件prometheus.yml
文末增加如下内容, 连接windows_exporter 的metrics监控。
- job_name: "node_exporter"
scrape_interval: 5s
static_configs:
- targets: ["localhost:9182"]
访问http://localhost:9090/graph
这里的客户端应该就是我们去操作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查看界面
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