snowflake/broker/metrics.go
2016-09-20 06:28:11 -07:00

17 lines
270 B
Go

package snowflake_broker
import (
// "golang.org/x/net/internal/timeseries"
"time"
)
// Implements Observable
type Metrics struct {
// snowflakes timeseries.Float
clientRoundtripEstimate time.Duration
}
func NewMetrics() *Metrics {
m := new(Metrics)
return m
}