在Spring-Boot应用程序中配置prometheus.yml文件以收集Prometheus指标的步骤如下:
- 创建prometheus.yml文件:在Spring-Boot应用程序的根目录下创建一个名为prometheus.yml的文件。
- 配置targets:在prometheus.yml文件中,使用以下格式配置targets,指定要收集指标的Spring-Boot应用程序的地址和端口号:scrape_configs:
- job_name: 'spring-boot-app'
metrics_path: '/actuator/prometheus'
static_configs:
- targets: ['spring-boot-app:8080']这里的
spring-boot-app
是作业的名称,/actuator/prometheus
是Spring-Boot应用程序中默认的Prometheus指标路径,spring-boot-app:8080
是应用程序的地址和端口号。 - 启动Prometheus:启动Prometheus服务器,并将prometheus.yml文件作为配置文件传递给Prometheus。
- 访问Prometheus UI:在浏览器中访问Prometheus的UI界面,通常为http://localhost:9090。在查询输入框中输入指标名称,例如
http_server_requests_seconds_count
,然后点击Execute按钮,即可查看该指标的数据。