从 2.16.0 版本开始,Prometheus 能够将引擎运行的所有查询记录到日志文件中。本指南演示如何使用该日志文件,其中包含哪些字段,并提供有关如何操作日志文件的高级技巧。
查询日志可以在运行时切换。因此,当您想要调查 Prometheus 实例上的缓慢或高负载时,可以激活它。
要启用或禁用查询日志,需要两个步骤
此示例演示如何将所有查询记录到名为 /prometheus/query.log
的文件中。 我们假设 /prometheus
是数据目录,并且 Prometheus 对其具有写入权限。
首先,修改 prometheus.yml
配置文件
global:
scrape_interval: 15s
evaluation_interval: 15s
query_log_file: /prometheus/query.log
scrape_configs:
- job_name: 'prometheus'
static_configs:
- targets: ['localhost:9090']
然后,重新加载 Prometheus 配置
$ curl -X POST http://127.0.0.1:9090/-/reload
或者,如果 Prometheus 不是使用 --web.enable-lifecycle
启动的,并且您不是在 Windows 上运行,则可以通过向 Prometheus 进程发送 SIGHUP 来触发重新加载。
文件 /prometheus/query.log
现在应该存在,并且所有查询都将记录到该文件中。
要禁用查询日志,请重复该操作,但从配置中删除 query_log_file
。
Prometheus 方便地公开了指标,指示是否启用并正在运行查询日志
# HELP prometheus_engine_query_log_enabled State of the query log.
# TYPE prometheus_engine_query_log_enabled gauge
prometheus_engine_query_log_enabled 0
# HELP prometheus_engine_query_log_failures_total The number of query log failures.
# TYPE prometheus_engine_query_log_failures_total counter
prometheus_engine_query_log_failures_total 0
第一个指标 prometheus_engine_query_log_enabled
,如果启用了查询日志则设置为 1,否则设置为 0。第二个指标 prometheus_engine_query_log_failures_total
,指示无法记录的查询数量。
查询日志是 JSON 格式的日志。以下是查询中存在的字段的概述
{
"params": {
"end": "2020-02-08T14:59:50.368Z",
"query": "up == 0",
"start": "2020-02-08T13:59:50.368Z",
"step": 5
},
"stats": {
"timings": {
"evalTotalTime": 0.000447452,
"execQueueTime": 7.599e-06,
"execTotalTime": 0.000461232,
"innerEvalTime": 0.000427033,
"queryPreparationTime": 1.4177e-05,
"resultSortTime": 6.48e-07
}
},
"ts": "2020-02-08T14:59:50.387Z"
}
params
:查询。 开始和结束时间戳,步长和实际查询语句。stats
:统计信息。 目前,它包含内部引擎计时器。ts
:查询结束时的时间戳。此外,根据触发请求的内容,您将在 JSON 行中找到其他字段。
HTTP 请求包含客户端 IP、方法和路径
{
"httpRequest": {
"clientIP": "127.0.0.1",
"method": "GET",
"path": "/api/v1/query_range"
}
}
如果设置了 web 前缀,则该路径将包含该前缀,并且还可以指向控制台。
客户端 IP 是网络 IP 地址,不考虑 X-Forwarded-For
等标头。 如果您希望记录代理后面的原始调用者,则需要在代理本身中执行此操作。
记录规则和告警包含一个 ruleGroup 元素,其中包含文件的路径和组的名称
{
"ruleGroup": {
"file": "rules.yml",
"name": "partners"
}
}
Prometheus 本身不会轮换查询日志。 相反,您可以使用外部工具来执行此操作。
其中一个工具是 logrotate。 它在大多数 Linux 发行版上默认启用。
这是一个您可以作为 /etc/logrotate.d/prometheus
添加的文件示例
/prometheus/query.log {
daily
rotate 7
compress
delaycompress
postrotate
killall -HUP prometheus
endscript
}
这将每天轮换您的文件并保留一周的历史记录。
本文档是开源的。 请通过提交问题或拉取请求来帮助改进它。