From 0278bd2103249b86fc8210caf1164b917a71bdf4 Mon Sep 17 00:00:00 2001 From: hasheddan Date: Fri, 3 Sep 2021 12:14:21 -0400 Subject: [PATCH] Fix open telemetry attribute names Fixes a few attribute names that were using qgl instead of gql. Signed-off-by: hasheddan --- internal/opentelemetry/attrs.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/internal/opentelemetry/attrs.go b/internal/opentelemetry/attrs.go index 45c1a10..d44c59b 100644 --- a/internal/opentelemetry/attrs.go +++ b/internal/opentelemetry/attrs.go @@ -19,10 +19,10 @@ import ( ) const ( - operation = attribute.Key("crossplane.io/qgl-operation") + operation = attribute.Key("crossplane.io/gql-operation") object = attribute.Key("crossplane.io/gql-object") field = attribute.Key("crossplane.io/gql-field") - success = attribute.Key("crossplane.io/qgl-success") + success = attribute.Key("crossplane.io/gql-success") query = attribute.Key("crossplane.io/gql-query") path = attribute.Key("crossplane.io/gql-path") alias = attribute.Key("crossplane.io/gql-alias")