Can anyone help me with visualising a prometheus histogram as both a chart and apdex please?
Ignoring any secondary labelling (for now) I'd just like to be able to visualise them as a histogram on Grafana (stacked bar chart is fine) and it would be really useful to also show the apdex in grafana.
Examples of the buckets from the prometheus web console
someoperation_duration_seconds_bucket{
labelOne="some_consistent_label",
exported_instance="foo",
exported_job="my_job",
instance="10.0.0.0:9091",
job="kubernetes-service-endpoints",
kubernetes_name="prometheus-push-gateway",
kubernetes_namespace="monitoring",
le="+Inf",
labelTwo="some_label_that_changes1"
}
someoperation_duration_seconds_bucket{
labelOne="some_consistent_label",
exported_instance="foo",
exported_job="my_job",
instance="10.0.0.0:9091",
job="kubernetes-service-endpoints",
kubernetes_name="prometheus-push-gateway",
kubernetes_namespace="monitoring",
le="120",
labelTwo="some_label_that_changes1"
} etc etc
I've viewed this post how can I visualize a histogram with promdash or grafana and got the chart showing as a stacked bar with the series being the 'le' (bucket) values however the value for the Y axis for each bucket has exactly the same value.
Because of the nature of the operation the metrics are collected via a PushGateway. Not sure if that has an impact.
Many thanks all