HTTP API

在 Prometheus 服务的/api/v1下可以访问当前稳定的 HTTP API。任何不间断的添加都将添加到该端点下。

格式概述

API 响应格式为 JSON。每个成功的 API 请求都会返回 2xx 状态码。

到达 API 处理程序的无效请求会返回 JSON 错误对象和以下 HTTP 状态码之一:

  • 400 Bad Request: 参数丢失或不正确
  • 422 Unprocessable Entity: 表达式无法被执行(RFC4918)
  • 503 Service Unavailable: 查询超时或中止

对于到达 API 端点之前发生的错误,可能返回其它非2xx状态码。

如果存在不会阻止请求执行的错误,则可能会返回一系列警告。成功收集的所有数据都将在 data 字段中返回。

JSON 响应格式封装如下:

  1. {
  2. "status": "success" | "error",
  3. "data": <data>,
  4. // 仅在 status 为 "error" 时设置。data 字段可能仍包含其他数据。
  5. "errorType": "<string>",
  6. "error": "<string>",
  7. // 仅在执行请求时有警告。data 字段可能仍包含其他数据。
  8. "warnings": ["<string>"]
  9. }

输入时间戳可以以 RFC3339 格式提供,也可以以 Unix 时间戳(以秒为单位)提供,可选的小数位用于亚秒级精度。输出时间戳始终以秒为单位表示为 Unix 时间戳。

可以重复的查询参数的名称以[]结尾。

<series_selector>占位符指的是 Prometheus 时间序列选择器,例如http_requests_totalhttp_requests_total{method=~"(GET|POST)"},且需要进行 URL 编码。

<duration> 占位符是指形式为[0-9]+[smhdwy]的 Prometheus 持续时间字符串。例如,5m 表示持续时间为 5 分钟。

<bool>占位符引用布尔值(字符串truefalse)。

表达式查询

查询语言表达式可以获取单个瞬间或一段时间的值。以下各节介绍了每种类型的表达式的查询的 API 端点。

瞬时查询

以下端点可以在单个时间点计算即时查询:

  1. GET /api/v1/query
  2. POST /api/v1/query

URL 查询参数:

  • query=<string>: Prometheus 表达式查询字符串
  • time=<rfc3339 | unix_timestamp>: 评估时间戳。可选的
  • timeout=<duration>: 评估的超时时间。可选的。默认值为-query.timeou标志设定值

如果省略time参数,则使用当前服务器时间。

您可以使用POST方法和Content-Type: application/x-www-form-urlencoded请求头直接在请求正文中对这些参数进行 URL 编码。当指定一个可能违反服务器端 URL 字符限制的大型查询时,此功能很有用。

查询结果的data部分具有如下格式:

  1. {
  2. "resultType": "matrix" | "vector" | "scalar" | "string",
  3. "result": <value>
  4. }

<value>表示查询结果数据,其格式取决于resultType。查看表达式查询结果格式

以下示例在2015-07-01T20:10:51.781Z时间计算表达式up

  1. $ curl 'http://localhost:9090/api/v1/query?query=up&time=2015-07-01T20:10:51.781Z'
  2. {
  3. "status" : "success",
  4. "data" : {
  5. "resultType" : "vector",
  6. "result" : [
  7. {
  8. "metric" : {
  9. "__name__" : "up",
  10. "job" : "prometheus",
  11. "instance" : "localhost:9090"
  12. },
  13. "value": [ 1435781451.781, "1" ]
  14. },
  15. {
  16. "metric" : {
  17. "__name__" : "up",
  18. "job" : "node",
  19. "instance" : "localhost:9100"
  20. },
  21. "value" : [ 1435781451.781, "0" ]
  22. }
  23. ]
  24. }
  25. }

范围查询

以下端点可以在一段时间内评估表达式查询:

  1. GET /api/v1/query_range
  2. POST /api/v1/query_range

URL 查询参数:

  • query=<string>: Prometheus 表达式查询字符串
  • start=<rfc3339 | unix_timestamp>: 开始时间戳。
  • end=<rfc3339 | unix_timestamp>: 结束时间戳
  • step=<duration | float>: 以持续时间格式或浮点秒数为分辨率步长进行查询
  • timeout=<duration>: 评估的超时时间。可选的。默认值为-query.timeou标志设定值

您可以使用POST方法和Content-Type: application/x-www-form-urlencoded请求头直接在请求正文中对这些参数进行 URL 编码。当指定一个可能违反服务器端 URL 字符限制的大型查询时,此功能很有用。

