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) double
epsilon
Allowed error.(package private) double
quantile
Quantile.(package private) double
u
Helper used in the error function f(), see definition 5 in the paper.(package private) double
v
Helper 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.String
toString()
-
-
-
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.
-
-