You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is just an extract, there were exactly 50 entries when I counted them by piping to wc -l. The Prometheus exposition format specification states "Each line must have a unique combination of a metric name and labels. Otherwise, the ingestion behavior is undefined."
The text was updated successfully, but these errors were encountered:
Describe your environment Windows 10, VS 2019, Bazel 5.0.0
Steps to reproduce
bazel build :prometheus_example
from examples/prometheus..\..\bazel-bin\examples\prometheus\prometheus_example.exe histogram
curl localhost:8080/metrics
What is the expected behavior?
Output consistent with Prometheus histogram metrics specification:
prometheus_metric_example_sum
prometheus_metric_example_count
prometheus_metric_example_bucket
(0, 5, 10, etc. up to "+Inf")What is the actual behavior?
Many entries of each metric, often not with the same value even though the timestamp is the same. E.g.:
This is just an extract, there were exactly 50 entries when I counted them by piping to
wc -l
. The Prometheus exposition format specification states "Each line must have a unique combination of a metric name and labels. Otherwise, the ingestion behavior is undefined."The text was updated successfully, but these errors were encountered: