Interface Distribution

All Superinterfaces:
Metric, Serializable
All Known Implementing Classes:
DelegatingDistribution, DistributionImpl

public interface Distribution extends Metric
A metric that reports information about the distribution of reported values.
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    update(long value)
    Add an observation to this distribution.
    void
    update(long sum, long count, long min, long max)
     

    Methods inherited from interface org.apache.beam.sdk.metrics.Metric

    getName
  • Method Details

    • update

      void update(long value)
      Add an observation to this distribution.
    • update

      void update(long sum, long count, long min, long max)