I added a prometheus Histogram with name retrieve_stripe_subscription_latency_ms
. From what I read, three metrics get generated from this. I am able see data when I enter the below in Grafana as is
- retrieve_stripe_subscription_latency_ms_count
- retrieve_stripe_subscription_latency_ms_sum
- retrieve_stripe_subscription_latency_ms_bucket
But when I plot using the below query in Grafana, I don't see any data
histogram_quantile(0.95, sum(rate(retrieve_stripe_subscription_latency_ms_bucket[5m])) by (le))
What could be wrong here?