Class CKMSQuantiles.Quantile

java.lang.Object
io.prometheus.client.CKMSQuantiles.Quantile
Enclosing class:
CKMSQuantiles

static class CKMSQuantiles.Quantile extends Object
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    (package private) final double
    Allowed error.
    (package private) final double
    Quantile.
    (package private) final double
    Helper used in the error function f(), see definition 5 in the paper.
    (package private) final double
    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

    Modifier and Type
    Method
    Description
     

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
  • Field Details

    • 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.
  • Constructor Details

    • Quantile

      Quantile(double quantile, double epsilon)
  • Method Details