查询结果的data部分具有如下格式:

  1. {
  2. "resultType": "matrix",
  3. "result": <value>
  4. }

有关<value>占位符的格式,请参见范围向量结果格式

下面的示例在 30 秒范围内以 15 秒的查询分辨率对表达式up进行求值:

  1. $ curl 'http://localhost:9090/api/v1/query_range?query=up&start=2015-07-01T20:10:30.781Z&end=2015-07-01T20:11:00.781Z&step=15s'
  2. {
  3. "status" : "success",
  4. "data" : {
  5. "resultType" : "matrix",
  6. "result" : [
  7. {
  8. "metric" : {
  9. "__name__" : "up",
  10. "job" : "prometheus",
  11. "instance" : "localhost:9090"
  12. },
  13. "values" : [
  14. [ 1435781430.781, "1" ],
  15. [ 1435781445.781, "1" ],
  16. [ 1435781460.781, "1" ]
  17. ]
  18. },
  19. {
  20. "metric" : {
  21. "__name__" : "up",
  22. "job" : "node",
  23. "instance" : "localhost:9091"
  24. },
  25. "values" : [
  26. [ 1435781430.781, "0" ],
  27. [ 1435781445.781, "0" ],
  28. [ 1435781460.781, "1" ]
  29. ]
  30. }
  31. ]
  32. }
  33. }

查询元数据

通过标签匹配器查找序列

以下端点返回与某个标签集匹配的时间序列列表。

  1. GET /api/v1/series
  2. POST /api/v1/series

URL 查询参数

  • match[]=<series_selector>: 重复的序列选择器参数,用于选择要返回的序列。必须至少提供一个match []参数。
  • start=<rfc3339 | unix_timestamp>: 开始时间戳。
  • end=<rfc3339 | unix_timestamp>: 结束时间戳。

您可以使用POST方法和Content-Type: application/x-www-form-urlencoded请求头直接在请求正文中对这些参数进行 URL 编码。当指定一个可能违反服务器端 URL 字符限制的大型查询时,此功能很有用。

查询结果的data部分有一个对象列表组成,这些对象包含标识每个序列的标签名称/值对。

以下示例返回与upprocess_start_time_seconds{job="prometheus"}匹配的所有序列:

  1. $ curl -g 'http://localhost:9090/api/v1/series?' --data-urlencode 'match[]=up' --data-urlencode 'match[]=process_start_time_seconds{job="prometheus"}'
  2. {
  3. "status" : "success",
  4. "data" : [
  5. {
  6. "__name__" : "up",
  7. "job" : "prometheus",
  8. "instance" : "localhost:9090"
  9. },
  10. {
  11. "__name__" : "up",
  12. "job" : "node",
  13. "instance" : "localhost:9091"
  14. },
  15. {
  16. "__name__" : "process_start_time_seconds",
  17. "job" : "prometheus",
  18. "instance" : "localhost:9090"
  19. }
  20. ]
  21. }

获取标签名称

下面的端点返回标签名称的列表

  1. GET /api/v1/labels
  2. POST /api/v1/labels

JSON 响应的data部分是字符串标签名称的列表

以下是一个示例:

  1. $ curl 'localhost:9090/api/v1/labels'
  2. {
  3. "status": "success",
  4. "data": [
  5. "__name__",
  6. "call",
  7. "code",
  8. "config",
  9. "dialer_name",
  10. "endpoint",
  11. "event",
  12. "goversion",
  13. "handler",
  14. "instance",
  15. "interval",
  16. "job",
  17. "le",
  18. "listener_name",
  19. "name",
  20. "quantile",
  21. "reason",
  22. "role",
  23. "scrape_job",
  24. "slice",
  25. "version"
  26. ]
  27. }

查询标签值

以下端点返回给定标签名称的标签值的列表

  1. GET /api/v1/label/<label_name>/values

JSON 响应的data部分是字符串标签值的列表

以下是查询job标签的所有标签值的示例:

  1. $ curl http://localhost:9090/api/v1/label/job/values
  2. {
  3. "status" : "success",
  4. "data" : [
  5. "node",
  6. "prometheus"
  7. ]
  8. }

表达查询结果格式

表达式查询可能在result属性的data部分返回以下响应值。<sample_value>占位符是数字样本值。JSON不支持NaN, Inf-Inf等特殊的浮点值,因此<sample_value>将作为带引号的 JSON 字符串而不是原始数字进行传输。

范围向量

