From 65c2b67b898a0c40f75c683e3439243707140bb2 Mon Sep 17 00:00:00 2001 From: Tyler Yahn Date: Tue, 13 Apr 2021 09:48:52 -0700 Subject: [PATCH] Remove the abandoned Process struct in Jaeger exporter Use of this struct was removed in #1776. --- exporters/trace/jaeger/jaeger.go | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/exporters/trace/jaeger/jaeger.go b/exporters/trace/jaeger/jaeger.go index 43a6d9f5f80..f397fd9d820 100644 --- a/exporters/trace/jaeger/jaeger.go +++ b/exporters/trace/jaeger/jaeger.go @@ -175,16 +175,6 @@ func InstallNewPipeline(endpointOption EndpointOption, opts ...Option) (func(), return flushFn, nil } -// Process contains the information exported to jaeger about the source -// of the trace data. -type Process struct { - // ServiceName is the Jaeger service name. - ServiceName string - - // Tags are added to Jaeger Process exports - Tags []attribute.KeyValue -} - // Exporter is an implementation of an OTel SpanSyncer that uploads spans to // Jaeger. type Exporter struct {