<!-- The default pull request template is for types feat, fix, or refactor. For other templates, add one of the following parameters to the url: - template=docs.md - template=other.md --> ## Description The draft PR #9222 Closes: #7108 <!-- Add a description of the changes that this PR introduces and the files that are the most critical to review. --> - implement proto definition for `Record` - rename `Info.go` to `legacyInfo.go` within `keyring` package - implement CLI `migrate` command that migrates all keys from legacyInfo to proto according to @robert-zaremba migration [algorithm](https://github.com/cosmos/cosmos-sdk/pull/9222/#discussion_r624683839) - remove legacy keybase entirely. - add `Migrate` and `MigrateAll` functions in `keyring.go` for single key and all keys migration - add tests - fix tests --- ### Author Checklist *All items are required. Please add a note to the item if the item is not applicable and please add links to any relevant follow up issues.* I have... - [ ] included the correct [type prefix](https://github.com/commitizen/conventional-commit-types/blob/v3.0.0/index.json) in the PR title - [ ] added `!` to the type prefix if API or client breaking change - [ ] targeted the correct branch (see [PR Targeting](https://github.com/cosmos/cosmos-sdk/blob/master/CONTRIBUTING.md#pr-targeting)) - [ ] provided a link to the relevant issue or specification - [ ] followed the guidelines for [building modules](https://github.com/cosmos/cosmos-sdk/blob/master/docs/building-modules) - [x] included the necessary unit and integration [tests](https://github.com/cosmos/cosmos-sdk/blob/master/CONTRIBUTING.md#testing) - [ ] added a changelog entry to `CHANGELOG.md` - [ ] included comments for [documenting Go code](https://blog.golang.org/godoc) - [ ] updated the relevant documentation or specification - [x] reviewed "Files changed" and left comments if necessary - [ ] confirmed all CI checks have passed ### Reviewers Checklist *All items are required. Please add a note if the item is not applicable and please add your handle next to the items reviewed if you only reviewed selected items.* I have... - [ ] confirmed the correct [type prefix](https://github.com/commitizen/conventional-commit-types/blob/v3.0.0/index.json) in the PR title - [ ] confirmed `!` in the type prefix if API or client breaking change - [ ] confirmed all author checklist items have been addressed - [ ] reviewed state machine logic - [ ] reviewed API design and naming - [ ] reviewed documentation is accurate - [ ] reviewed tests and test coverage - [ ] manually tested (if applicable)
72 lines
2.4 KiB
Go
72 lines
2.4 KiB
Go
package telemetry
|
|
|
|
import (
|
|
"time"
|
|
|
|
"github.com/armon/go-metrics"
|
|
)
|
|
|
|
// Common metric key constants
|
|
const (
|
|
MetricKeyBeginBlocker = "begin_blocker"
|
|
MetricKeyEndBlocker = "end_blocker"
|
|
MetricLabelNameModule = "module"
|
|
)
|
|
|
|
// NewLabel creates a new instance of Label with name and value
|
|
func NewLabel(name, value string) metrics.Label {
|
|
return metrics.Label{Name: name, Value: value}
|
|
}
|
|
|
|
// ModuleMeasureSince provides a short hand method for emitting a time measure
|
|
// metric for a module with a given set of keys. If any global labels are defined,
|
|
// they will be added to the module label.
|
|
func ModuleMeasureSince(module string, start time.Time, keys ...string) {
|
|
metrics.MeasureSinceWithLabels(
|
|
keys,
|
|
start.UTC(),
|
|
append([]metrics.Label{NewLabel(MetricLabelNameModule, module)}, globalLabels...),
|
|
)
|
|
}
|
|
|
|
// ModuleSetGauge provides a short hand method for emitting a gauge metric for a
|
|
// module with a given set of keys. If any global labels are defined, they will
|
|
// be added to the module label.
|
|
func ModuleSetGauge(module string, val float32, keys ...string) {
|
|
metrics.SetGaugeWithLabels(
|
|
keys,
|
|
val,
|
|
append([]metrics.Label{NewLabel(MetricLabelNameModule, module)}, globalLabels...),
|
|
)
|
|
}
|
|
|
|
// IncrCounter provides a wrapper functionality for emitting a counter metric with
|
|
// global labels (if any).
|
|
func IncrCounter(val float32, keys ...string) {
|
|
metrics.IncrCounterWithLabels(keys, val, globalLabels)
|
|
}
|
|
|
|
// IncrCounterWithLabels provides a wrapper functionality for emitting a counter
|
|
// metric with global labels (if any) along with the provided labels.
|
|
func IncrCounterWithLabels(keys []string, val float32, labels []metrics.Label) {
|
|
metrics.IncrCounterWithLabels(keys, val, append(labels, globalLabels...))
|
|
}
|
|
|
|
// SetGauge provides a wrapper functionality for emitting a gauge metric with
|
|
// global labels (if any).
|
|
func SetGauge(val float32, keys ...string) {
|
|
metrics.SetGaugeWithLabels(keys, val, globalLabels)
|
|
}
|
|
|
|
// SetGaugeWithLabels provides a wrapper functionality for emitting a gauge
|
|
// metric with global labels (if any) along with the provided labels.
|
|
func SetGaugeWithLabels(keys []string, val float32, labels []metrics.Label) {
|
|
metrics.SetGaugeWithLabels(keys, val, append(labels, globalLabels...))
|
|
}
|
|
|
|
// MeasureSince provides a wrapper functionality for emitting a a time measure
|
|
// metric with global labels (if any).
|
|
func MeasureSince(start time.Time, keys ...string) {
|
|
metrics.MeasureSinceWithLabels(keys, start.UTC(), globalLabels)
|
|
}
|