import ChangeLog from ‘../changelog/connector-prometheus.md’;
Prometheus source connector
Used to read data from Prometheus.
| name | type | required | default value |
|---|---|---|---|
| url | String | Yes | - |
| query | String | Yes | - |
| query_type | String | Yes | Instant |
| content_field | String | Yes | $.data.result.* |
| schema.fields | Config | Yes | - |
| format | String | No | json |
| params | Map | Yes | - |
| poll_interval_millis | int | No | - |
| retry | int | No | - |
| retry_backoff_multiplier_ms | int | No | 100 |
| retry_backoff_max_ms | int | No | 10000 |
| enable_multi_lines | boolean | No | false |
| common-options | config | No | - |
http request url
Prometheus expression query string
Instant/Range
https://prometheus.io/docs/prometheus/latest/querying/api/
http request params
request http api interval(millis) in stream mode
The max retry times if request http return to IOException
The retry-backoff times(millis) multiplier if request http failed
The maximum retry-backoff times(millis) if request http failed
the format of upstream data, default json.
Fill in a fixed value
schema = { fields { metric = "map<string, string>" value = double time = long } }
the schema fields of upstream data
Source plugin common parameters, please refer to Source Common Options for details
source { Prometheus { plugin_output = "http" url = "http://mockserver:1080" query = "up" query_type = "Instant" content_field = "$.data.result.*" format = "json" schema = { fields { metric = "map<string, string>" value = double time = long } } } }
source { Prometheus { plugin_output = "http" url = "http://mockserver:1080" query = "up" query_type = "Range" content_field = "$.data.result.*" format = "json" start = "2024-07-22T20:10:30.781Z" end = "2024-07-22T20:11:00.781Z" step = "15s" schema = { fields { metric = "map<string, string>" value = double time = long } } } }