mirror of
https://github.com/tendermint/tendermint.git
synced 2026-02-04 11:02:06 +00:00
10 lines
209 B
Go
10 lines
209 B
Go
package basic
|
|
|
|
import "github.com/go-kit/kit/metrics"
|
|
|
|
// Metrics contains metrics exposed by this package.
|
|
type Metrics struct {
|
|
// simple metric that tracks the height of the chain.
|
|
Height metrics.Gauge
|
|
}
|