Commit 13e8751c authored by Michael Stapelberg's avatar Michael Stapelberg Committed by Michael Stapelberg

Document the scrape_duration_seconds timeseries

parent f481bd80
...@@ -30,7 +30,12 @@ depends on the `honor_labels` configuration option. See the ...@@ -30,7 +30,12 @@ depends on the `honor_labels` configuration option. See the
[scrape configuration documentation](/docs/operating/configuration/#scrape-configurations-scrape_config) [scrape configuration documentation](/docs/operating/configuration/#scrape-configurations-scrape_config)
for more information. for more information.
For each instance scrape, Prometheus stores a sample of the form For each instance scrape, Prometheus stores a sample in the following
`up{job="<job-name>", instance="<instance-id>"}` with a value of `1` if the time series:
instance was scraped successfully or a value of `0` if the scrape failed. This
time series is useful for instance availability monitoring. * `up{job="<job-name>", instance="<instance-id>"}`: `1` if the instance is
healthy, i.e. reachable, or `0` if the scrape failed.
* `scrape_duration_seconds{job="<job-name>", instance="<instance-id>"}`:
duration of the scrape.
The `up` time series is useful for instance availability monitoring.
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment