Commit ed051b19 authored by Mateus Braga's avatar Mateus Braga

Fix Apdex score example in Histograms page.

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