范围向量结果作为matrix结果类型返回。相应的result属性具有如下格式:

  1. [
  2. {
  3. "metric": { "<label_name>": "<label_value>", ... },
  4. "values": [ [ <unix_time>, "<sample_value>" ], ... ]
  5. },
  6. ...
  7. ]

即时向量

即时向量结果作为vector结果类型返回。相应的result属性具有如下格式:

  1. [
  2. {
  3. "metric": { "<label_name>": "<label_value>", ... },
  4. "value": [ <unix_time>, "<sample_value>" ]
  5. },
  6. ...
  7. ]

标量

标量结果作为scalar结果类型返回。相应的result属性具有如下格式:

  1. [ <unix_time>, "<scalar_value>" ]

字符串

字符串结果作为string结果类型返回。相应的result属性具有如下格式:

  1. [ <unix_time>, "<string_value>" ]

目标

以下端点返回 Prometheus 发现目标的当前状态概述:

  1. GET /api/v1/targets

默认情况下,活动或已删除的目标都是响应的一部分。labels表示重新标记发生后的标签集。discoveredLabels表示在重新标记发生之前在服务发现期间检索到的未修改标签。

  1. $ curl http://localhost:9090/api/v1/targets
  2. {
  3. "status": "success",
  4. "data": {
  5. "activeTargets": [
  6. {
  7. "discoveredLabels": {
  8. "__address__": "127.0.0.1:9090",
  9. "__metrics_path__": "/metrics",
  10. "__scheme__": "http",
  11. "job": "prometheus"
  12. },
  13. "labels": {
  14. "instance": "127.0.0.1:9090",
  15. "job": "prometheus"
  16. },
  17. "scrapePool": "prometheus",
  18. "scrapeUrl": "http://127.0.0.1:9090/metrics",
  19. "lastError": "",
  20. "lastScrape": "2017-01-17T15:07:44.723715405+01:00",
  21. "lastScrapeDuration": 0.050688943,
  22. "health": "up"
  23. }
  24. ],
  25. "droppedTargets": [
  26. {
  27. "discoveredLabels": {
  28. "__address__": "127.0.0.1:9100",
  29. "__metrics_path__": "/metrics",
  30. "__scheme__": "http",
  31. "job": "node"
  32. },
  33. }
  34. ]
  35. }
  36. }

state查询参数允许调用者按活动或已删除的目标进行过滤(例如:state=active, state=dropped, state=any)。请注意,对于已滤除的目标,仍然返回空数组。其它值将被忽略。

  1. $ curl 'http://localhost:9090/api/v1/targets?state=active'
  2. {
  3. "status": "success",
  4. "data": {
  5. "activeTargets": [
  6. {
  7. "discoveredLabels": {
  8. "__address__": "127.0.0.1:9090",
  9. "__metrics_path__": "/metrics",
  10. "__scheme__": "http",
  11. "job": "prometheus"
  12. },
  13. "labels": {
  14. "instance": "127.0.0.1:9090",
  15. "job": "prometheus"
  16. },
  17. "scrapePool": "prometheus",
  18. "scrapeUrl": "http://127.0.0.1:9090/metrics",
  19. "lastError": "",
  20. "lastScrape": "2017-01-17T15:07:44.723715405+01:00",
  21. "lastScrapeDuration": 50688943,
  22. "health": "up"
  23. }
  24. ],
  25. "droppedTargets": []
  26. }
  27. }

规则

/rules API 端点返回当前已加载的告警和记录规则的列表。此外,它还返回由 Prometheus 实例触发的当前活动的告警的每个警报规则。

由于/rules 端点相当新,它没有与总体 API v1 有相同的稳定性保证。

  1. GET /api/v1/rules

URL 查询参数:

  • type=alert|record: 仅返回告警规则(type=alert)或记录规则(type=record)。如果该参数不存在或为空,则不执行任何过滤。
  1. $ curl http://localhost:9090/api/v1/rules
  2. {
  3. "data": {
  4. "groups": [
  5. {
  6. "rules": [
  7. {
  8. "alerts": [
  9. {
  10. "activeAt": "2018-07-04T20:27:12.60602144+02:00",
  11. "annotations": {
  12. "summary": "High request latency"
  13. },
  14. "labels": {
  15. "alertname": "HighRequestLatency",
  16. "severity": "page"
  17. },
  18. "state": "firing",
  19. "value": "1e+00"
  20. }
  21. ],
  22. "annotations": {
  23. "summary": "High request latency"
  24. },
  25. "duration": 600,
  26. "health": "ok",
  27. "labels": {
  28. "severity": "page"
  29. },
  30. "name": "HighRequestLatency",
  31. "query": "job:request_latency_seconds:mean5m{job=\"myjob\"} > 0.5",
  32. "type": "alerting"
  33. },
  34. {
  35. "health": "ok",
  36. "name": "job:http_inprogress_requests:sum",
  37. "query": "sum(http_inprogress_requests) by (job)",
  38. "type": "recording"
  39. }
  40. ],
  41. "file": "/rules.yaml",
  42. "interval": 60,
  43. "name": "example"
  44. }
  45. ]
  46. },
  47. "status": "success"
  48. }

