mirror of
https://github.com/fluencelabs/tendermint
synced 2025-04-26 07:12:16 +00:00
18 lines
353 B
Go
18 lines
353 B
Go
|
package consensus
|
||
|
|
||
|
import "github.com/go-kit/kit/metrics"
|
||
|
import "github.com/go-kit/kit/metrics/discard"
|
||
|
|
||
|
// Metrics contains metrics exposed by this package.
|
||
|
type Metrics struct {
|
||
|
// height of the chain
|
||
|
Height metrics.Counter
|
||
|
}
|
||
|
|
||
|
// NopMetrics returns no-op Metrics.
|
||
|
func NopMetrics() *Metrics {
|
||
|
return &Metrics{
|
||
|
Height: discard.NewCounter(),
|
||
|
}
|
||
|
}
|