Class MetricData

java.lang.Object
org.jclouds.azurecompute.arm.domain.MetricData

public abstract class MetricData extends Object
  • Constructor Details

    • MetricData

      public MetricData()
  • Method Details

    • 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.
    • create

      public static MetricData create(Date timeStamp, Double total, Double average, Double minimum, Double maximum, Long count)