Configure timer types for Prometheus
masterThe Prometheus reporter supports two types of timers via the TimerType enum:
SummaryTimerType: Reports into a Prometheus summary.HistogramTimerType: Reports into a Prometheus histogram (this is the default).
You can set the global default using Options.DefaultTimerType or specify a type per-metric using RegisterTimerOptions.
type TimerType int
const (
SummaryTimerType TimerType = iota
HistogramTimerType
)