Skip to content

Commit f9507cd

Browse files
authored
Release v0.23.0 (#2833)
1 parent bf92d2f commit f9507cd

File tree

143 files changed

+296
-213
lines changed

Some content is hidden

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

143 files changed

+296
-213
lines changed

CHANGELOG.md

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,47 @@
22

33
## Unreleased
44

5+
## v0.23.0
6+
7+
# 🎉 OpenTelemetry Collector Contrib v0.23.0 (Beta) 🎉
8+
9+
The OpenTelemetry Collector Contrib contains everything in the [opentelemetry-collector release](https://github.com/open-telemetry/opentelemetry-collector/releases/tag/v0.23.0) (be sure to check the release notes here as well!). Check out the [Getting Started Guide](https://opentelemetry.io/docs/collector/getting-started/) for deployment and configuration information.
10+
11+
## 🚀 New components 🚀
12+
13+
- `groupbyattrs` processor to group the records by provided attributes
14+
- `dotnetdiagnostics` receiver to read metrics from .NET processes
15+
16+
## 🛑 Breaking changes 🛑
17+
18+
- `stackdriver` exporter marked as deprecated and renamed to `googlecloud`
19+
- Change the rule expression in receiver creator for matching endpoints types from `type.port`, `type.hostport` and `type.pod` to `type == "port"`, `type == "hostport"` and `type == "pod"` (#2661)
20+
21+
## 💡 Enhancements 💡
22+
23+
- `loadbalancing` exporter: Add support for logs (#2470)
24+
- `sumologic` exporter: Add carbon formatter (#2562)
25+
- `awsecscontainermetrics` receiver: Add new metric for stopped container (#2383)
26+
- `awsemf` exporter:
27+
- Send EMF logs in batches (#2572)
28+
- Add prometheus type field for CloudWatch compatibility (#2689)
29+
- `signalfx` exporter:
30+
- Add resource attributes to events (#2631)
31+
- Add translation rule to drop dimensions (#2660)
32+
- Remove temporary host translation workaround (#2652)
33+
- Remove unnecessary default translation rules (#2672)
34+
- Update `exclude_metrics` option so that the default exclude rules can be overridden by setting the option to `[]` (#2737)
35+
- `awsprometheusremotewrite` exporter: Add support for given IAM roles (#2675)
36+
- `statsd` receiver: Change to use OpenTelemetry type instead of OpenCensus type (#2733)
37+
- `resourcedetection` processor: Add missing entries for `cloud.infrastructure_service` (#2777)
38+
39+
## 🧰 Bug fixes 🧰
40+
41+
- `dynatrace` exporter: Serialize each datapoint into separate line (#2618)
42+
- `splunkhec` exporter: Retain all otel attributes (#2712)
43+
- `newrelic` exporter: Fix default metric URL (#2739)
44+
- `googlecloud` exporter: Add host.name label if hostname is present in node (#2711)
45+
546
## v0.22.0
647

748
# 🎉 OpenTelemetry Collector Contrib v0.22.0 (Beta) 🎉

exporter/alibabacloudlogserviceexporter/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ require (
88
github.com/gogo/protobuf v1.3.2
99
github.com/pelletier/go-toml v1.8.0 // indirect
1010
github.com/stretchr/testify v1.7.0
11-
go.opentelemetry.io/collector v0.22.1-0.20210323150444-0c6757ec71a5
11+
go.opentelemetry.io/collector v0.23.0
1212
go.uber.org/zap v1.16.0
1313
gopkg.in/ini.v1 v1.57.0 // indirect
1414
)

exporter/alibabacloudlogserviceexporter/go.sum

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -909,8 +909,8 @@ go.opencensus.io v0.22.4/go.mod h1:yxeiOL68Rb0Xd1ddK5vPZ/oVn4vY4Ynel7k9FzqtOIw=
909909
go.opencensus.io v0.22.5/go.mod h1:5pWMHQbX5EPX2/62yrJeAkowc+lfs/XD7Uxpq3pI6kk=
910910
go.opencensus.io v0.23.0 h1:gqCw0LfLxScz8irSi8exQc7fyQ0fKQU/qnC/X8+V/1M=
911911
go.opencensus.io v0.23.0/go.mod h1:XItmlyltB5F7CS4xOC1DcqMoFqwtC6OG2xF7mCv7P7E=
912-
go.opentelemetry.io/collector v0.22.1-0.20210323150444-0c6757ec71a5 h1:uYfkVpGK++c0AmXdCWh9jhAZ3PiFvhe+7lcyF4eqdqc=
913-
go.opentelemetry.io/collector v0.22.1-0.20210323150444-0c6757ec71a5/go.mod h1:wMTwy0/4xrFRZj/XX1UH5VAd0WAVts9Rq7ZKQldCIkU=
912+
go.opentelemetry.io/collector v0.23.0 h1:IdLOPZfTwiL+XndzOYOBEWgLGetuE8b3O2hw0m0wQXk=
913+
go.opentelemetry.io/collector v0.23.0/go.mod h1:wMTwy0/4xrFRZj/XX1UH5VAd0WAVts9Rq7ZKQldCIkU=
914914
go.uber.org/atomic v1.3.2/go.mod h1:gD2HeocX3+yG+ygLZcrzQJaqmWj9AIm7n08wl/qW/PE=
915915
go.uber.org/atomic v1.4.0/go.mod h1:gD2HeocX3+yG+ygLZcrzQJaqmWj9AIm7n08wl/qW/PE=
916916
go.uber.org/atomic v1.5.0/go.mod h1:sABNBOSYdrvTF6hTgEIbc7YasKWGhgEQZyfxyTvoXHQ=

exporter/awsemfexporter/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ require (
1717
github.com/open-telemetry/opentelemetry-collector-contrib/internal/aws v0.0.0-00010101000000-000000000000
1818
github.com/pelletier/go-toml v1.8.0 // indirect
1919
github.com/stretchr/testify v1.7.0
20-
go.opentelemetry.io/collector v0.22.1-0.20210323150444-0c6757ec71a5
20+
go.opentelemetry.io/collector v0.23.0
2121
go.opentelemetry.io/otel v0.19.0
2222
go.uber.org/zap v1.16.0
2323
google.golang.org/protobuf v1.26.0

exporter/awsemfexporter/go.sum

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1051,8 +1051,8 @@ go.opencensus.io v0.22.4/go.mod h1:yxeiOL68Rb0Xd1ddK5vPZ/oVn4vY4Ynel7k9FzqtOIw=
10511051
go.opencensus.io v0.22.5/go.mod h1:5pWMHQbX5EPX2/62yrJeAkowc+lfs/XD7Uxpq3pI6kk=
10521052
go.opencensus.io v0.23.0 h1:gqCw0LfLxScz8irSi8exQc7fyQ0fKQU/qnC/X8+V/1M=
10531053
go.opencensus.io v0.23.0/go.mod h1:XItmlyltB5F7CS4xOC1DcqMoFqwtC6OG2xF7mCv7P7E=
1054-
go.opentelemetry.io/collector v0.22.1-0.20210323150444-0c6757ec71a5 h1:uYfkVpGK++c0AmXdCWh9jhAZ3PiFvhe+7lcyF4eqdqc=
1055-
go.opentelemetry.io/collector v0.22.1-0.20210323150444-0c6757ec71a5/go.mod h1:wMTwy0/4xrFRZj/XX1UH5VAd0WAVts9Rq7ZKQldCIkU=
1054+
go.opentelemetry.io/collector v0.23.0 h1:IdLOPZfTwiL+XndzOYOBEWgLGetuE8b3O2hw0m0wQXk=
1055+
go.opentelemetry.io/collector v0.23.0/go.mod h1:wMTwy0/4xrFRZj/XX1UH5VAd0WAVts9Rq7ZKQldCIkU=
10561056
go.opentelemetry.io/otel v0.19.0 h1:Lenfy7QHRXPZVsw/12CWpxX6d/JkrX8wrx2vO8G80Ng=
10571057
go.opentelemetry.io/otel v0.19.0/go.mod h1:j9bF567N9EfomkSidSfmMwIwIBuP37AMAIzVW85OxSg=
10581058
go.opentelemetry.io/otel/metric v0.19.0/go.mod h1:8f9fglJPRnXuskQmKpnad31lcLJ2VmNNqIsx/uIwBSc=

exporter/awskinesisexporter/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ require (
1212
github.com/pelletier/go-toml v1.8.0 // indirect
1313
github.com/signalfx/opencensus-go-exporter-kinesis v0.6.3
1414
github.com/stretchr/testify v1.7.0
15-
go.opentelemetry.io/collector v0.22.1-0.20210323150444-0c6757ec71a5
15+
go.opentelemetry.io/collector v0.23.0
1616
go.uber.org/zap v1.16.0
1717
gopkg.in/ini.v1 v1.57.0 // indirect
1818
)

exporter/awskinesisexporter/go.sum

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1081,8 +1081,8 @@ go.opencensus.io v0.22.4/go.mod h1:yxeiOL68Rb0Xd1ddK5vPZ/oVn4vY4Ynel7k9FzqtOIw=
10811081
go.opencensus.io v0.22.5/go.mod h1:5pWMHQbX5EPX2/62yrJeAkowc+lfs/XD7Uxpq3pI6kk=
10821082
go.opencensus.io v0.23.0 h1:gqCw0LfLxScz8irSi8exQc7fyQ0fKQU/qnC/X8+V/1M=
10831083
go.opencensus.io v0.23.0/go.mod h1:XItmlyltB5F7CS4xOC1DcqMoFqwtC6OG2xF7mCv7P7E=
1084-
go.opentelemetry.io/collector v0.22.1-0.20210323150444-0c6757ec71a5 h1:uYfkVpGK++c0AmXdCWh9jhAZ3PiFvhe+7lcyF4eqdqc=
1085-
go.opentelemetry.io/collector v0.22.1-0.20210323150444-0c6757ec71a5/go.mod h1:wMTwy0/4xrFRZj/XX1UH5VAd0WAVts9Rq7ZKQldCIkU=
1084+
go.opentelemetry.io/collector v0.23.0 h1:IdLOPZfTwiL+XndzOYOBEWgLGetuE8b3O2hw0m0wQXk=
1085+
go.opentelemetry.io/collector v0.23.0/go.mod h1:wMTwy0/4xrFRZj/XX1UH5VAd0WAVts9Rq7ZKQldCIkU=
10861086
go.uber.org/atomic v1.3.2/go.mod h1:gD2HeocX3+yG+ygLZcrzQJaqmWj9AIm7n08wl/qW/PE=
10871087
go.uber.org/atomic v1.4.0/go.mod h1:gD2HeocX3+yG+ygLZcrzQJaqmWj9AIm7n08wl/qW/PE=
10881088
go.uber.org/atomic v1.5.0/go.mod h1:sABNBOSYdrvTF6hTgEIbc7YasKWGhgEQZyfxyTvoXHQ=

exporter/awsprometheusremotewriteexporter/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ require (
1313
github.com/onsi/gomega v1.10.2 // indirect
1414
github.com/pelletier/go-toml v1.8.0 // indirect
1515
github.com/stretchr/testify v1.7.0
16-
go.opentelemetry.io/collector v0.22.1-0.20210323150444-0c6757ec71a5
16+
go.opentelemetry.io/collector v0.23.0
1717
go.uber.org/zap v1.16.0
1818
gopkg.in/ini.v1 v1.57.0 // indirect
1919
)

exporter/awsprometheusremotewriteexporter/go.sum

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1051,8 +1051,8 @@ go.opencensus.io v0.22.4/go.mod h1:yxeiOL68Rb0Xd1ddK5vPZ/oVn4vY4Ynel7k9FzqtOIw=
10511051
go.opencensus.io v0.22.5/go.mod h1:5pWMHQbX5EPX2/62yrJeAkowc+lfs/XD7Uxpq3pI6kk=
10521052
go.opencensus.io v0.23.0 h1:gqCw0LfLxScz8irSi8exQc7fyQ0fKQU/qnC/X8+V/1M=
10531053
go.opencensus.io v0.23.0/go.mod h1:XItmlyltB5F7CS4xOC1DcqMoFqwtC6OG2xF7mCv7P7E=
1054-
go.opentelemetry.io/collector v0.22.1-0.20210323150444-0c6757ec71a5 h1:uYfkVpGK++c0AmXdCWh9jhAZ3PiFvhe+7lcyF4eqdqc=
1055-
go.opentelemetry.io/collector v0.22.1-0.20210323150444-0c6757ec71a5/go.mod h1:wMTwy0/4xrFRZj/XX1UH5VAd0WAVts9Rq7ZKQldCIkU=
1054+
go.opentelemetry.io/collector v0.23.0 h1:IdLOPZfTwiL+XndzOYOBEWgLGetuE8b3O2hw0m0wQXk=
1055+
go.opentelemetry.io/collector v0.23.0/go.mod h1:wMTwy0/4xrFRZj/XX1UH5VAd0WAVts9Rq7ZKQldCIkU=
10561056
go.uber.org/atomic v1.3.2/go.mod h1:gD2HeocX3+yG+ygLZcrzQJaqmWj9AIm7n08wl/qW/PE=
10571057
go.uber.org/atomic v1.4.0/go.mod h1:gD2HeocX3+yG+ygLZcrzQJaqmWj9AIm7n08wl/qW/PE=
10581058
go.uber.org/atomic v1.5.0/go.mod h1:sABNBOSYdrvTF6hTgEIbc7YasKWGhgEQZyfxyTvoXHQ=

exporter/awsxrayexporter/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ require (
1414
github.com/open-telemetry/opentelemetry-collector-contrib/internal/awsxray v0.0.0-00010101000000-000000000000
1515
github.com/pelletier/go-toml v1.8.0 // indirect
1616
github.com/stretchr/testify v1.7.0
17-
go.opentelemetry.io/collector v0.22.1-0.20210323150444-0c6757ec71a5
17+
go.opentelemetry.io/collector v0.23.0
1818
go.uber.org/zap v1.16.0
1919
golang.org/x/net v0.0.0-20210119194325-5f4716e94777
2020
gopkg.in/ini.v1 v1.57.0 // indirect

exporter/awsxrayexporter/go.sum

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1051,8 +1051,8 @@ go.opencensus.io v0.22.4/go.mod h1:yxeiOL68Rb0Xd1ddK5vPZ/oVn4vY4Ynel7k9FzqtOIw=
10511051
go.opencensus.io v0.22.5/go.mod h1:5pWMHQbX5EPX2/62yrJeAkowc+lfs/XD7Uxpq3pI6kk=
10521052
go.opencensus.io v0.23.0 h1:gqCw0LfLxScz8irSi8exQc7fyQ0fKQU/qnC/X8+V/1M=
10531053
go.opencensus.io v0.23.0/go.mod h1:XItmlyltB5F7CS4xOC1DcqMoFqwtC6OG2xF7mCv7P7E=
1054-
go.opentelemetry.io/collector v0.22.1-0.20210323150444-0c6757ec71a5 h1:uYfkVpGK++c0AmXdCWh9jhAZ3PiFvhe+7lcyF4eqdqc=
1055-
go.opentelemetry.io/collector v0.22.1-0.20210323150444-0c6757ec71a5/go.mod h1:wMTwy0/4xrFRZj/XX1UH5VAd0WAVts9Rq7ZKQldCIkU=
1054+
go.opentelemetry.io/collector v0.23.0 h1:IdLOPZfTwiL+XndzOYOBEWgLGetuE8b3O2hw0m0wQXk=
1055+
go.opentelemetry.io/collector v0.23.0/go.mod h1:wMTwy0/4xrFRZj/XX1UH5VAd0WAVts9Rq7ZKQldCIkU=
10561056
go.uber.org/atomic v1.3.2/go.mod h1:gD2HeocX3+yG+ygLZcrzQJaqmWj9AIm7n08wl/qW/PE=
10571057
go.uber.org/atomic v1.4.0/go.mod h1:gD2HeocX3+yG+ygLZcrzQJaqmWj9AIm7n08wl/qW/PE=
10581058
go.uber.org/atomic v1.5.0/go.mod h1:sABNBOSYdrvTF6hTgEIbc7YasKWGhgEQZyfxyTvoXHQ=

exporter/azuremonitorexporter/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ require (
1515
github.com/pelletier/go-toml v1.8.0 // indirect
1616
github.com/stretchr/testify v1.7.0
1717
github.com/tedsuo/ifrit v0.0.0-20191009134036-9a97d0632f00 // indirect
18-
go.opentelemetry.io/collector v0.22.1-0.20210323150444-0c6757ec71a5
18+
go.opentelemetry.io/collector v0.23.0
1919
go.uber.org/zap v1.16.0
2020
golang.org/x/net v0.0.0-20210119194325-5f4716e94777
2121
gopkg.in/ini.v1 v1.57.0 // indirect

exporter/azuremonitorexporter/go.sum

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1061,8 +1061,8 @@ go.opencensus.io v0.22.4/go.mod h1:yxeiOL68Rb0Xd1ddK5vPZ/oVn4vY4Ynel7k9FzqtOIw=
10611061
go.opencensus.io v0.22.5/go.mod h1:5pWMHQbX5EPX2/62yrJeAkowc+lfs/XD7Uxpq3pI6kk=
10621062
go.opencensus.io v0.23.0 h1:gqCw0LfLxScz8irSi8exQc7fyQ0fKQU/qnC/X8+V/1M=
10631063
go.opencensus.io v0.23.0/go.mod h1:XItmlyltB5F7CS4xOC1DcqMoFqwtC6OG2xF7mCv7P7E=
1064-
go.opentelemetry.io/collector v0.22.1-0.20210323150444-0c6757ec71a5 h1:uYfkVpGK++c0AmXdCWh9jhAZ3PiFvhe+7lcyF4eqdqc=
1065-
go.opentelemetry.io/collector v0.22.1-0.20210323150444-0c6757ec71a5/go.mod h1:wMTwy0/4xrFRZj/XX1UH5VAd0WAVts9Rq7ZKQldCIkU=
1064+
go.opentelemetry.io/collector v0.23.0 h1:IdLOPZfTwiL+XndzOYOBEWgLGetuE8b3O2hw0m0wQXk=
1065+
go.opentelemetry.io/collector v0.23.0/go.mod h1:wMTwy0/4xrFRZj/XX1UH5VAd0WAVts9Rq7ZKQldCIkU=
10661066
go.uber.org/atomic v1.3.2/go.mod h1:gD2HeocX3+yG+ygLZcrzQJaqmWj9AIm7n08wl/qW/PE=
10671067
go.uber.org/atomic v1.4.0/go.mod h1:gD2HeocX3+yG+ygLZcrzQJaqmWj9AIm7n08wl/qW/PE=
10681068
go.uber.org/atomic v1.5.0/go.mod h1:sABNBOSYdrvTF6hTgEIbc7YasKWGhgEQZyfxyTvoXHQ=

exporter/carbonexporter/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ require (
1313
github.com/onsi/gomega v1.10.2 // indirect
1414
github.com/pelletier/go-toml v1.8.0 // indirect
1515
github.com/stretchr/testify v1.7.0
16-
go.opentelemetry.io/collector v0.22.1-0.20210323150444-0c6757ec71a5
16+
go.opentelemetry.io/collector v0.23.0
1717
go.uber.org/zap v1.16.0
1818
google.golang.org/protobuf v1.26.0
1919
gopkg.in/ini.v1 v1.57.0 // indirect

exporter/carbonexporter/go.sum

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1050,8 +1050,8 @@ go.opencensus.io v0.22.4/go.mod h1:yxeiOL68Rb0Xd1ddK5vPZ/oVn4vY4Ynel7k9FzqtOIw=
10501050
go.opencensus.io v0.22.5/go.mod h1:5pWMHQbX5EPX2/62yrJeAkowc+lfs/XD7Uxpq3pI6kk=
10511051
go.opencensus.io v0.23.0 h1:gqCw0LfLxScz8irSi8exQc7fyQ0fKQU/qnC/X8+V/1M=
10521052
go.opencensus.io v0.23.0/go.mod h1:XItmlyltB5F7CS4xOC1DcqMoFqwtC6OG2xF7mCv7P7E=
1053-
go.opentelemetry.io/collector v0.22.1-0.20210323150444-0c6757ec71a5 h1:uYfkVpGK++c0AmXdCWh9jhAZ3PiFvhe+7lcyF4eqdqc=
1054-
go.opentelemetry.io/collector v0.22.1-0.20210323150444-0c6757ec71a5/go.mod h1:wMTwy0/4xrFRZj/XX1UH5VAd0WAVts9Rq7ZKQldCIkU=
1053+
go.opentelemetry.io/collector v0.23.0 h1:IdLOPZfTwiL+XndzOYOBEWgLGetuE8b3O2hw0m0wQXk=
1054+
go.opentelemetry.io/collector v0.23.0/go.mod h1:wMTwy0/4xrFRZj/XX1UH5VAd0WAVts9Rq7ZKQldCIkU=
10551055
go.uber.org/atomic v1.3.2/go.mod h1:gD2HeocX3+yG+ygLZcrzQJaqmWj9AIm7n08wl/qW/PE=
10561056
go.uber.org/atomic v1.4.0/go.mod h1:gD2HeocX3+yG+ygLZcrzQJaqmWj9AIm7n08wl/qW/PE=
10571057
go.uber.org/atomic v1.5.0/go.mod h1:sABNBOSYdrvTF6hTgEIbc7YasKWGhgEQZyfxyTvoXHQ=

exporter/datadogexporter/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ require (
1919
github.com/pelletier/go-toml v1.8.0 // indirect
2020
github.com/stretchr/testify v1.7.0
2121
github.com/zorkian/go-datadog-api v2.29.0+incompatible // indirect
22-
go.opentelemetry.io/collector v0.22.1-0.20210323150444-0c6757ec71a5
22+
go.opentelemetry.io/collector v0.23.0
2323
go.uber.org/zap v1.16.0
2424
gopkg.in/DataDog/dd-trace-go.v1 v1.28.0
2525
gopkg.in/ini.v1 v1.57.0 // indirect

exporter/datadogexporter/go.sum

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1081,8 +1081,8 @@ go.opencensus.io v0.22.4/go.mod h1:yxeiOL68Rb0Xd1ddK5vPZ/oVn4vY4Ynel7k9FzqtOIw=
10811081
go.opencensus.io v0.22.5/go.mod h1:5pWMHQbX5EPX2/62yrJeAkowc+lfs/XD7Uxpq3pI6kk=
10821082
go.opencensus.io v0.23.0 h1:gqCw0LfLxScz8irSi8exQc7fyQ0fKQU/qnC/X8+V/1M=
10831083
go.opencensus.io v0.23.0/go.mod h1:XItmlyltB5F7CS4xOC1DcqMoFqwtC6OG2xF7mCv7P7E=
1084-
go.opentelemetry.io/collector v0.22.1-0.20210323150444-0c6757ec71a5 h1:uYfkVpGK++c0AmXdCWh9jhAZ3PiFvhe+7lcyF4eqdqc=
1085-
go.opentelemetry.io/collector v0.22.1-0.20210323150444-0c6757ec71a5/go.mod h1:wMTwy0/4xrFRZj/XX1UH5VAd0WAVts9Rq7ZKQldCIkU=
1084+
go.opentelemetry.io/collector v0.23.0 h1:IdLOPZfTwiL+XndzOYOBEWgLGetuE8b3O2hw0m0wQXk=
1085+
go.opentelemetry.io/collector v0.23.0/go.mod h1:wMTwy0/4xrFRZj/XX1UH5VAd0WAVts9Rq7ZKQldCIkU=
10861086
go.uber.org/atomic v1.3.2/go.mod h1:gD2HeocX3+yG+ygLZcrzQJaqmWj9AIm7n08wl/qW/PE=
10871087
go.uber.org/atomic v1.4.0/go.mod h1:gD2HeocX3+yG+ygLZcrzQJaqmWj9AIm7n08wl/qW/PE=
10881088
go.uber.org/atomic v1.5.0/go.mod h1:sABNBOSYdrvTF6hTgEIbc7YasKWGhgEQZyfxyTvoXHQ=

exporter/dynatraceexporter/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ require (
1212
github.com/onsi/gomega v1.10.2 // indirect
1313
github.com/pelletier/go-toml v1.8.0 // indirect
1414
github.com/stretchr/testify v1.7.0
15-
go.opentelemetry.io/collector v0.22.1-0.20210323150444-0c6757ec71a5
15+
go.opentelemetry.io/collector v0.23.0
1616
go.uber.org/zap v1.16.0
1717
gopkg.in/ini.v1 v1.57.0 // indirect
1818
)

exporter/dynatraceexporter/go.sum

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1050,8 +1050,8 @@ go.opencensus.io v0.22.4/go.mod h1:yxeiOL68Rb0Xd1ddK5vPZ/oVn4vY4Ynel7k9FzqtOIw=
10501050
go.opencensus.io v0.22.5/go.mod h1:5pWMHQbX5EPX2/62yrJeAkowc+lfs/XD7Uxpq3pI6kk=
10511051
go.opencensus.io v0.23.0 h1:gqCw0LfLxScz8irSi8exQc7fyQ0fKQU/qnC/X8+V/1M=
10521052
go.opencensus.io v0.23.0/go.mod h1:XItmlyltB5F7CS4xOC1DcqMoFqwtC6OG2xF7mCv7P7E=
1053-
go.opentelemetry.io/collector v0.22.1-0.20210323150444-0c6757ec71a5 h1:uYfkVpGK++c0AmXdCWh9jhAZ3PiFvhe+7lcyF4eqdqc=
1054-
go.opentelemetry.io/collector v0.22.1-0.20210323150444-0c6757ec71a5/go.mod h1:wMTwy0/4xrFRZj/XX1UH5VAd0WAVts9Rq7ZKQldCIkU=
1053+
go.opentelemetry.io/collector v0.23.0 h1:IdLOPZfTwiL+XndzOYOBEWgLGetuE8b3O2hw0m0wQXk=
1054+
go.opentelemetry.io/collector v0.23.0/go.mod h1:wMTwy0/4xrFRZj/XX1UH5VAd0WAVts9Rq7ZKQldCIkU=
10551055
go.uber.org/atomic v1.3.2/go.mod h1:gD2HeocX3+yG+ygLZcrzQJaqmWj9AIm7n08wl/qW/PE=
10561056
go.uber.org/atomic v1.4.0/go.mod h1:gD2HeocX3+yG+ygLZcrzQJaqmWj9AIm7n08wl/qW/PE=
10571057
go.uber.org/atomic v1.5.0/go.mod h1:sABNBOSYdrvTF6hTgEIbc7YasKWGhgEQZyfxyTvoXHQ=

exporter/elasticexporter/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ require (
1616
github.com/stretchr/testify v1.7.0
1717
go.elastic.co/apm v1.9.1-0.20201218004853-18a8126106c6
1818
go.elastic.co/fastjson v1.1.0
19-
go.opentelemetry.io/collector v0.22.1-0.20210323150444-0c6757ec71a5
19+
go.opentelemetry.io/collector v0.23.0
2020
go.uber.org/zap v1.16.0
2121
gopkg.in/ini.v1 v1.57.0 // indirect
2222
howett.net/plist v0.0.0-20201026045517-117a925f2150 // indirect

exporter/elasticexporter/go.sum

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1069,8 +1069,8 @@ go.opencensus.io v0.22.4/go.mod h1:yxeiOL68Rb0Xd1ddK5vPZ/oVn4vY4Ynel7k9FzqtOIw=
10691069
go.opencensus.io v0.22.5/go.mod h1:5pWMHQbX5EPX2/62yrJeAkowc+lfs/XD7Uxpq3pI6kk=
10701070
go.opencensus.io v0.23.0 h1:gqCw0LfLxScz8irSi8exQc7fyQ0fKQU/qnC/X8+V/1M=
10711071
go.opencensus.io v0.23.0/go.mod h1:XItmlyltB5F7CS4xOC1DcqMoFqwtC6OG2xF7mCv7P7E=
1072-
go.opentelemetry.io/collector v0.22.1-0.20210323150444-0c6757ec71a5 h1:uYfkVpGK++c0AmXdCWh9jhAZ3PiFvhe+7lcyF4eqdqc=
1073-
go.opentelemetry.io/collector v0.22.1-0.20210323150444-0c6757ec71a5/go.mod h1:wMTwy0/4xrFRZj/XX1UH5VAd0WAVts9Rq7ZKQldCIkU=
1072+
go.opentelemetry.io/collector v0.23.0 h1:IdLOPZfTwiL+XndzOYOBEWgLGetuE8b3O2hw0m0wQXk=
1073+
go.opentelemetry.io/collector v0.23.0/go.mod h1:wMTwy0/4xrFRZj/XX1UH5VAd0WAVts9Rq7ZKQldCIkU=
10741074
go.uber.org/atomic v1.3.2/go.mod h1:gD2HeocX3+yG+ygLZcrzQJaqmWj9AIm7n08wl/qW/PE=
10751075
go.uber.org/atomic v1.4.0/go.mod h1:gD2HeocX3+yG+ygLZcrzQJaqmWj9AIm7n08wl/qW/PE=
10761076
go.uber.org/atomic v1.5.0/go.mod h1:sABNBOSYdrvTF6hTgEIbc7YasKWGhgEQZyfxyTvoXHQ=

exporter/elasticsearchexporter/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ require (
1414
github.com/onsi/gomega v1.10.2 // indirect
1515
github.com/pelletier/go-toml v1.8.0 // indirect
1616
github.com/stretchr/testify v1.7.0
17-
go.opentelemetry.io/collector v0.22.1-0.20210323150444-0c6757ec71a5
17+
go.opentelemetry.io/collector v0.23.0
1818
go.uber.org/zap v1.16.0
1919
gopkg.in/ini.v1 v1.57.0 // indirect
2020
)

exporter/elasticsearchexporter/go.sum

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1052,8 +1052,8 @@ go.opencensus.io v0.22.4/go.mod h1:yxeiOL68Rb0Xd1ddK5vPZ/oVn4vY4Ynel7k9FzqtOIw=
10521052
go.opencensus.io v0.22.5/go.mod h1:5pWMHQbX5EPX2/62yrJeAkowc+lfs/XD7Uxpq3pI6kk=
10531053
go.opencensus.io v0.23.0 h1:gqCw0LfLxScz8irSi8exQc7fyQ0fKQU/qnC/X8+V/1M=
10541054
go.opencensus.io v0.23.0/go.mod h1:XItmlyltB5F7CS4xOC1DcqMoFqwtC6OG2xF7mCv7P7E=
1055-
go.opentelemetry.io/collector v0.22.1-0.20210323150444-0c6757ec71a5 h1:uYfkVpGK++c0AmXdCWh9jhAZ3PiFvhe+7lcyF4eqdqc=
1056-
go.opentelemetry.io/collector v0.22.1-0.20210323150444-0c6757ec71a5/go.mod h1:wMTwy0/4xrFRZj/XX1UH5VAd0WAVts9Rq7ZKQldCIkU=
1055+
go.opentelemetry.io/collector v0.23.0 h1:IdLOPZfTwiL+XndzOYOBEWgLGetuE8b3O2hw0m0wQXk=
1056+
go.opentelemetry.io/collector v0.23.0/go.mod h1:wMTwy0/4xrFRZj/XX1UH5VAd0WAVts9Rq7ZKQldCIkU=
10571057
go.uber.org/atomic v1.3.2/go.mod h1:gD2HeocX3+yG+ygLZcrzQJaqmWj9AIm7n08wl/qW/PE=
10581058
go.uber.org/atomic v1.4.0/go.mod h1:gD2HeocX3+yG+ygLZcrzQJaqmWj9AIm7n08wl/qW/PE=
10591059
go.uber.org/atomic v1.5.0/go.mod h1:sABNBOSYdrvTF6hTgEIbc7YasKWGhgEQZyfxyTvoXHQ=

exporter/f5cloudexporter/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ require (
1212
github.com/onsi/gomega v1.10.2 // indirect
1313
github.com/pelletier/go-toml v1.8.0 // indirect
1414
github.com/stretchr/testify v1.7.0
15-
go.opentelemetry.io/collector v0.22.1-0.20210323150444-0c6757ec71a5
15+
go.opentelemetry.io/collector v0.23.0
1616
go.uber.org/zap v1.16.0
1717
golang.org/x/oauth2 v0.0.0-20210313182246-cd4f82c27b84
1818
google.golang.org/api v0.42.0

exporter/f5cloudexporter/go.sum

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1055,8 +1055,8 @@ go.opencensus.io v0.22.4/go.mod h1:yxeiOL68Rb0Xd1ddK5vPZ/oVn4vY4Ynel7k9FzqtOIw=
10551055
go.opencensus.io v0.22.5/go.mod h1:5pWMHQbX5EPX2/62yrJeAkowc+lfs/XD7Uxpq3pI6kk=
10561056
go.opencensus.io v0.23.0 h1:gqCw0LfLxScz8irSi8exQc7fyQ0fKQU/qnC/X8+V/1M=
10571057
go.opencensus.io v0.23.0/go.mod h1:XItmlyltB5F7CS4xOC1DcqMoFqwtC6OG2xF7mCv7P7E=
1058-
go.opentelemetry.io/collector v0.22.1-0.20210323150444-0c6757ec71a5 h1:uYfkVpGK++c0AmXdCWh9jhAZ3PiFvhe+7lcyF4eqdqc=
1059-
go.opentelemetry.io/collector v0.22.1-0.20210323150444-0c6757ec71a5/go.mod h1:wMTwy0/4xrFRZj/XX1UH5VAd0WAVts9Rq7ZKQldCIkU=
1058+
go.opentelemetry.io/collector v0.23.0 h1:IdLOPZfTwiL+XndzOYOBEWgLGetuE8b3O2hw0m0wQXk=
1059+
go.opentelemetry.io/collector v0.23.0/go.mod h1:wMTwy0/4xrFRZj/XX1UH5VAd0WAVts9Rq7ZKQldCIkU=
10601060
go.uber.org/atomic v1.3.2/go.mod h1:gD2HeocX3+yG+ygLZcrzQJaqmWj9AIm7n08wl/qW/PE=
10611061
go.uber.org/atomic v1.4.0/go.mod h1:gD2HeocX3+yG+ygLZcrzQJaqmWj9AIm7n08wl/qW/PE=
10621062
go.uber.org/atomic v1.5.0/go.mod h1:sABNBOSYdrvTF6hTgEIbc7YasKWGhgEQZyfxyTvoXHQ=

exporter/googlecloudexporter/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ require (
1616
github.com/pelletier/go-toml v1.8.0 // indirect
1717
github.com/stretchr/testify v1.7.0
1818
go.opencensus.io v0.23.0
19-
go.opentelemetry.io/collector v0.22.1-0.20210323150444-0c6757ec71a5
19+
go.opentelemetry.io/collector v0.23.0
2020
go.opentelemetry.io/otel v0.19.0
2121
go.opentelemetry.io/otel/sdk v0.19.0
2222
go.opentelemetry.io/otel/trace v0.19.0

exporter/googlecloudexporter/go.sum

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1063,8 +1063,8 @@ go.opencensus.io v0.22.4/go.mod h1:yxeiOL68Rb0Xd1ddK5vPZ/oVn4vY4Ynel7k9FzqtOIw=
10631063
go.opencensus.io v0.22.5/go.mod h1:5pWMHQbX5EPX2/62yrJeAkowc+lfs/XD7Uxpq3pI6kk=
10641064
go.opencensus.io v0.23.0 h1:gqCw0LfLxScz8irSi8exQc7fyQ0fKQU/qnC/X8+V/1M=
10651065
go.opencensus.io v0.23.0/go.mod h1:XItmlyltB5F7CS4xOC1DcqMoFqwtC6OG2xF7mCv7P7E=
1066-
go.opentelemetry.io/collector v0.22.1-0.20210323150444-0c6757ec71a5 h1:uYfkVpGK++c0AmXdCWh9jhAZ3PiFvhe+7lcyF4eqdqc=
1067-
go.opentelemetry.io/collector v0.22.1-0.20210323150444-0c6757ec71a5/go.mod h1:wMTwy0/4xrFRZj/XX1UH5VAd0WAVts9Rq7ZKQldCIkU=
1066+
go.opentelemetry.io/collector v0.23.0 h1:IdLOPZfTwiL+XndzOYOBEWgLGetuE8b3O2hw0m0wQXk=
1067+
go.opentelemetry.io/collector v0.23.0/go.mod h1:wMTwy0/4xrFRZj/XX1UH5VAd0WAVts9Rq7ZKQldCIkU=
10681068
go.opentelemetry.io/otel v0.19.0 h1:Lenfy7QHRXPZVsw/12CWpxX6d/JkrX8wrx2vO8G80Ng=
10691069
go.opentelemetry.io/otel v0.19.0/go.mod h1:j9bF567N9EfomkSidSfmMwIwIBuP37AMAIzVW85OxSg=
10701070
go.opentelemetry.io/otel/metric v0.19.0 h1:dtZ1Ju44gkJkYvo+3qGqVXmf88tc+a42edOywypengg=

0 commit comments

Comments
 (0)