Interface Histogram

All Superinterfaces:
Metric
All Known Implementing Classes:
NoopHistogram

public interface Histogram extends Metric
A metric which measures the distribution of values.
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    update(int value)
    Adds a new value to the distribution.
    void
    update(long value)
    Adds a new value to the distribution.
  • Method Details

    • update

      void update(int value)
      Adds a new value to the distribution.
      Parameters:
      value - The value to add
    • update

      void update(long value)
      Adds a new value to the distribution.
      Parameters:
      value - The value to add