Prometheus 配置文件 prometheus.yml 简介

Prometheus 配置文件 prometheus.yml 是 Prometheus 服务的配置文件,它描述了 Prometheus 服务的行为。它有助于 Prometheus 服务正确地收集和处理监控数据。在 Prometheus 服务启动时,它会从配置文件中读取配置信息,以确定 Prometheus 服务如何工作。

Prometheus 配置文件 prometheus.yml 格式

Prometheus 配置文件 prometheus.yml 是一个 YAML 文件,它有自己的语法格式,用户可以根据自己的需要来配置 Prometheus 服务。它是一个多层结构的文件,每一层都代表了一个配置参数,用户可以根据自己的需要来配置这些参数。

Prometheus 配置文件 prometheus.yml 示例

下面是一个 Prometheus 配置文件 prometheus.yml 的示例:

global:scrape_interval:     15s # By default, scrape targets every 15 seconds.evaluation_interval: 15s # By default, scrape targets every 15 seconds.# scrape_timeout is set to the global default (10s).scrape_configs:- job_name: 'prometheus'static_configs:- targets: ['localhost:9090']- job_name: 'node_exporter'static_configs:- targets: ['localhost:9100']
YAML

其中,global 节点用于配置全局参数,scrape_configs 节点用于配置抓取目标的参数,job_name 用于配置抓取目标的任务名,targets 用于配置抓取目标的地址。