From 0370f6392ea1347d7a33f44cb48e426e684e4b86 Mon Sep 17 00:00:00 2001 From: jonny rhea Date: Fri, 2 Jan 2026 18:06:29 -0600 Subject: [PATCH] client.name now matches style of other attributes --- cmd/utils/otel.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/utils/otel.go b/cmd/utils/otel.go index 0b3f420cfe..f519296207 100644 --- a/cmd/utils/otel.go +++ b/cmd/utils/otel.go @@ -103,7 +103,7 @@ func SetupOTEL(ctx *cli.Context) (*otelService, error) { res := resource.NewWithAttributes( semconv.SchemaURL, semconv.ServiceName(serviceName), - attribute.String("ClientName", version.ClientName("geth")), + attribute.String("client.name", version.ClientName("geth")), ) // Create TracerProvider