promerheus 的scheme配置类型
时间: 2024-01-29 14:04:55 浏览: 163
prometheus架构图.png
Prometheus 的配置文件采用 YAML 格式,其中包括以下几种类型的配置:
1. global:全局配置,定义了全局的配置项,例如 scrape_interval、scrape_timeout 等等。
2. scrape_config:抓取配置,定义了需要抓取的目标和相应的参数,例如 job_name、metrics_path、relabel_configs 等等。
3. alerting:告警配置,定义了告警规则和发送告警通知的方式,例如 alertmanager_url、route 等等。
4. rule_files:规则配置,指定了 Prometheus 读取的规则文件路径,例如 /etc/prometheus/rules/*.rules。
5. remote_write:远程写入配置,用于将 Prometheus 的数据推送到远端存储中,例如使用 Grafana Loki 进行日志存储。
6. remote_read:远程读取配置,用于从远端存储中读取数据。
7. scrape_interval:抓取间隔配置,定义了抓取的时间间隔,默认为 1 分钟。
8. scrape_timeout:抓取超时配置,定义了抓取的超时时间,默认为 10 秒。
以上是 Prometheus 配置文件中常用的几种配置类型。
阅读全文