mirror of
https://github.com/tendermint/tendermint.git
synced 2026-02-08 04:50:16 +00:00
12 lines
278 B
Go
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
|
|
}
|