com.twitter.ostrich.stats

Histogram

class Histogram extends AnyRef

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. Histogram
  2. AnyRef
  3. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Instance Constructors

  1. new Histogram()

Value Members

  1. final def !=(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  2. final def !=(arg0: Any): Boolean

    Definition Classes
    Any
  3. final def ##(): Int

    Definition Classes
    AnyRef → Any
  4. def -(other: Histogram): Histogram

  5. final def ==(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  6. final def ==(arg0: Any): Boolean

    Definition Classes
    Any
  7. def add(n: Int): Long

  8. def addToBucket(index: Int): Unit

    Adds a value directly to a bucket in a histogram.

    Adds a value directly to a bucket in a histogram. Can be used for performance reasons when modifying the histogram object from within a synchronized block.

    index

    the index of the bucket. Should be obtained from a value by calling Histogram.bucketIndex(n) on the value.

  9. def apply(): Distribution

    Get an immutable snapshot of this histogram.

  10. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  11. val buckets: Array[Long]

  12. def clear(): Unit

  13. def clone(): Histogram

    Definition Classes
    Histogram → AnyRef
  14. var count: Long

  15. final def eq(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  16. def equals(other: Any): Boolean

    Definition Classes
    Histogram → AnyRef → Any
  17. def finalize(): Unit

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  18. def get(reset: Boolean): List[Long]

  19. final def getClass(): Class[_]

    Definition Classes
    AnyRef → Any
  20. def getPercentile(percentile: Double): Int

    Percentile within 5%, but: 0 if no values Int.

    Percentile within 5%, but: 0 if no values Int.MaxValue if percentile is out of range

  21. def hashCode(): Int

    Definition Classes
    AnyRef → Any
  22. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  23. def maximum: Int

    Maximum value within 5%, but: 0 if no values Int.

    Maximum value within 5%, but: 0 if no values Int.MaxValue if any value is infinity

  24. def merge(other: Histogram): Unit

  25. def midpoint(index: Int): Int

    Attributes
    protected
  26. def minimum: Int

    Minimum value within error %, but: 0 if no values Int.

    Minimum value within error %, but: 0 if no values Int.MaxValue if all values are infinity

  27. final def ne(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  28. final def notify(): Unit

    Definition Classes
    AnyRef
  29. final def notifyAll(): Unit

    Definition Classes
    AnyRef
  30. val numBuckets: Int

  31. var sum: Long

  32. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  33. def toString(): String

    Definition Classes
    Histogram → AnyRef → Any
  34. final def wait(): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  35. final def wait(arg0: Long, arg1: Int): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  36. final def wait(arg0: Long): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from AnyRef

Inherited from Any

Ungrouped