From 9f63a0907e7fc72ef464f019f09104ce6ae5659e Mon Sep 17 00:00:00 2001 From: Bogdan Drutu Date: Wed, 17 Mar 2021 10:24:23 -0700 Subject: [PATCH] Remove unspecified semantic convention (#2712) Signed-off-by: Bogdan Drutu --- translator/conventions/trace.go | 8 -------- 1 file changed, 8 deletions(-) diff --git a/translator/conventions/trace.go b/translator/conventions/trace.go index df146ff255e..5f3aa1e6c70 100644 --- a/translator/conventions/trace.go +++ b/translator/conventions/trace.go @@ -17,7 +17,6 @@ package conventions // OpenTelemetry Semantic Convention values for general Span attribute names. // See: https://github.com/open-telemetry/opentelemetry-specification/blob/main/specification/trace/semantic_conventions/span-general.md const ( - AttributeComponent = "component" AttributeEnduserID = "enduser.id" AttributeEnduserRole = "enduser.role" AttributeEnduserScope = "enduser.scope" @@ -30,10 +29,3 @@ const ( AttributeNetTransport = "net.transport" AttributePeerService = "peer.service" ) - -// OpenTelemetry Semantic Convention values for component attribute values. -// Possibly being removed due to issue #336 -const ( - ComponentTypeHTTP = "http" - ComponentTypeGRPC = "grpc" -)