Files
tendermint/scripts/metricsgen/testdata/basic/metrics.go
2022-05-09 18:22:22 -04:00

12 lines
278 B
Go

package basic
import "github.com/go-kit/kit/metrics"
//go:generate go run ../../../../scripts/metricsgen -struct=Metrics
// Metrics contains metrics exposed by this package.
type Metrics struct {
// simple metric that tracks the height of the chain.
Height metrics.Gauge
}