Commit 43914b8a authored by Brian Brazil's avatar Brian Brazil Committed by GitHub

Merge pull request #538 from tcolgate/master

Clarify the Apdex calculation.
parents 4979705f f5eb3abd
......@@ -63,7 +63,7 @@ a histogram called `http_request_duration_seconds`.
sum(rate(http_request_duration_seconds_count[5m])) by (job)
You can calculate the well-known [Apdex
You can approximate the well-known [Apdex
score](http://en.wikipedia.org/wiki/Apdex) in a similar way. Configure
a bucket with the target request duration as the upper bound and
another bucket with the tolerated request duration (usually 4 times
......@@ -84,6 +84,9 @@ buckets are
`le="0.3"` bucket is also contained in the `le="1.2"` bucket; dividing it by 2
corrects for that.
The calculation does not exactly match the traditional Apdex score, as it
includes errors in the satisified and tolerable parts of the calculation.
## Quantiles
You can use both summaries and histograms to calculate so-called φ-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