From 1611dedcc93248c5a318190754974b1e6814224c Mon Sep 17 00:00:00 2001 From: Scott Anderson Date: Wed, 28 Jul 2021 10:35:47 -0600 Subject: [PATCH] hotfix: fix prometheus formatted metrics link --- content/influxdb/v2.0/query-data/flux/histograms.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/influxdb/v2.0/query-data/flux/histograms.md b/content/influxdb/v2.0/query-data/flux/histograms.md index ba104fc5b..89c36b2d9 100644 --- a/content/influxdb/v2.0/query-data/flux/histograms.md +++ b/content/influxdb/v2.0/query-data/flux/histograms.md @@ -193,7 +193,7 @@ and `severity` as the **Group By** option: ### Use Prometheus histograms in Flux -Use InfluxDB and Telegraf to monitor a service instrumented with an endpoint that outputs [prometheus-formatted metrics](/influxdb/v2.0/write-data/no-code/scrape-data/scrapable-endpoints/). This example demonstrates how to use Telegraf to scrape metrics from the InfluxDB 2.0 OSS `/metrics` endpoint at regular intervals (10s by default), and then store those metrics in InfluxDB. +Use InfluxDB and Telegraf to monitor a service instrumented with an endpoint that outputs [prometheus-formatted metrics](https://prometheus.io/docs/concepts/data_model/). This example demonstrates how to use Telegraf to scrape metrics from the InfluxDB 2.0 OSS `/metrics` endpoint at regular intervals (10s by default), and then store those metrics in InfluxDB. Use Prometheus histograms to measure the distribution of a variable, for example, the time it takes a server to respond to a request. Prometheus represents histograms as many sets of buckets (notably, different from an InfluxDB bucket). Each unique set of labels corresponds to one set of buckets; within that set, each bucket is labeled with an upper bound.