001package org.avaje.metric; 002 003import org.avaje.metric.statistics.MetricStatistics; 004 005import java.util.List; 006 007/** 008 * Supplier of additional metrics that should be included in reporting. 009 */ 010public interface MetricSupplier { 011 012 /** 013 * Return extra metrics that should be included in metrics reporting. 014 */ 015 List<MetricStatistics> collectMetrics(); 016}