001package org.avaje.metric.statistics;
002
003import org.avaje.metric.GaugeDoubleMetric;
004
005/**
006 * Statistics provided by the {@link GaugeDoubleMetric}.
007 *
008 */
009public interface GaugeDoubleStatistics extends MetricStatistics {
010
011  /**
012   * Return the time the counter started statistics collection.
013   */
014  long getStartTime();
015
016  /**
017   * Return the count of values collected.
018   */
019  double getValue();
020}