package watchdog import "time" type MetricsCollector interface { Collect() (*Metric, error) Timer() time.Duration }