Class MetricData


  • public abstract class MetricData
    extends Object
    • Constructor Detail

      • MetricData

        public MetricData()
    • Method Detail

      • timeStamp

        public abstract Date timeStamp()
        The timestamp for the metric value in ISO 8601 format.
      • total

        @Nullable
        public abstract Double total()
        The average value in the time range
      • average

        @Nullable
        public abstract Double average()
        The sum of all of the values in the time range.
      • minimum

        @Nullable
        public abstract Double minimum()
        The least value in the time range.
      • maximum

        @Nullable
        public abstract Double maximum()
        The greatest value in the time range.
      • count

        @Nullable
        public abstract Long count()
        The number of samples in the time range.