Package io.prometheus.client
Class CKMSQuantiles.Quantile
- java.lang.Object
-
- io.prometheus.client.CKMSQuantiles.Quantile
-
- Enclosing class:
- CKMSQuantiles
static class CKMSQuantiles.Quantile extends java.lang.Object
-
-
Field Summary
Fields Modifier and Type Field Description (package private) doubleepsilonAllowed error.(package private) doublequantileQuantile.(package private) doubleuHelper used in the error function f(), see definition 5 in the paper.(package private) doublevHelper used in the error function f(), see definition 5 in the paper.
-
Constructor Summary
Constructors Constructor Description Quantile(double quantile, double epsilon)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringtoString()
-
-
-
Field Detail
-
quantile
final double quantile
Quantile. Must be between 0 and 1.
-
epsilon
final double epsilon
Allowed error. Must be between 0 and 1.
-
u
final double u
Helper used in the error function f(), see definition 5 in the paper.
-
v
final double v
Helper used in the error function f(), see definition 5 in the paper.
-
-