如何部署Prometheus?
1.下载和解压缩Prometheus Server
从https://prometheus.io/download/下载适合您系统的Prometheus Server压缩包。将下载的文件解压缩到您选择的目录中。
2.配置Prometheus Server
打开prometheus.yml文件,这是Prometheus Server的配置文件。您可以使用文本编辑器来打开和编辑这个文件。
global:
scrape_interval: 15s
evaluation_interval: 15s
#在这个示例中,Prometheus Server每隔5秒钟从localhost:9090上的自身采集数据。
scrape_configs:
- job_name: 'prometheus'
scrape_interval: 5s
static_configs:
- targets: ['localhost:9090']
3.启动Prometheus
./prometheus &
4.访问Prometheus Web界面
打开浏览器,访问http://localhost:9090。这是Prometheus Server的Web界面。您可以使用这个界面来查询、可视化和导出指标数据。在Prometheus Web界面上,您可以使用PromQL查询语言来查询和可视化指标数据。
标签:Web,部署,9090,prometheus,scrape,Server,---,Prometheus From: https://www.cnblogs.com/hujunwei/p/17379220.html