告警

/alerts端点返回所有活动告警的列表

由于/rules 端点相当新,它没有与总体 API v1 有相同的稳定性保证。

  1. GET /api/v1/rules
  1. $ curl http://localhost:9090/api/v1/alerts
  2. {
  3. "data": {
  4. "alerts": [
  5. {
  6. "activeAt": "2018-07-04T20:27:12.60602144+02:00",
  7. "annotations": {},
  8. "labels": {
  9. "alertname": "my-alert"
  10. },
  11. "state": "firing",
  12. "value": "1e+00"
  13. }
  14. ]
  15. },
  16. "status": "success"
  17. }

查询目标元数据

以下端点返回有关当前从目标中采集数据指标的元数据。这是实验性的,将来可能会改变。

  1. GET /api/v1/targets/metadata

URL 查询参数:

  • match_target=<label_selectors>: 通过标签集匹配目标的标签选择器。如果保留为空,则选择所有目标。
  • metric=<string>: 要为其检索的元数据的度量名称。如果保留为空,则选择所有目标。
  • limit=<number>: 匹配的最大目标数量

查询结果的data部分由包含数据指标元数据和目标标签集的对象列表组成。

以下示例从前两个目标中返回带有job="prometheus"标签的go_goroutines数据指标的所有元数据条目:

  1. curl -G http://localhost:9091/api/v1/targets/metadata \
  2. --data-urlencode 'metric=go_goroutines' \
  3. --data-urlencode 'match_target={job="prometheus"}' \
  4. --data-urlencode 'limit=2'
  5. {
  6. "status": "success",
  7. "data": [
  8. {
  9. "target": {
  10. "instance": "127.0.0.1:9090",
  11. "job": "prometheus"
  12. },
  13. "type": "gauge",
  14. "help": "Number of goroutines that currently exist.",
  15. "unit": ""
  16. },
  17. {
  18. "target": {
  19. "instance": "127.0.0.1:9091",
  20. "job": "prometheus"
  21. },
  22. "type": "gauge",
  23. "help": "Number of goroutines that currently exist.",
  24. "unit": ""
  25. }
  26. ]
  27. }

如下示例返回带有instance="127.0.0.1:9090"标签的所有目标的所有指标的元数据:

  1. curl -G http://localhost:9091/api/v1/targets/metadata \
  2. --data-urlencode 'match_target={instance="127.0.0.1:9090"}'
  3. {
  4. "status": "success",
  5. "data": [
  6. // ...
  7. {
  8. "target": {
  9. "instance": "127.0.0.1:9090",
  10. "job": "prometheus"
  11. },
  12. "metric": "prometheus_treecache_zookeeper_failures_total",
  13. "type": "counter",
  14. "help": "The total number of ZooKeeper failures.",
  15. "unit": ""
  16. },
  17. {
  18. "target": {
  19. "instance": "127.0.0.1:9090",
  20. "job": "prometheus"
  21. },
  22. "metric": "prometheus_tsdb_reloads_total",
  23. "type": "counter",
  24. "help": "Number of times the database reloaded block data from disk.",
  25. "unit": ""
  26. },
  27. // ...
  28. ]
  29. }

查询数据指标元数据

它返回有关当前从目标中采集数据指标的元数据。但它不提供任何目标信息。这是实验性的,将来可能会改变

  1. GET /api/v1/metadata

URL 查询参数:

  • limit=<number>: 指标的最大返回数量
  • metric=<string>: 用于过滤元数据的数据指标文件。如果保留为空,则将检索所有指标元数据。

查询结果的data部分由键是数据指标名称,值都是唯一元数据对象的列表的对象组成,该数据指标名称在所有目标中都暴露。

