windows服务器搭建普罗米修斯Prometheus和Grafana监控系统(傻瓜式安装)
Prometheus(由go语言(golang)开发)+Grafana是一套开源的监控&报警&时间序列数据库的组合,适合监控docker容器和Windows服务器
一、Prometheus 软件下载
1.安装普罗米修斯监控
Prometheus(由go语言(golang)开发)是一套开源的监控&报警&时间序列数据库的组合,适合监控docker容器和Windows服务器
下载并解压:prometheus-2.51.2.windows-amd64.zip
https://prometheus.io/download/
双击运行文件 prometheus.exe,会弹出如下cmd窗口,先不要关闭!不然访问不到
打开浏览器,访问 http://localhost:9090/targets
2.配置windows资源采集器
下载并解压:windows_exporter
https://github.com/prometheus-community/windows_exporter/releases
以管理员身份运行windows_exporter-0.25.1-amd64
浏览器访问 http://localhost:9182/metrics
创建服务,以管理员身份启动cmd,输入以下命令(请注意修改 binpath):
sc create windows_exporter binpath= C:\Users\Administrator\Desktop\prometheus\windows_exporter-0.25.1-amd64.exe type= own start= auto displayname= windows_exporter
打开服务启动即可
请注意!打开服务时,如果遇到如下错误(是因为在上面的步骤:配置windows资源采集器的第2步运行了windows_exporter-0.25.1-amd64,关闭该cmd窗口再运行)
在prometheus.yml同级目录新建windows.yml
- targets: ["127.0.0.1:9182"]
labels:
instance: 127.0.0.1
serverName: '本地windows服务器'
prometheus.yml中添加如下内容 (注意缩进)
- job_name: "windows"
file_sd_configs:
- refresh_interval: 15s
files:
- ".\\windows.yml"
关闭并重启 prometheus.exe cmd窗口
打开 http://localhost:9090/targets,查看 windows状态为up即成功
二、Grafana 配置
下载
https://grafana.com/grafana/download?platform=windows
解压 grafana-enterprise-10.4.0.windows-amd64.zip,解压后双击bin目录下 grafana-server.exe,弹出如下cmd窗口,不要关闭!
打开浏览器,访问 http://localhost:3000(账号密码默认是admin,首次登录要改新的密码)
(第一次访问端口可能会被占用,先关闭占用端口的应用程序)
登录成功,进入界面
创建数据源,关联 prometheus
选择 Prometheus
输入 URL,其他默认即可
保存成功
三、选择 Grafana 模板
https://grafana.com/grafana/dashboards/
Download JSON(下载JSON模板文件到本地)
打开浏览器,访问 http://localhost:3000/dashboards,点击 Create Dashboard
点击 Import dashboard
导入下载的JSON模板文件,点击 Import
至此,监控系统配置完成
好啦,windows服务器搭建普罗米修斯Prometheus和Grafana监控本地系统就大功告成,下一篇讲述,如何在本地搭建Prometheus和Grafana监控远程服务器。
更多推荐
所有评论(0)