Some checks failed
Build SimApp / build (amd64) (push) Waiting to run
Build SimApp / build (arm64) (push) Waiting to run
CodeQL / Analyze (push) Waiting to run
Build & Push / build (push) Waiting to run
Run Gosec / Gosec (push) Waiting to run
Lint / golangci-lint (push) Waiting to run
Checks dependencies and mocks generation / Check go mod tidy (push) Waiting to run
Checks dependencies and mocks generation / Check up to date mocks (push) Waiting to run
System Tests / setup (push) Waiting to run
System Tests / test-system (push) Blocked by required conditions
System Tests / test-system-legacy (push) Blocked by required conditions
Tests / Code Coverage / split-test-files (push) Waiting to run
Tests / Code Coverage / tests (00) (push) Blocked by required conditions
Tests / Code Coverage / tests (01) (push) Blocked by required conditions
Tests / Code Coverage / tests (02) (push) Blocked by required conditions
Tests / Code Coverage / tests (03) (push) Blocked by required conditions
Tests / Code Coverage / test-integration (push) Waiting to run
Tests / Code Coverage / test-e2e (push) Waiting to run
Tests / Code Coverage / repo-analysis (push) Blocked by required conditions
Tests / Code Coverage / test-sim-nondeterminism (push) Waiting to run
Tests / Code Coverage / test-clientv2 (push) Waiting to run
Tests / Code Coverage / test-core (push) Waiting to run
Tests / Code Coverage / test-depinject (push) Waiting to run
Tests / Code Coverage / test-errors (push) Waiting to run
Tests / Code Coverage / test-math (push) Waiting to run
Tests / Code Coverage / test-schema (push) Waiting to run
Tests / Code Coverage / test-collections (push) Waiting to run
Tests / Code Coverage / test-cosmovisor (push) Waiting to run
Tests / Code Coverage / test-confix (push) Waiting to run
Tests / Code Coverage / test-store (push) Waiting to run
Tests / Code Coverage / test-log (push) Waiting to run
Tests / Code Coverage / test-x-tx (push) Waiting to run
Tests / Code Coverage / test-x-nft (push) Waiting to run
Tests / Code Coverage / test-x-circuit (push) Waiting to run
Tests / Code Coverage / test-x-feegrant (push) Waiting to run
Tests / Code Coverage / test-x-evidence (push) Waiting to run
Tests / Code Coverage / test-x-upgrade (push) Waiting to run
Tests / Code Coverage / test-tools-benchmark (push) Waiting to run
Build & Push SDK Proto Builder / build (push) Has been cancelled
109 lines
2.9 KiB
Go
109 lines
2.9 KiB
Go
package telemetry
|
|
|
|
import (
|
|
"time"
|
|
|
|
"github.com/hashicorp/go-metrics"
|
|
)
|
|
|
|
// Common metric key constants
|
|
const (
|
|
MetricKeyPreBlocker = "pre_blocker"
|
|
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) {
|
|
if !IsTelemetryEnabled() {
|
|
return
|
|
}
|
|
|
|
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) {
|
|
if !IsTelemetryEnabled() {
|
|
return
|
|
}
|
|
|
|
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) {
|
|
if !IsTelemetryEnabled() {
|
|
return
|
|
}
|
|
|
|
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) {
|
|
if !IsTelemetryEnabled() {
|
|
return
|
|
}
|
|
|
|
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) {
|
|
if !IsTelemetryEnabled() {
|
|
return
|
|
}
|
|
|
|
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) {
|
|
if !IsTelemetryEnabled() {
|
|
return
|
|
}
|
|
|
|
metrics.SetGaugeWithLabels(keys, val, append(labels, globalLabels...))
|
|
}
|
|
|
|
// MeasureSince provides a wrapper functionality for emitting a time measure
|
|
// metric with global labels (if any).
|
|
func MeasureSince(start time.Time, keys ...string) {
|
|
if !IsTelemetryEnabled() {
|
|
return
|
|
}
|
|
|
|
metrics.MeasureSinceWithLabels(keys, start.UTC(), globalLabels)
|
|
}
|
|
|
|
// Now return the current time if telemetry is enabled or a zero time if it's not
|
|
func Now() time.Time {
|
|
if !IsTelemetryEnabled() {
|
|
return time.Time{}
|
|
}
|
|
|
|
return time.Now()
|
|
}
|