feat: OpenTelemetry configuration and BaseApp instrumentation (#25516)

Co-authored-by: Tyler <48813565+technicallyty@users.noreply.github.com>
Co-authored-by: Alex | Cosmos Labs <alex@cosmoslabs.io>
This commit is contained in:
Aaron Craelius
2025-12-10 23:15:18 +00:00
committed by GitHub
co-authored by Tyler Alex | Cosmos Labs
parent a15ac0b28d
commit f2d4a98039
64 changed files with 1644 additions and 179 deletions
+2 -2
View File
@@ -7,8 +7,8 @@ import (
)
func (k Keeper) BeginBlocker(ctx sdk.Context) error {
start := telemetry.Now()
defer telemetry.ModuleMeasureSince(types.ModuleName, start, telemetry.MetricKeyBeginBlocker)
start := telemetry.Now() //nolint:staticcheck // TODO: switch to OpenTelemetry
defer telemetry.ModuleMeasureSince(types.ModuleName, start, telemetry.MetricKeyBeginBlocker) //nolint:staticcheck // TODO: switch to OpenTelemetry
params, err := k.Params.Get(ctx)
if err != nil {