Skip to content

Commit

Permalink
Fix open telemetry attribute names
Browse files Browse the repository at this point in the history
Fixes a few attribute names that were using qgl instead of gql.

Signed-off-by: hasheddan <georgedanielmangum@gmail.com>
  • Loading branch information
hasheddan committed Sep 3, 2021
1 parent 151c10e commit b4711e4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions internal/opentelemetry/attrs.go
Original file line number Diff line number Diff line change
Expand Up @@ -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")
Expand Down

0 comments on commit b4711e4

Please sign in to comment.