Interface Histogram

All Known Implementing Classes:
NoopHistogram

@ExperimentalApi public interface Histogram
Histogram records the value for an existing metric.
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    record(double value)
    record value.
    void
    record(double value, Tags tags)
    record value along with the attributes.
  • Method Details

    • record

      void record(double value)
      record value.
      Parameters:
      value - value to be added.
    • record

      void record(double value, Tags tags)
      record value along with the attributes.
      Parameters:
      value - value to be added.
      tags - attributes/dimensions of the metric.