Commit 84bc9730 authored by Fabian Reinartz's avatar Fabian Reinartz

Merge pull request #166 from mateusbraga/patch-1

Fix Apdex score example in Histograms page.
parents bf54fd18 ed051b19
......@@ -76,8 +76,8 @@ following expression yields the Apdex score for each job over the last
(
sum(rate(http_request_duration_seconds_bucket{le="0.3"}[5m])) by (job)
+
sum(rate(http_request_duration_seconds_bucket{le="1.2"}[5m])) by (job)
) / 2 / sum(rate(http_request_duration_seconds_count[5m])) by (job)
sum(rate(http_request_duration_seconds_bucket{le="1.2"}[5m])) by (job) / 2
) / sum(rate(http_request_duration_seconds_count[5m])) by (job)
## Quantiles
......
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