Skip to content

Commit 559835c

Browse files
authored
Change census-instrumentation to open-telemetry and update authors (#20)
* Change census-instrumentation to open-telemetry and update authors census-instrumentation/opencensus is now open-telemetry/opentelemetry "OpenCensus Authors" is now "OpenTelemetry Authors" "Copyright 2018" is now "Copyright 2019" Fix go fmt
1 parent b2f8cf7 commit 559835c

File tree

199 files changed

+579
-580
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

199 files changed

+579
-580
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# OpenTelemetry Service
22

33
*IMPORTANT:* This is a pre-released version of the OpenTelemetry Service.
4-
For now, please use the [OpenCensus Service](https://github.com/census-instrumentation/opencensus-service).
4+
For now, please use the [OpenCensus Service](https://github.com/open-telemetry/opentelemetry-service).
55

66
[![Build Status][travis-image]][travis-url]
77
[![GoDoc][godoc-image]][godoc-url]

cmd/ocagent/main.go

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2018, OpenCensus Authors
1+
// Copyright 2019, OpenTelemetry Authors
22
//
33
// Licensed under the Apache License, Version 2.0 (the "License");
44
// you may not use this file except in compliance with the License.
@@ -30,20 +30,20 @@ import (
3030
"go.uber.org/zap"
3131
"go.uber.org/zap/zapcore"
3232

33-
"github.com/census-instrumentation/opencensus-service/consumer"
34-
"github.com/census-instrumentation/opencensus-service/internal/config"
35-
"github.com/census-instrumentation/opencensus-service/internal/config/viperutils"
36-
"github.com/census-instrumentation/opencensus-service/internal/pprofserver"
37-
"github.com/census-instrumentation/opencensus-service/internal/version"
38-
"github.com/census-instrumentation/opencensus-service/internal/zpagesserver"
39-
"github.com/census-instrumentation/opencensus-service/observability"
40-
"github.com/census-instrumentation/opencensus-service/processor/multiconsumer"
41-
"github.com/census-instrumentation/opencensus-service/receiver/jaegerreceiver"
42-
"github.com/census-instrumentation/opencensus-service/receiver/opencensusreceiver"
43-
"github.com/census-instrumentation/opencensus-service/receiver/prometheusreceiver"
44-
"github.com/census-instrumentation/opencensus-service/receiver/vmmetricsreceiver"
45-
"github.com/census-instrumentation/opencensus-service/receiver/zipkinreceiver"
46-
"github.com/census-instrumentation/opencensus-service/receiver/zipkinreceiver/zipkinscribereceiver"
33+
"github.com/open-telemetry/opentelemetry-service/consumer"
34+
"github.com/open-telemetry/opentelemetry-service/internal/config"
35+
"github.com/open-telemetry/opentelemetry-service/internal/config/viperutils"
36+
"github.com/open-telemetry/opentelemetry-service/internal/pprofserver"
37+
"github.com/open-telemetry/opentelemetry-service/internal/version"
38+
"github.com/open-telemetry/opentelemetry-service/internal/zpagesserver"
39+
"github.com/open-telemetry/opentelemetry-service/observability"
40+
"github.com/open-telemetry/opentelemetry-service/processor/multiconsumer"
41+
"github.com/open-telemetry/opentelemetry-service/receiver/jaegerreceiver"
42+
"github.com/open-telemetry/opentelemetry-service/receiver/opencensusreceiver"
43+
"github.com/open-telemetry/opentelemetry-service/receiver/prometheusreceiver"
44+
"github.com/open-telemetry/opentelemetry-service/receiver/vmmetricsreceiver"
45+
"github.com/open-telemetry/opentelemetry-service/receiver/zipkinreceiver"
46+
"github.com/open-telemetry/opentelemetry-service/receiver/zipkinreceiver/zipkinscribereceiver"
4747
)
4848

4949
var rootCmd = &cobra.Command{

cmd/occollector/app/builder/builder.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2018, OpenCensus Authors
1+
// Copyright 2019, OpenTelemetry Authors
22
//
33
// Licensed under the Apache License, Version 2.0 (the "License");
44
// you may not use this file except in compliance with the License.
@@ -20,7 +20,7 @@ import (
2020
"strings"
2121
"time"
2222

23-
"github.com/census-instrumentation/opencensus-service/internal/config"
23+
"github.com/open-telemetry/opentelemetry-service/internal/config"
2424
"github.com/spf13/viper"
2525
)
2626

cmd/occollector/app/builder/builder_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2018, OpenCensus Authors
1+
// Copyright 2019, OpenTelemetry Authors
22
//
33
// Licensed under the Apache License, Version 2.0 (the "License");
44
// you may not use this file except in compliance with the License.

cmd/occollector/app/builder/doc.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2018, OpenCensus Authors
1+
// Copyright 2019, OpenTelemetry Authors
22
//
33
// Licensed under the Apache License, Version 2.0 (the "License");
44
// you may not use this file except in compliance with the License.

cmd/occollector/app/builder/exporters_builder.go

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2019, OpenCensus Authors
1+
// Copyright 2019, OpenTelemetry Authors
22
//
33
// Licensed under the Apache License, Version 2.0 (the "License");
44
// you may not use this file except in compliance with the License.
@@ -19,10 +19,10 @@ import (
1919

2020
"go.uber.org/zap"
2121

22-
"github.com/census-instrumentation/opencensus-service/consumer"
23-
"github.com/census-instrumentation/opencensus-service/internal"
24-
"github.com/census-instrumentation/opencensus-service/internal/configmodels"
25-
"github.com/census-instrumentation/opencensus-service/internal/factories"
22+
"github.com/open-telemetry/opentelemetry-service/consumer"
23+
"github.com/open-telemetry/opentelemetry-service/internal"
24+
"github.com/open-telemetry/opentelemetry-service/internal/configmodels"
25+
"github.com/open-telemetry/opentelemetry-service/internal/factories"
2626
)
2727

2828
// builtExporter is an exporter that is built based on a config. It can have

cmd/occollector/app/builder/exporters_builder_test.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2019, OpenCensus Authors
1+
// Copyright 2019, OpenTelemetry Authors
22
//
33
// Licensed under the Apache License, Version 2.0 (the "License");
44
// you may not use this file except in compliance with the License.
@@ -23,8 +23,8 @@ import (
2323
"github.com/stretchr/testify/assert"
2424
"github.com/stretchr/testify/require"
2525

26-
"github.com/census-instrumentation/opencensus-service/exporter/opencensusexporter"
27-
"github.com/census-instrumentation/opencensus-service/internal/configmodels"
26+
"github.com/open-telemetry/opentelemetry-service/exporter/opencensusexporter"
27+
"github.com/open-telemetry/opentelemetry-service/internal/configmodels"
2828
)
2929

3030
func TestExportersBuilder_Build(t *testing.T) {

cmd/occollector/app/builder/pipelines_builder.go

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2019, OpenCensus Authors
1+
// Copyright 2019, OpenTelemetry Authors
22
//
33
// Licensed under the Apache License, Version 2.0 (the "License");
44
// you may not use this file except in compliance with the License.
@@ -19,10 +19,10 @@ import (
1919

2020
"go.uber.org/zap"
2121

22-
"github.com/census-instrumentation/opencensus-service/consumer"
23-
"github.com/census-instrumentation/opencensus-service/internal/configmodels"
24-
"github.com/census-instrumentation/opencensus-service/internal/factories"
25-
"github.com/census-instrumentation/opencensus-service/processor/multiconsumer"
22+
"github.com/open-telemetry/opentelemetry-service/consumer"
23+
"github.com/open-telemetry/opentelemetry-service/internal/configmodels"
24+
"github.com/open-telemetry/opentelemetry-service/internal/factories"
25+
"github.com/open-telemetry/opentelemetry-service/processor/multiconsumer"
2626
)
2727

2828
// builtProcessor is a processor that is built based on a config.

cmd/occollector/app/builder/pipelines_builder_test.go

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2019, OpenCensus Authors
1+
// Copyright 2019, OpenTelemetry Authors
22
//
33
// Licensed under the Apache License, Version 2.0 (the "License");
44
// you may not use this file except in compliance with the License.
@@ -25,10 +25,10 @@ import (
2525

2626
tracepb "github.com/census-instrumentation/opencensus-proto/gen-go/trace/v1"
2727

28-
"github.com/census-instrumentation/opencensus-service/data"
29-
"github.com/census-instrumentation/opencensus-service/internal/configmodels"
30-
"github.com/census-instrumentation/opencensus-service/internal/configv2"
31-
"github.com/census-instrumentation/opencensus-service/processor/addattributesprocessor"
28+
"github.com/open-telemetry/opentelemetry-service/data"
29+
"github.com/open-telemetry/opentelemetry-service/internal/configmodels"
30+
"github.com/open-telemetry/opentelemetry-service/internal/configv2"
31+
"github.com/open-telemetry/opentelemetry-service/processor/addattributesprocessor"
3232
)
3333

3434
// Ensure attributes processor is registered.

cmd/occollector/app/builder/processor_builder.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2018, OpenCensus Authors
1+
// Copyright 2019, OpenTelemetry Authors
22
//
33
// Licensed under the Apache License, Version 2.0 (the "License");
44
// you may not use this file except in compliance with the License.
@@ -19,7 +19,7 @@ import (
1919

2020
"github.com/spf13/viper"
2121

22-
"github.com/census-instrumentation/opencensus-service/processor/attributekeyprocessor"
22+
"github.com/open-telemetry/opentelemetry-service/processor/attributekeyprocessor"
2323
)
2424

2525
// SenderType indicates the type of sender

cmd/occollector/app/builder/processor_builder_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2019, OpenCensus Authors
1+
// Copyright 2019, OpenTelemetry Authors
22
//
33
// Licensed under the Apache License, Version 2.0 (the "License");
44
// you may not use this file except in compliance with the License.
@@ -19,7 +19,7 @@ import (
1919

2020
"github.com/google/go-cmp/cmp"
2121

22-
"github.com/census-instrumentation/opencensus-service/processor/attributekeyprocessor"
22+
"github.com/open-telemetry/opentelemetry-service/processor/attributekeyprocessor"
2323
)
2424

2525
func TestGlobalProcessorCfg_InitFromViper(t *testing.T) {

cmd/occollector/app/builder/sampling_builder.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2019, OpenCensus Authors
1+
// Copyright 2019, OpenTelemetry Authors
22
//
33
// Licensed under the Apache License, Version 2.0 (the "License");
44
// you may not use this file except in compliance with the License.

cmd/occollector/app/collector/collector.go

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2018, OpenCensus Authors
1+
// Copyright 2019, OpenTelemetry Authors
22
//
33
// Licensed under the Apache License, Version 2.0 (the "License");
44
// you may not use this file except in compliance with the License.
@@ -28,13 +28,13 @@ import (
2828
"github.com/spf13/viper"
2929
"go.uber.org/zap"
3030

31-
"github.com/census-instrumentation/opencensus-service/cmd/occollector/app/builder"
32-
"github.com/census-instrumentation/opencensus-service/consumer"
33-
"github.com/census-instrumentation/opencensus-service/internal/config/viperutils"
34-
"github.com/census-instrumentation/opencensus-service/internal/configv2"
35-
"github.com/census-instrumentation/opencensus-service/internal/pprofserver"
36-
"github.com/census-instrumentation/opencensus-service/internal/zpagesserver"
37-
"github.com/census-instrumentation/opencensus-service/receiver"
31+
"github.com/open-telemetry/opentelemetry-service/cmd/occollector/app/builder"
32+
"github.com/open-telemetry/opentelemetry-service/consumer"
33+
"github.com/open-telemetry/opentelemetry-service/internal/config/viperutils"
34+
"github.com/open-telemetry/opentelemetry-service/internal/configv2"
35+
"github.com/open-telemetry/opentelemetry-service/internal/pprofserver"
36+
"github.com/open-telemetry/opentelemetry-service/internal/zpagesserver"
37+
"github.com/open-telemetry/opentelemetry-service/receiver"
3838
)
3939

4040
var (

cmd/occollector/app/collector/collector_test.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2019, OpenCensus Authors
1+
// Copyright 2019, OpenTelemetry Authors
22
//
33
// Licensed under the Apache License, Version 2.0 (the "License");
44
// you may not use this file except in compliance with the License.
@@ -20,9 +20,9 @@ import (
2020
"net/http"
2121
"testing"
2222

23-
"github.com/census-instrumentation/opencensus-service/internal/testutils"
23+
"github.com/open-telemetry/opentelemetry-service/internal/testutils"
2424

25-
"github.com/census-instrumentation/opencensus-service/internal/zpagesserver"
25+
"github.com/open-telemetry/opentelemetry-service/internal/zpagesserver"
2626
)
2727

2828
func TestApplication_Start(t *testing.T) {

cmd/occollector/app/collector/healthcheck.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2019, OpenCensus Authors
1+
// Copyright 2019, OpenTelemetry Authors
22
//
33
// Licensed under the Apache License, Version 2.0 (the "License");
44
// you may not use this file except in compliance with the License.

cmd/occollector/app/collector/logger.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2019, OpenCensus Authors
1+
// Copyright 2019, OpenTelemetry Authors
22
//
33
// Licensed under the Apache License, Version 2.0 (the "License");
44
// you may not use this file except in compliance with the License.

cmd/occollector/app/collector/processors.go

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2019, OpenCensus Authors
1+
// Copyright 2019, OpenTelemetry Authors
22
//
33
// Licensed under the Apache License, Version 2.0 (the "License");
44
// you may not use this file except in compliance with the License.
@@ -23,18 +23,18 @@ import (
2323
"github.com/spf13/viper"
2424
"go.uber.org/zap"
2525

26-
"github.com/census-instrumentation/opencensus-service/cmd/occollector/app/builder"
27-
"github.com/census-instrumentation/opencensus-service/cmd/occollector/app/sender"
28-
"github.com/census-instrumentation/opencensus-service/consumer"
29-
"github.com/census-instrumentation/opencensus-service/exporter/loggingexporter"
30-
"github.com/census-instrumentation/opencensus-service/internal/collector/processor/nodebatcher"
31-
"github.com/census-instrumentation/opencensus-service/internal/collector/processor/queued"
32-
"github.com/census-instrumentation/opencensus-service/internal/collector/processor/tailsampling"
33-
"github.com/census-instrumentation/opencensus-service/internal/collector/sampling"
34-
"github.com/census-instrumentation/opencensus-service/internal/config"
35-
"github.com/census-instrumentation/opencensus-service/processor/addattributesprocessor"
36-
"github.com/census-instrumentation/opencensus-service/processor/attributekeyprocessor"
37-
"github.com/census-instrumentation/opencensus-service/processor/multiconsumer"
26+
"github.com/open-telemetry/opentelemetry-service/cmd/occollector/app/builder"
27+
"github.com/open-telemetry/opentelemetry-service/cmd/occollector/app/sender"
28+
"github.com/open-telemetry/opentelemetry-service/consumer"
29+
"github.com/open-telemetry/opentelemetry-service/exporter/loggingexporter"
30+
"github.com/open-telemetry/opentelemetry-service/internal/collector/processor/nodebatcher"
31+
"github.com/open-telemetry/opentelemetry-service/internal/collector/processor/queued"
32+
"github.com/open-telemetry/opentelemetry-service/internal/collector/processor/tailsampling"
33+
"github.com/open-telemetry/opentelemetry-service/internal/collector/sampling"
34+
"github.com/open-telemetry/opentelemetry-service/internal/config"
35+
"github.com/open-telemetry/opentelemetry-service/processor/addattributesprocessor"
36+
"github.com/open-telemetry/opentelemetry-service/processor/attributekeyprocessor"
37+
"github.com/open-telemetry/opentelemetry-service/processor/multiconsumer"
3838
)
3939

4040
func createExporters(v *viper.Viper, logger *zap.Logger) ([]func(), []consumer.TraceConsumer, []consumer.MetricsConsumer) {

cmd/occollector/app/collector/processors_test.go

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2019, OpenCensus Authors
1+
// Copyright 2019, OpenTelemetry Authors
22
//
33
// Licensed under the Apache License, Version 2.0 (the "License");
44
// you may not use this file except in compliance with the License.
@@ -21,10 +21,10 @@ import (
2121
"github.com/spf13/viper"
2222
"go.uber.org/zap"
2323

24-
"github.com/census-instrumentation/opencensus-service/processor/addattributesprocessor"
25-
"github.com/census-instrumentation/opencensus-service/processor/attributekeyprocessor"
26-
"github.com/census-instrumentation/opencensus-service/processor/multiconsumer"
27-
"github.com/census-instrumentation/opencensus-service/processor/processortest"
24+
"github.com/open-telemetry/opentelemetry-service/processor/addattributesprocessor"
25+
"github.com/open-telemetry/opentelemetry-service/processor/attributekeyprocessor"
26+
"github.com/open-telemetry/opentelemetry-service/processor/multiconsumer"
27+
"github.com/open-telemetry/opentelemetry-service/processor/processortest"
2828
)
2929

3030
func Test_startProcessor(t *testing.T) {

cmd/occollector/app/collector/receivers.go

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2019, OpenCensus Authors
1+
// Copyright 2019, OpenTelemetry Authors
22
//
33
// Licensed under the Apache License, Version 2.0 (the "License");
44
// you may not use this file except in compliance with the License.
@@ -21,13 +21,13 @@ import (
2121
"github.com/spf13/viper"
2222
"go.uber.org/zap"
2323

24-
"github.com/census-instrumentation/opencensus-service/cmd/occollector/app/builder"
25-
"github.com/census-instrumentation/opencensus-service/consumer"
26-
jaegerreceiver "github.com/census-instrumentation/opencensus-service/internal/collector/jaeger"
27-
ocreceiver "github.com/census-instrumentation/opencensus-service/internal/collector/opencensus"
28-
zipkinreceiver "github.com/census-instrumentation/opencensus-service/internal/collector/zipkin"
29-
zipkinscribereceiver "github.com/census-instrumentation/opencensus-service/internal/collector/zipkin/scribe"
30-
"github.com/census-instrumentation/opencensus-service/receiver"
24+
"github.com/open-telemetry/opentelemetry-service/cmd/occollector/app/builder"
25+
"github.com/open-telemetry/opentelemetry-service/consumer"
26+
jaegerreceiver "github.com/open-telemetry/opentelemetry-service/internal/collector/jaeger"
27+
ocreceiver "github.com/open-telemetry/opentelemetry-service/internal/collector/opencensus"
28+
zipkinreceiver "github.com/open-telemetry/opentelemetry-service/internal/collector/zipkin"
29+
zipkinscribereceiver "github.com/open-telemetry/opentelemetry-service/internal/collector/zipkin/scribe"
30+
"github.com/open-telemetry/opentelemetry-service/receiver"
3131
)
3232

3333
func createReceivers(v *viper.Viper, logger *zap.Logger, traceConsumers consumer.TraceConsumer, asyncErrorChan chan<- error) []receiver.TraceReceiver {

cmd/occollector/app/collector/telemetry.go

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2019, OpenCensus Authors
1+
// Copyright 2019, OpenTelemetry Authors
22
//
33
// Licensed under the Apache License, Version 2.0 (the "License");
44
// you may not use this file except in compliance with the License.
@@ -25,12 +25,12 @@ import (
2525
"go.opencensus.io/stats/view"
2626
"go.uber.org/zap"
2727

28-
"github.com/census-instrumentation/opencensus-service/internal/collector/processor"
29-
"github.com/census-instrumentation/opencensus-service/internal/collector/processor/nodebatcher"
30-
"github.com/census-instrumentation/opencensus-service/internal/collector/processor/queued"
31-
"github.com/census-instrumentation/opencensus-service/internal/collector/processor/tailsampling"
32-
"github.com/census-instrumentation/opencensus-service/internal/collector/telemetry"
33-
"github.com/census-instrumentation/opencensus-service/observability"
28+
"github.com/open-telemetry/opentelemetry-service/internal/collector/processor"
29+
"github.com/open-telemetry/opentelemetry-service/internal/collector/processor/nodebatcher"
30+
"github.com/open-telemetry/opentelemetry-service/internal/collector/processor/queued"
31+
"github.com/open-telemetry/opentelemetry-service/internal/collector/processor/tailsampling"
32+
"github.com/open-telemetry/opentelemetry-service/internal/collector/telemetry"
33+
"github.com/open-telemetry/opentelemetry-service/observability"
3434
)
3535

3636
const (

cmd/occollector/app/sender/doc.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2018, OpenCensus Authors
1+
// Copyright 2019, OpenTelemetry Authors
22
//
33
// Licensed under the Apache License, Version 2.0 (the "License");
44
// you may not use this file except in compliance with the License.

cmd/occollector/app/sender/empty_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2019, OpenCensus Authors
1+
// Copyright 2019, OpenTelemetry Authors
22
//
33
// Licensed under the Apache License, Version 2.0 (the "License");
44
// you may not use this file except in compliance with the License.

cmd/occollector/app/sender/jaeger_proto_grpc_sender.go

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2019, OpenCensus Authors
1+
// Copyright 2019, OpenTelemetry Authors
22
//
33
// Licensed under the Apache License, Version 2.0 (the "License");
44
// you may not use this file except in compliance with the License.
@@ -22,9 +22,9 @@ import (
2222

2323
jaegerproto "github.com/jaegertracing/jaeger/proto-gen/api_v2"
2424

25-
"github.com/census-instrumentation/opencensus-service/consumer"
26-
"github.com/census-instrumentation/opencensus-service/data"
27-
jaegertranslator "github.com/census-instrumentation/opencensus-service/translator/trace/jaeger"
25+
"github.com/open-telemetry/opentelemetry-service/consumer"
26+
"github.com/open-telemetry/opentelemetry-service/data"
27+
jaegertranslator "github.com/open-telemetry/opentelemetry-service/translator/trace/jaeger"
2828
)
2929

3030
// JaegerProtoGRPCSender forwards spans encoded in the jaeger proto

0 commit comments

Comments
 (0)