以下示例返回两个数据指标。请注意,http_requests_total数据指标列表中有多个对象。至少一个目标的HELP值与其他目标不匹配

  1. curl -G http://localhost:9090/api/v1/metadata?limit=2
  2. {
  3. "status": "success",
  4. "data": {
  5. "cortex_ring_tokens": [
  6. {
  7. "type": "gauge",
  8. "help": "Number of tokens in the ring",
  9. "unit": ""
  10. }
  11. ],
  12. "http_requests_total": [
  13. {
  14. "type": "counter",
  15. "help": "Number of HTTP requests",
  16. "unit": ""
  17. },
  18. {
  19. "type": "counter",
  20. "help": "Amount of HTTP requests",
  21. "unit": ""
  22. }
  23. ]
  24. }
  25. }

如下示例仅返回指标http_requests_total的元数据:

  1. curl -G http://localhost:9090/api/v1/metadata?metric=http_requests_total
  2. {
  3. "status": "success",
  4. "data": {
  5. "http_requests_total": [
  6. {
  7. "type": "counter",
  8. "help": "Number of HTTP requests",
  9. "unit": ""
  10. },
  11. {
  12. "type": "counter",
  13. "help": "Amount of HTTP requests",
  14. "unit": ""
  15. }
  16. ]
  17. }
  18. }

Alertmanagers

以下端点返回发现的 Prometheus alertmanager 当前状态的概述:

  1. GET /api/v1/alertmanagers

响应包含状态为活动或已删除的 Alertmanagers。

  1. $ curl http://localhost:9090/api/v1/alertmanagers
  2. {
  3. "status": "success",
  4. "data": {
  5. "activeAlertmanagers": [
  6. {
  7. "url": "http://127.0.0.1:9090/api/v1/alerts"
  8. }
  9. ],
  10. "droppedAlertmanagers": [
  11. {
  12. "url": "http://127.0.0.1:9093/api/v1/alerts"
  13. }
  14. ]
  15. }
  16. }

状态

以下状态端点暴露了当前 Prometheus 的配置。

配置

以下端点返回当前加载的配置文件

  1. GET /api/v1/status/config

返回的配置作为转储的 YAML 文件返回。由于 YAML 库的限制,不包括 YAML 注释。

  1. $ curl http://localhost:9090/api/v1/status/config
  2. {
  3. "status": "success",
  4. "data": {
  5. "yaml": "<content of the loaded config file in YAML>",
  6. }
  7. }

标志位

以下端点返回已配置的 Prometheus 的标志位:

  1. GET /api/v1/status/flags

所有值均为string结果类型

  1. $ curl http://localhost:9090/api/v1/status/flags
  2. {
  3. "status": "success",
  4. "data": {
  5. "alertmanager.notification-queue-capacity": "10000",
  6. "alertmanager.timeout": "10s",
  7. "log.level": "info",
  8. "query.lookback-delta": "5m",
  9. "query.max-concurrency": "20",
  10. ...
  11. }
  12. }

v2.2 的新功能

运行时信息

以下端点返回有关 Prometheus 服务的各种运行时信息属性:

  1. GET /api/v1/status/runtimeinfo

返回值具有不同的类型,具体取决与运行时属性的性质。

  1. $ curl http://localhost:9090/api/v1/status/runtimeinfo
  2. {
  3. "status": "success",
  4. "data": {
  5. "startTime": "2019-11-02T17:23:59.301361365+01:00",
  6. "CWD": "/",
  7. "reloadConfigSuccess": true,
  8. "lastConfigTime": "2019-11-02T17:23:59+01:00",
  9. "chunkCount": 873,
  10. "timeSeriesCount": 873,
  11. "corruptionCount": 0,
  12. "goroutineCount": 48,
  13. "GOMAXPROCS": 4,
  14. "GOGC": "",
  15. "GODEBUG": "",
  16. "storageRetention": "15d"
  17. }
  18. }

warning 在 Prometheus 版本之间,返回的确切运行时属性可能会更改,恕不另行通知。

v2.14的新功能

构建信息

以下端点返回有关 Prometheus 服务的各种构建信息属性:

  1. GET /api/v1/status/buildinfo

所有值都是string结果类型

  1. $ curl http://localhost:9090/api/v1/status/buildinfo
  2. {
  3. "status": "success",
  4. "data": {
  5. "version": "2.13.1",
  6. "revision": "cb7cbad5f9a2823a622aaa668833ca04f50a0ea7",
  7. "branch": "master",
  8. "buildUser": "julius@desktop",
  9. "buildDate": "20191102-16:19:59",
  10. "goVersion": "go1.13.1"
  11. }
  12. }

warning 在 Prometheus 版本之间,返回的确切运行时属性可能会更改,恕不另行通知。

