Skip to content

Commit

Permalink
Update core to latest, fix breaking change DoubleHistogram to Histogr…
Browse files Browse the repository at this point in the history
…am (open-telemetry#2868)

Signed-off-by: Bogdan Drutu <[email protected]>
  • Loading branch information
bogdandrutu committed Mar 25, 2021
1 parent 2a747fc commit 3ea2590
Show file tree
Hide file tree
Showing 165 changed files with 324 additions and 324 deletions.
2 changes: 1 addition & 1 deletion exporter/alibabacloudlogserviceexporter/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ require (
github.com/gogo/protobuf v1.3.2
github.com/pelletier/go-toml v1.8.0 // indirect
github.com/stretchr/testify v1.7.0
go.opentelemetry.io/collector v0.23.1-0.20210325153656-34c17ea01388
go.opentelemetry.io/collector v0.23.1-0.20210325165544-a675700280f5
go.uber.org/zap v1.16.0
gopkg.in/ini.v1 v1.57.0 // indirect
)
4 changes: 2 additions & 2 deletions exporter/alibabacloudlogserviceexporter/go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -909,8 +909,8 @@ go.opencensus.io v0.22.4/go.mod h1:yxeiOL68Rb0Xd1ddK5vPZ/oVn4vY4Ynel7k9FzqtOIw=
go.opencensus.io v0.22.5/go.mod h1:5pWMHQbX5EPX2/62yrJeAkowc+lfs/XD7Uxpq3pI6kk=
go.opencensus.io v0.23.0 h1:gqCw0LfLxScz8irSi8exQc7fyQ0fKQU/qnC/X8+V/1M=
go.opencensus.io v0.23.0/go.mod h1:XItmlyltB5F7CS4xOC1DcqMoFqwtC6OG2xF7mCv7P7E=
go.opentelemetry.io/collector v0.23.1-0.20210325153656-34c17ea01388 h1:amjEafpT5d5HhOBTYMCsviy1mpbIJvbzJ5Urd5gd+oA=
go.opentelemetry.io/collector v0.23.1-0.20210325153656-34c17ea01388/go.mod h1:wMTwy0/4xrFRZj/XX1UH5VAd0WAVts9Rq7ZKQldCIkU=
go.opentelemetry.io/collector v0.23.1-0.20210325165544-a675700280f5 h1:F4h4a4tcKbowktOjQB+sKhbQGGpiGM1TZdc4XZyLC2w=
go.opentelemetry.io/collector v0.23.1-0.20210325165544-a675700280f5/go.mod h1:wMTwy0/4xrFRZj/XX1UH5VAd0WAVts9Rq7ZKQldCIkU=
go.uber.org/atomic v1.3.2/go.mod h1:gD2HeocX3+yG+ygLZcrzQJaqmWj9AIm7n08wl/qW/PE=
go.uber.org/atomic v1.4.0/go.mod h1:gD2HeocX3+yG+ygLZcrzQJaqmWj9AIm7n08wl/qW/PE=
go.uber.org/atomic v1.5.0/go.mod h1:sABNBOSYdrvTF6hTgEIbc7YasKWGhgEQZyfxyTvoXHQ=
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -250,7 +250,7 @@ func intHistogramMetricsToLogs(name string, data pdata.IntHistogramDataPointSlic
return logs
}

func doubleHistogramMetricsToLogs(name string, data pdata.DoubleHistogramDataPointSlice, defaultLabels KeyValues) (logs []*sls.Log) {
func doubleHistogramMetricsToLogs(name string, data pdata.HistogramDataPointSlice, defaultLabels KeyValues) (logs []*sls.Log) {
for i := 0; i < data.Len(); i++ {
dataPoint := data.At(i)
labelsMap := dataPoint.LabelsMap()
Expand Down Expand Up @@ -346,8 +346,8 @@ func metricDataToLogServiceData(md pdata.Metric, defaultLabels KeyValues) (logs
return doubleMetricsToLogs(md.Name(), md.DoubleSum().DataPoints(), defaultLabels)
case pdata.MetricDataTypeIntHistogram:
return intHistogramMetricsToLogs(md.Name(), md.IntHistogram().DataPoints(), defaultLabels)
case pdata.MetricDataTypeDoubleHistogram:
return doubleHistogramMetricsToLogs(md.Name(), md.DoubleHistogram().DataPoints(), defaultLabels)
case pdata.MetricDataTypeHistogram:
return doubleHistogramMetricsToLogs(md.Name(), md.Histogram().DataPoints(), defaultLabels)
case pdata.MetricDataTypeSummary:
return doubleSummaryMetricsToLogs(md.Name(), md.Summary().DataPoints(), defaultLabels)
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -106,9 +106,9 @@ func TestMetricDataToLogService(t *testing.T) {
intHistogramDataPoint.SetExplicitBounds([]float64{1, 2})

doubleHistogramMetric := metrics.At(7)
doubleHistogramMetric.SetDataType(pdata.MetricDataTypeDoubleHistogram)
doubleHistogramMetric.SetDataType(pdata.MetricDataTypeHistogram)
doubleHistogramMetric.SetName("double_$histogram")
doubleHistogram := doubleHistogramMetric.DoubleHistogram()
doubleHistogram := doubleHistogramMetric.Histogram()
doubleHistogramDataPoints := doubleHistogram.DataPoints()
doubleHistogramDataPoints.Resize(1)
doubleHistogramDataPoint := doubleHistogramDataPoints.At(0)
Expand Down
20 changes: 10 additions & 10 deletions exporter/awsemfexporter/datapoint.go
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ type DataPoint struct {
// - pdata.IntDataPointSlice
// - pdata.DoubleDataPointSlice
// - pdata.IntHistogramDataPointSlice
// - pdata.DoubleHistogramDataPointSlice
// - pdata.HistogramDataPointSlice
// - pdata.SummaryDataPointSlice
type DataPoints interface {
Len() int
Expand Down Expand Up @@ -88,10 +88,10 @@ type DoubleDataPointSlice struct {
pdata.DoubleDataPointSlice
}

// DoubleHistogramDataPointSlice is a wrapper for pdata.DoubleHistogramDataPointSlice
type DoubleHistogramDataPointSlice struct {
// HistogramDataPointSlice is a wrapper for pdata.HistogramDataPointSlice
type HistogramDataPointSlice struct {
instrumentationLibraryName string
pdata.DoubleHistogramDataPointSlice
pdata.HistogramDataPointSlice
}

// SummaryDataPointSlice is a wrapper for pdata.SummaryDataPointSlice
Expand Down Expand Up @@ -151,9 +151,9 @@ func (dps DoubleDataPointSlice) At(i int) DataPoint {
}
}

// At retrieves the DoubleHistogramDataPoint at the given index.
func (dps DoubleHistogramDataPointSlice) At(i int) DataPoint {
metric := dps.DoubleHistogramDataPointSlice.At(i)
// At retrieves the HistogramDataPoint at the given index.
func (dps HistogramDataPointSlice) At(i int) DataPoint {
metric := dps.HistogramDataPointSlice.At(i)
labels := createLabels(metric.LabelsMap(), dps.instrumentationLibraryName)
timestamp := unixNanoToMilliseconds(metric.Timestamp())

Expand Down Expand Up @@ -275,9 +275,9 @@ func getDataPoints(pmd *pdata.Metric, metadata CWMetricMetadata, logger *zap.Log
},
metric.DataPoints(),
}
case pdata.MetricDataTypeDoubleHistogram:
metric := pmd.DoubleHistogram()
dps = DoubleHistogramDataPointSlice{
case pdata.MetricDataTypeHistogram:
metric := pmd.Histogram()
dps = HistogramDataPointSlice{
metadata.InstrumentationLibraryName,
metric.DataPoints(),
}
Expand Down
20 changes: 10 additions & 10 deletions exporter/awsemfexporter/datapoint_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ func generateTestDoubleSum(name string) *metricspb.Metric {
}
}

func generateTestDoubleHistogram(name string) *metricspb.Metric {
func generateTestHistogram(name string) *metricspb.Metric {
return &metricspb.Metric{
MetricDescriptor: &metricspb.MetricDescriptor{
Name: name,
Expand Down Expand Up @@ -393,11 +393,11 @@ func TestDoubleDataPointSliceAt(t *testing.T) {
}
}

func TestDoubleHistogramDataPointSliceAt(t *testing.T) {
func TestHistogramDataPointSliceAt(t *testing.T) {
instrLibName := "cloudwatch-otel"
labels := map[string]string{"label1": "value1"}

testDPS := pdata.NewDoubleHistogramDataPointSlice()
testDPS := pdata.NewHistogramDataPointSlice()
testDPS.Resize(1)
testDP := testDPS.At(0)
testDP.SetCount(uint64(17))
Expand All @@ -406,7 +406,7 @@ func TestDoubleHistogramDataPointSliceAt(t *testing.T) {
testDP.SetExplicitBounds([]float64{1, 2, 3})
testDP.LabelsMap().InitFromMap(labels)

dps := DoubleHistogramDataPointSlice{
dps := HistogramDataPointSlice{
instrLibName,
testDPS,
}
Expand Down Expand Up @@ -610,10 +610,10 @@ func TestGetDataPoints(t *testing.T) {
},
{
"Double histogram",
generateTestDoubleHistogram("foo"),
DoubleHistogramDataPointSlice{
generateTestHistogram("foo"),
HistogramDataPointSlice{
metadata.InstrumentationLibraryName,
pdata.DoubleHistogramDataPointSlice{},
pdata.HistogramDataPointSlice{},
},
},
{
Expand Down Expand Up @@ -660,10 +660,10 @@ func TestGetDataPoints(t *testing.T) {
dp := convertedDPS.DoubleDataPointSlice.At(0)
assert.Equal(t, 0.1, dp.Value())
assert.Equal(t, expectedLabels, dp.LabelsMap())
case DoubleHistogramDataPointSlice:
case HistogramDataPointSlice:
assert.Equal(t, metadata.InstrumentationLibraryName, convertedDPS.instrumentationLibraryName)
assert.Equal(t, 1, convertedDPS.Len())
dp := convertedDPS.DoubleHistogramDataPointSlice.At(0)
dp := convertedDPS.HistogramDataPointSlice.At(0)
assert.Equal(t, 35.0, dp.Sum())
assert.Equal(t, uint64(18), dp.Count())
assert.Equal(t, []float64{0, 10}, dp.ExplicitBounds())
Expand Down Expand Up @@ -721,7 +721,7 @@ func BenchmarkGetDataPoints(b *testing.B) {
generateTestDoubleGauge("double-gauge"),
generateTestIntSum("int-sum"),
generateTestDoubleSum("double-sum"),
generateTestDoubleHistogram("double-histogram"),
generateTestHistogram("double-histogram"),
generateTestSummary("summary"),
},
}
Expand Down
2 changes: 1 addition & 1 deletion exporter/awsemfexporter/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ require (
github.com/open-telemetry/opentelemetry-collector-contrib/internal/aws v0.0.0-00010101000000-000000000000
github.com/pelletier/go-toml v1.8.0 // indirect
github.com/stretchr/testify v1.7.0
go.opentelemetry.io/collector v0.23.1-0.20210325153656-34c17ea01388
go.opentelemetry.io/collector v0.23.1-0.20210325165544-a675700280f5
go.opentelemetry.io/otel v0.19.0
go.uber.org/zap v1.16.0
google.golang.org/protobuf v1.26.0
Expand Down
4 changes: 2 additions & 2 deletions exporter/awsemfexporter/go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -1051,8 +1051,8 @@ go.opencensus.io v0.22.4/go.mod h1:yxeiOL68Rb0Xd1ddK5vPZ/oVn4vY4Ynel7k9FzqtOIw=
go.opencensus.io v0.22.5/go.mod h1:5pWMHQbX5EPX2/62yrJeAkowc+lfs/XD7Uxpq3pI6kk=
go.opencensus.io v0.23.0 h1:gqCw0LfLxScz8irSi8exQc7fyQ0fKQU/qnC/X8+V/1M=
go.opencensus.io v0.23.0/go.mod h1:XItmlyltB5F7CS4xOC1DcqMoFqwtC6OG2xF7mCv7P7E=
go.opentelemetry.io/collector v0.23.1-0.20210325153656-34c17ea01388 h1:amjEafpT5d5HhOBTYMCsviy1mpbIJvbzJ5Urd5gd+oA=
go.opentelemetry.io/collector v0.23.1-0.20210325153656-34c17ea01388/go.mod h1:wMTwy0/4xrFRZj/XX1UH5VAd0WAVts9Rq7ZKQldCIkU=
go.opentelemetry.io/collector v0.23.1-0.20210325165544-a675700280f5 h1:F4h4a4tcKbowktOjQB+sKhbQGGpiGM1TZdc4XZyLC2w=
go.opentelemetry.io/collector v0.23.1-0.20210325165544-a675700280f5/go.mod h1:wMTwy0/4xrFRZj/XX1UH5VAd0WAVts9Rq7ZKQldCIkU=
go.opentelemetry.io/otel v0.19.0 h1:Lenfy7QHRXPZVsw/12CWpxX6d/JkrX8wrx2vO8G80Ng=
go.opentelemetry.io/otel v0.19.0/go.mod h1:j9bF567N9EfomkSidSfmMwIwIBuP37AMAIzVW85OxSg=
go.opentelemetry.io/otel/metric v0.19.0/go.mod h1:8f9fglJPRnXuskQmKpnad31lcLJ2VmNNqIsx/uIwBSc=
Expand Down
6 changes: 3 additions & 3 deletions exporter/awsemfexporter/grouped_metric_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ func TestAddToGroupedMetric(t *testing.T) {
},
{
"Double histogram",
generateTestDoubleHistogram("foo"),
generateTestHistogram("foo"),
map[string]*MetricInfo{
"foo": {
Value: &CWMetricStats{
Expand Down Expand Up @@ -177,7 +177,7 @@ func TestAddToGroupedMetric(t *testing.T) {
generateTestDoubleGauge("double-gauge"),
generateTestIntSum("int-sum"),
generateTestDoubleSum("double-sum"),
generateTestDoubleHistogram("double-histogram"),
generateTestHistogram("double-histogram"),
generateTestSummary("summary"),
},
}
Expand Down Expand Up @@ -429,7 +429,7 @@ func BenchmarkAddToGroupedMetric(b *testing.B) {
generateTestDoubleGauge("double-gauge"),
generateTestIntSum("int-sum"),
generateTestDoubleSum("double-sum"),
generateTestDoubleHistogram("double-histogram"),
generateTestHistogram("double-histogram"),
generateTestSummary("summary"),
},
}
Expand Down
16 changes: 8 additions & 8 deletions exporter/awsemfexporter/metric_translator.go
Original file line number Diff line number Diff line change
Expand Up @@ -40,14 +40,14 @@ const (
)

var fieldPrometheusTypes = map[pdata.MetricDataType]string{
pdata.MetricDataTypeNone: "",
pdata.MetricDataTypeIntGauge: "gauge",
pdata.MetricDataTypeDoubleGauge: "gauge",
pdata.MetricDataTypeIntSum: "counter",
pdata.MetricDataTypeDoubleSum: "counter",
pdata.MetricDataTypeIntHistogram: "histogram",
pdata.MetricDataTypeDoubleHistogram: "histogram",
pdata.MetricDataTypeSummary: "summary",
pdata.MetricDataTypeNone: "",
pdata.MetricDataTypeIntGauge: "gauge",
pdata.MetricDataTypeDoubleGauge: "gauge",
pdata.MetricDataTypeIntSum: "counter",
pdata.MetricDataTypeDoubleSum: "counter",
pdata.MetricDataTypeIntHistogram: "histogram",
pdata.MetricDataTypeHistogram: "histogram",
pdata.MetricDataTypeSummary: "summary",
}

// CWMetrics defines
Expand Down
2 changes: 1 addition & 1 deletion exporter/awskinesisexporter/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ require (
github.com/pelletier/go-toml v1.8.0 // indirect
github.com/signalfx/opencensus-go-exporter-kinesis v0.6.3
github.com/stretchr/testify v1.7.0
go.opentelemetry.io/collector v0.23.1-0.20210325153656-34c17ea01388
go.opentelemetry.io/collector v0.23.1-0.20210325165544-a675700280f5
go.uber.org/zap v1.16.0
gopkg.in/ini.v1 v1.57.0 // indirect
)
4 changes: 2 additions & 2 deletions exporter/awskinesisexporter/go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -1081,8 +1081,8 @@ go.opencensus.io v0.22.4/go.mod h1:yxeiOL68Rb0Xd1ddK5vPZ/oVn4vY4Ynel7k9FzqtOIw=
go.opencensus.io v0.22.5/go.mod h1:5pWMHQbX5EPX2/62yrJeAkowc+lfs/XD7Uxpq3pI6kk=
go.opencensus.io v0.23.0 h1:gqCw0LfLxScz8irSi8exQc7fyQ0fKQU/qnC/X8+V/1M=
go.opencensus.io v0.23.0/go.mod h1:XItmlyltB5F7CS4xOC1DcqMoFqwtC6OG2xF7mCv7P7E=
go.opentelemetry.io/collector v0.23.1-0.20210325153656-34c17ea01388 h1:amjEafpT5d5HhOBTYMCsviy1mpbIJvbzJ5Urd5gd+oA=
go.opentelemetry.io/collector v0.23.1-0.20210325153656-34c17ea01388/go.mod h1:wMTwy0/4xrFRZj/XX1UH5VAd0WAVts9Rq7ZKQldCIkU=
go.opentelemetry.io/collector v0.23.1-0.20210325165544-a675700280f5 h1:F4h4a4tcKbowktOjQB+sKhbQGGpiGM1TZdc4XZyLC2w=
go.opentelemetry.io/collector v0.23.1-0.20210325165544-a675700280f5/go.mod h1:wMTwy0/4xrFRZj/XX1UH5VAd0WAVts9Rq7ZKQldCIkU=
go.uber.org/atomic v1.3.2/go.mod h1:gD2HeocX3+yG+ygLZcrzQJaqmWj9AIm7n08wl/qW/PE=
go.uber.org/atomic v1.4.0/go.mod h1:gD2HeocX3+yG+ygLZcrzQJaqmWj9AIm7n08wl/qW/PE=
go.uber.org/atomic v1.5.0/go.mod h1:sABNBOSYdrvTF6hTgEIbc7YasKWGhgEQZyfxyTvoXHQ=
Expand Down
2 changes: 1 addition & 1 deletion exporter/awsprometheusremotewriteexporter/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ require (
github.com/onsi/gomega v1.10.2 // indirect
github.com/pelletier/go-toml v1.8.0 // indirect
github.com/stretchr/testify v1.7.0
go.opentelemetry.io/collector v0.23.1-0.20210325153656-34c17ea01388
go.opentelemetry.io/collector v0.23.1-0.20210325165544-a675700280f5
go.uber.org/zap v1.16.0
gopkg.in/ini.v1 v1.57.0 // indirect
)
4 changes: 2 additions & 2 deletions exporter/awsprometheusremotewriteexporter/go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -1051,8 +1051,8 @@ go.opencensus.io v0.22.4/go.mod h1:yxeiOL68Rb0Xd1ddK5vPZ/oVn4vY4Ynel7k9FzqtOIw=
go.opencensus.io v0.22.5/go.mod h1:5pWMHQbX5EPX2/62yrJeAkowc+lfs/XD7Uxpq3pI6kk=
go.opencensus.io v0.23.0 h1:gqCw0LfLxScz8irSi8exQc7fyQ0fKQU/qnC/X8+V/1M=
go.opencensus.io v0.23.0/go.mod h1:XItmlyltB5F7CS4xOC1DcqMoFqwtC6OG2xF7mCv7P7E=
go.opentelemetry.io/collector v0.23.1-0.20210325153656-34c17ea01388 h1:amjEafpT5d5HhOBTYMCsviy1mpbIJvbzJ5Urd5gd+oA=
go.opentelemetry.io/collector v0.23.1-0.20210325153656-34c17ea01388/go.mod h1:wMTwy0/4xrFRZj/XX1UH5VAd0WAVts9Rq7ZKQldCIkU=
go.opentelemetry.io/collector v0.23.1-0.20210325165544-a675700280f5 h1:F4h4a4tcKbowktOjQB+sKhbQGGpiGM1TZdc4XZyLC2w=
go.opentelemetry.io/collector v0.23.1-0.20210325165544-a675700280f5/go.mod h1:wMTwy0/4xrFRZj/XX1UH5VAd0WAVts9Rq7ZKQldCIkU=
go.uber.org/atomic v1.3.2/go.mod h1:gD2HeocX3+yG+ygLZcrzQJaqmWj9AIm7n08wl/qW/PE=
go.uber.org/atomic v1.4.0/go.mod h1:gD2HeocX3+yG+ygLZcrzQJaqmWj9AIm7n08wl/qW/PE=
go.uber.org/atomic v1.5.0/go.mod h1:sABNBOSYdrvTF6hTgEIbc7YasKWGhgEQZyfxyTvoXHQ=
Expand Down
2 changes: 1 addition & 1 deletion exporter/awsxrayexporter/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ require (
github.com/open-telemetry/opentelemetry-collector-contrib/internal/awsxray v0.0.0-00010101000000-000000000000
github.com/pelletier/go-toml v1.8.0 // indirect
github.com/stretchr/testify v1.7.0
go.opentelemetry.io/collector v0.23.1-0.20210325153656-34c17ea01388
go.opentelemetry.io/collector v0.23.1-0.20210325165544-a675700280f5
go.uber.org/zap v1.16.0
golang.org/x/net v0.0.0-20210119194325-5f4716e94777
gopkg.in/ini.v1 v1.57.0 // indirect
Expand Down
4 changes: 2 additions & 2 deletions exporter/awsxrayexporter/go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -1051,8 +1051,8 @@ go.opencensus.io v0.22.4/go.mod h1:yxeiOL68Rb0Xd1ddK5vPZ/oVn4vY4Ynel7k9FzqtOIw=
go.opencensus.io v0.22.5/go.mod h1:5pWMHQbX5EPX2/62yrJeAkowc+lfs/XD7Uxpq3pI6kk=
go.opencensus.io v0.23.0 h1:gqCw0LfLxScz8irSi8exQc7fyQ0fKQU/qnC/X8+V/1M=
go.opencensus.io v0.23.0/go.mod h1:XItmlyltB5F7CS4xOC1DcqMoFqwtC6OG2xF7mCv7P7E=
go.opentelemetry.io/collector v0.23.1-0.20210325153656-34c17ea01388 h1:amjEafpT5d5HhOBTYMCsviy1mpbIJvbzJ5Urd5gd+oA=
go.opentelemetry.io/collector v0.23.1-0.20210325153656-34c17ea01388/go.mod h1:wMTwy0/4xrFRZj/XX1UH5VAd0WAVts9Rq7ZKQldCIkU=
go.opentelemetry.io/collector v0.23.1-0.20210325165544-a675700280f5 h1:F4h4a4tcKbowktOjQB+sKhbQGGpiGM1TZdc4XZyLC2w=
go.opentelemetry.io/collector v0.23.1-0.20210325165544-a675700280f5/go.mod h1:wMTwy0/4xrFRZj/XX1UH5VAd0WAVts9Rq7ZKQldCIkU=
go.uber.org/atomic v1.3.2/go.mod h1:gD2HeocX3+yG+ygLZcrzQJaqmWj9AIm7n08wl/qW/PE=
go.uber.org/atomic v1.4.0/go.mod h1:gD2HeocX3+yG+ygLZcrzQJaqmWj9AIm7n08wl/qW/PE=
go.uber.org/atomic v1.5.0/go.mod h1:sABNBOSYdrvTF6hTgEIbc7YasKWGhgEQZyfxyTvoXHQ=
Expand Down
2 changes: 1 addition & 1 deletion exporter/azuremonitorexporter/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ require (
github.com/pelletier/go-toml v1.8.0 // indirect
github.com/stretchr/testify v1.7.0
github.com/tedsuo/ifrit v0.0.0-20191009134036-9a97d0632f00 // indirect
go.opentelemetry.io/collector v0.23.1-0.20210325153656-34c17ea01388
go.opentelemetry.io/collector v0.23.1-0.20210325165544-a675700280f5
go.uber.org/zap v1.16.0
golang.org/x/net v0.0.0-20210119194325-5f4716e94777
gopkg.in/ini.v1 v1.57.0 // indirect
Expand Down
4 changes: 2 additions & 2 deletions exporter/azuremonitorexporter/go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -1061,8 +1061,8 @@ go.opencensus.io v0.22.4/go.mod h1:yxeiOL68Rb0Xd1ddK5vPZ/oVn4vY4Ynel7k9FzqtOIw=
go.opencensus.io v0.22.5/go.mod h1:5pWMHQbX5EPX2/62yrJeAkowc+lfs/XD7Uxpq3pI6kk=
go.opencensus.io v0.23.0 h1:gqCw0LfLxScz8irSi8exQc7fyQ0fKQU/qnC/X8+V/1M=
go.opencensus.io v0.23.0/go.mod h1:XItmlyltB5F7CS4xOC1DcqMoFqwtC6OG2xF7mCv7P7E=
go.opentelemetry.io/collector v0.23.1-0.20210325153656-34c17ea01388 h1:amjEafpT5d5HhOBTYMCsviy1mpbIJvbzJ5Urd5gd+oA=
go.opentelemetry.io/collector v0.23.1-0.20210325153656-34c17ea01388/go.mod h1:wMTwy0/4xrFRZj/XX1UH5VAd0WAVts9Rq7ZKQldCIkU=
go.opentelemetry.io/collector v0.23.1-0.20210325165544-a675700280f5 h1:F4h4a4tcKbowktOjQB+sKhbQGGpiGM1TZdc4XZyLC2w=
go.opentelemetry.io/collector v0.23.1-0.20210325165544-a675700280f5/go.mod h1:wMTwy0/4xrFRZj/XX1UH5VAd0WAVts9Rq7ZKQldCIkU=
go.uber.org/atomic v1.3.2/go.mod h1:gD2HeocX3+yG+ygLZcrzQJaqmWj9AIm7n08wl/qW/PE=
go.uber.org/atomic v1.4.0/go.mod h1:gD2HeocX3+yG+ygLZcrzQJaqmWj9AIm7n08wl/qW/PE=
go.uber.org/atomic v1.5.0/go.mod h1:sABNBOSYdrvTF6hTgEIbc7YasKWGhgEQZyfxyTvoXHQ=
Expand Down
2 changes: 1 addition & 1 deletion exporter/carbonexporter/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ require (
github.com/onsi/gomega v1.10.2 // indirect
github.com/pelletier/go-toml v1.8.0 // indirect
github.com/stretchr/testify v1.7.0
go.opentelemetry.io/collector v0.23.1-0.20210325153656-34c17ea01388
go.opentelemetry.io/collector v0.23.1-0.20210325165544-a675700280f5
go.uber.org/zap v1.16.0
google.golang.org/protobuf v1.26.0
gopkg.in/ini.v1 v1.57.0 // indirect
Expand Down
4 changes: 2 additions & 2 deletions exporter/carbonexporter/go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -1050,8 +1050,8 @@ go.opencensus.io v0.22.4/go.mod h1:yxeiOL68Rb0Xd1ddK5vPZ/oVn4vY4Ynel7k9FzqtOIw=
go.opencensus.io v0.22.5/go.mod h1:5pWMHQbX5EPX2/62yrJeAkowc+lfs/XD7Uxpq3pI6kk=
go.opencensus.io v0.23.0 h1:gqCw0LfLxScz8irSi8exQc7fyQ0fKQU/qnC/X8+V/1M=
go.opencensus.io v0.23.0/go.mod h1:XItmlyltB5F7CS4xOC1DcqMoFqwtC6OG2xF7mCv7P7E=
go.opentelemetry.io/collector v0.23.1-0.20210325153656-34c17ea01388 h1:amjEafpT5d5HhOBTYMCsviy1mpbIJvbzJ5Urd5gd+oA=
go.opentelemetry.io/collector v0.23.1-0.20210325153656-34c17ea01388/go.mod h1:wMTwy0/4xrFRZj/XX1UH5VAd0WAVts9Rq7ZKQldCIkU=
go.opentelemetry.io/collector v0.23.1-0.20210325165544-a675700280f5 h1:F4h4a4tcKbowktOjQB+sKhbQGGpiGM1TZdc4XZyLC2w=
go.opentelemetry.io/collector v0.23.1-0.20210325165544-a675700280f5/go.mod h1:wMTwy0/4xrFRZj/XX1UH5VAd0WAVts9Rq7ZKQldCIkU=
go.uber.org/atomic v1.3.2/go.mod h1:gD2HeocX3+yG+ygLZcrzQJaqmWj9AIm7n08wl/qW/PE=
go.uber.org/atomic v1.4.0/go.mod h1:gD2HeocX3+yG+ygLZcrzQJaqmWj9AIm7n08wl/qW/PE=
go.uber.org/atomic v1.5.0/go.mod h1:sABNBOSYdrvTF6hTgEIbc7YasKWGhgEQZyfxyTvoXHQ=
Expand Down
2 changes: 1 addition & 1 deletion exporter/datadogexporter/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ require (
github.com/pelletier/go-toml v1.8.0 // indirect
github.com/stretchr/testify v1.7.0
github.com/zorkian/go-datadog-api v2.29.0+incompatible // indirect
go.opentelemetry.io/collector v0.23.1-0.20210325153656-34c17ea01388
go.opentelemetry.io/collector v0.23.1-0.20210325165544-a675700280f5
go.uber.org/zap v1.16.0
gopkg.in/DataDog/dd-trace-go.v1 v1.28.0
gopkg.in/ini.v1 v1.57.0 // indirect
Expand Down
4 changes: 2 additions & 2 deletions exporter/datadogexporter/go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -1081,8 +1081,8 @@ go.opencensus.io v0.22.4/go.mod h1:yxeiOL68Rb0Xd1ddK5vPZ/oVn4vY4Ynel7k9FzqtOIw=
go.opencensus.io v0.22.5/go.mod h1:5pWMHQbX5EPX2/62yrJeAkowc+lfs/XD7Uxpq3pI6kk=
go.opencensus.io v0.23.0 h1:gqCw0LfLxScz8irSi8exQc7fyQ0fKQU/qnC/X8+V/1M=
go.opencensus.io v0.23.0/go.mod h1:XItmlyltB5F7CS4xOC1DcqMoFqwtC6OG2xF7mCv7P7E=
go.opentelemetry.io/collector v0.23.1-0.20210325153656-34c17ea01388 h1:amjEafpT5d5HhOBTYMCsviy1mpbIJvbzJ5Urd5gd+oA=
go.opentelemetry.io/collector v0.23.1-0.20210325153656-34c17ea01388/go.mod h1:wMTwy0/4xrFRZj/XX1UH5VAd0WAVts9Rq7ZKQldCIkU=
go.opentelemetry.io/collector v0.23.1-0.20210325165544-a675700280f5 h1:F4h4a4tcKbowktOjQB+sKhbQGGpiGM1TZdc4XZyLC2w=
go.opentelemetry.io/collector v0.23.1-0.20210325165544-a675700280f5/go.mod h1:wMTwy0/4xrFRZj/XX1UH5VAd0WAVts9Rq7ZKQldCIkU=
go.uber.org/atomic v1.3.2/go.mod h1:gD2HeocX3+yG+ygLZcrzQJaqmWj9AIm7n08wl/qW/PE=
go.uber.org/atomic v1.4.0/go.mod h1:gD2HeocX3+yG+ygLZcrzQJaqmWj9AIm7n08wl/qW/PE=
go.uber.org/atomic v1.5.0/go.mod h1:sABNBOSYdrvTF6hTgEIbc7YasKWGhgEQZyfxyTvoXHQ=
Expand Down
Loading

0 comments on commit 3ea2590

Please sign in to comment.