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