从 github 中下载安装包到本地路径:
Releases · prometheus-community/windows_exporter (github.com)
后台运行方式windows_exporter,进入命令提示符执行以下命令:
> powershell -Command "Start-Process D:\windows_exporter\windows_exporter-0.25.1-amd64 -WindowStyle Hidden"
查看是否有监听端口(9182)
> netstat -ano | findstr "9182"TCP 0.0.0.0:9182 0.0.0.0:0 LISTENING 18236TCP [::]:9182 [::]:0 LISTENING 18236
检查9182端口是否有暴露指标
> curl localhost:9182/metrics
停止进程
列出主机所有进程
> tasklist | findstr "windows_exporter"
windows_exporter-0.25.1-a 18236 Console 4 44,364 Kkill 掉进程
>tskill 18236查看是否还有这个进程
> tasklist | findstr "windows_exporter"