v2.14的新功能

TSDB 状态

以下端点返回有关 Prometheus TSDB 的各种基数统计信息:

  1. GET /api/v1/status/tsdb
  • seriesCountByMetricName: 这将提供指标名称及其序列计数的列表。
  • labelValueCountByLabelName: 这将提供标签名称及其值计数的列表。
  • memoryInBytesByLabelName: 这将提供标签名称和以字节为单位使用的内存的列表。内存使用量是通过将给定标签名称的所有值的长度相加得出的。
  • seriesCountByLabelPair: 这将提供标签值对及其系列计数的列表。

    1. $ curl http://localhost:9090/api/v1/status/tsdb
    2. {
    3. "status": "success",
    4. "data": {
    5. "seriesCountByMetricName": [
    6. {
    7. "name": "net_conntrack_dialer_conn_failed_total",
    8. "value": 20
    9. },
    10. {
    11. "name": "prometheus_http_request_duration_seconds_bucket",
    12. "value": 20
    13. }
    14. ],
    15. "labelValueCountByLabelName": [
    16. {
    17. "name": "__name__",
    18. "value": 211
    19. },
    20. {
    21. "name": "event",
    22. "value": 3
    23. }
    24. ],
    25. "memoryInBytesByLabelName": [
    26. {
    27. "name": "__name__",
    28. "value": 8266
    29. },
    30. {
    31. "name": "instance",
    32. "value": 28
    33. }
    34. ],
    35. "seriesCountByLabelValuePair": [
    36. {
    37. "name": "job=prometheus",
    38. "value": 425
    39. },
    40. {
    41. "name": "instance=localhost:9090",
    42. "value": 425
    43. }
    44. ]
    45. }
    46. }

    v2.15 的新功能

TSDB 管理 API

这些 API 为高级用户提供了数据库功能。除非设置了--web.enable-admin-api,否则不会启用这些 API。

我们还暴露了一个 gRPC API,其定义可以在此处找到。 这是实验性的,将来可能会改变。

快照

Snapshot 将所有当前数据的快照创建到 TSDB 数据目录下的snapshots/<datetime>-<rand>,并返回该目录作为响应。它可以选择跳过仅存在于起始块中并且尚未压缩到磁盘的快照数据。

  1. POST /api/v1/admin/tsdb/snapshot
  2. PUT /api/v1/admin/tsdb/snapshot

URL 查询参数:

  • skip_head=<bool>: 跳过起始块中存在的数据。可选的。

    1. $ curl -XPOST http://localhost:9090/api/v1/admin/tsdb/snapshot
    2. {
    3. "status": "success",
    4. "data": {
    5. "name": "20171210T211224Z-2be650b6d019eb54"
    6. }
    7. }

    快照保存在<data-dir>/snapshots/20171210T211224Z-2be650b6d019eb54

v2.1 的新功能,从 v2.9 开始支持 PUT

删除序列

DeleteSeries 删除一个时间范围内选定序列的数据。实际数据仍然存在于磁盘上,并在以后的压缩中进行清理,或者可以通过访问 Clean Tombstones 端点进行显式清理。

如果成功,响应状态码为204

  1. POST /api/v1/admin/tsdb/delete_series
  2. PUT /api/v1/admin/tsdb/delete_series

URL 查询参数:

  • match[]=<series_selector>: 重复的标签匹配器参数,用于选择要删除的序列。必须至少提供一个match[]参数
  • start=<rfc3339 | unix_timestamp>: 开始时间戳。可选,默认为所有序列时间范围内的最小时间。
  • end=<rfc3339 | unix_timestamp>: 结束时间戳。可选,默认为所有序列时间范围内的最大时间。

示例:

  1. $ curl -X POST \
  2. -g 'http://localhost:9090/api/v1/admin/tsdb/delete_series?match[]=up&match[]=process_start_time_seconds{job="prometheus"}'

v2.1 的新功能,从 v2.9 开始支持 PUT

Clean Tombstones

CleanTombstones 从磁盘上删除已逻辑删除的数据,并清理现有的逻辑删除。删除序列后可以使用它来释放空间。

如果成功,响应状态码为204

  1. POST /api/v1/admin/tsdb/clean_tombstones
  2. PUT /api/v1/admin/tsdb/clean_tombstones

该动作不带参数或请求体。

  1. $ curl -XPOST http://localhost:9090/api/v1/admin/tsdb/clean_tombstones

v2.1 的新功能,从 v2.9 开始支持 PUT