Skip to content

Commit a193c46

Browse files
committed
fix: downgrade opentelemetry-operations-go to 0.34.1
as we see memory leak type of issue and a constant increase of bytes to google with updated version of opentelemetry-operations-go
1 parent 4aea0a6 commit a193c46

File tree

2 files changed

+16
-16
lines changed

2 files changed

+16
-16
lines changed

go.mod

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@ require (
66
cloud.google.com/go/compute/metadata v0.2.3
77
cloud.google.com/go/profiler v0.3.1
88
cloud.google.com/go/pubsub v1.28.0
9-
github.com/GoogleCloudPlatform/opentelemetry-operations-go/exporter/metric v0.35.1
10-
github.com/GoogleCloudPlatform/opentelemetry-operations-go/exporter/trace v1.11.1
11-
github.com/GoogleCloudPlatform/opentelemetry-operations-go/propagator v0.35.1
9+
github.com/GoogleCloudPlatform/opentelemetry-operations-go/exporter/metric v0.34.1
10+
github.com/GoogleCloudPlatform/opentelemetry-operations-go/exporter/trace v1.10.1
11+
github.com/GoogleCloudPlatform/opentelemetry-operations-go/propagator v0.0.0-20221104160235-e955c204f4f2
1212
github.com/google/go-cmp v0.5.9
1313
github.com/soheilhy/cmux v0.1.5
1414
go.einride.tech/protobuf-sensitive v0.3.0
@@ -40,8 +40,8 @@ require (
4040
cloud.google.com/go/compute v1.18.0 // indirect
4141
cloud.google.com/go/monitoring v1.12.0 // indirect
4242
cloud.google.com/go/trace v1.8.0 // indirect
43-
github.com/GoogleCloudPlatform/opentelemetry-operations-go/detectors/gcp v1.11.1 // indirect
44-
github.com/GoogleCloudPlatform/opentelemetry-operations-go/internal/resourcemapping v0.35.1 // indirect
43+
github.com/GoogleCloudPlatform/opentelemetry-operations-go/detectors/gcp v1.11.0 // indirect
44+
github.com/GoogleCloudPlatform/opentelemetry-operations-go/internal/resourcemapping v0.34.1 // indirect
4545
github.com/benbjohnson/clock v1.3.0 // indirect
4646
github.com/felixge/httpsnoop v1.0.3 // indirect
4747
github.com/go-logr/logr v1.2.3 // indirect

go.sum

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -19,17 +19,17 @@ cloud.google.com/go/storage v1.28.1 h1:F5QDG5ChchaAVQhINh24U99OWHURqrW8OmQcGKXcb
1919
cloud.google.com/go/trace v1.8.0 h1:GFPLxbp5/FzdgTzor3nlNYNxMd6hLmzkE7sA9F0qQcA=
2020
cloud.google.com/go/trace v1.8.0/go.mod h1:zH7vcsbAhklH8hWFig58HvxcxyQbaIqMarMg9hn5ECA=
2121
github.com/BurntSushi/toml v0.3.1/go.mod h1:xHWCNGjB5oqiDr8zfno3MHue2Ht5sIBksp03qcyfWMU=
22-
github.com/GoogleCloudPlatform/opentelemetry-operations-go/detectors/gcp v1.11.1 h1:NZtPMMPJ/IlRTTjtC3jl34km75WqT9RdwvYPcGRCXZ8=
23-
github.com/GoogleCloudPlatform/opentelemetry-operations-go/detectors/gcp v1.11.1/go.mod h1:HpmGbYLf1fsWiqVA0Z2oKh7qi7BroCgOl2NqB2N/TG4=
24-
github.com/GoogleCloudPlatform/opentelemetry-operations-go/exporter/metric v0.35.1 h1:48l9+VFX8oKqHKauxvr/1NXNk3tgXZnTY57Yi9Hx6Pc=
25-
github.com/GoogleCloudPlatform/opentelemetry-operations-go/exporter/metric v0.35.1/go.mod h1:kB/RyTeUBj2NV7i6wmRxvkG+tlAM3UD33tNC+CZU8fU=
26-
github.com/GoogleCloudPlatform/opentelemetry-operations-go/exporter/trace v1.11.1 h1:O7dTg9ukLjzIOOLpC8RBaD1EqWD3jqicwhpju6C8meg=
27-
github.com/GoogleCloudPlatform/opentelemetry-operations-go/exporter/trace v1.11.1/go.mod h1:EbS3BDOG4ESDJWUB2jE3On/u00ayOUSFeUzd4759bfU=
28-
github.com/GoogleCloudPlatform/opentelemetry-operations-go/internal/cloudmock v0.35.1 h1:s503Jzh+SCMN557CUTsenBo8vNxmGZK7zWdNlePQ9TU=
29-
github.com/GoogleCloudPlatform/opentelemetry-operations-go/internal/resourcemapping v0.35.1 h1:IB4aQsSppxP/PVmnCstDm9v00hsPowqrohoW4FZ+amc=
30-
github.com/GoogleCloudPlatform/opentelemetry-operations-go/internal/resourcemapping v0.35.1/go.mod h1:H785fvlgotVZqht+1rHhXSs8EJ8uPVmpBYkTYO3ccpc=
31-
github.com/GoogleCloudPlatform/opentelemetry-operations-go/propagator v0.35.1 h1:UcJNMnXeuy7QUCDjmu+rGDJsvK4GFKy8oR34vNj/29o=
32-
github.com/GoogleCloudPlatform/opentelemetry-operations-go/propagator v0.35.1/go.mod h1:1+b5oFxaeaSoN5Iapn/8DV9VCJOvNA9jVLXJFcoGXOM=
22+
github.com/GoogleCloudPlatform/opentelemetry-operations-go/detectors/gcp v1.11.0 h1:hc3Fb+ufGf+EznhPOSvQODMl9Qn++cATyI/7q7E7geM=
23+
github.com/GoogleCloudPlatform/opentelemetry-operations-go/detectors/gcp v1.11.0/go.mod h1:HpmGbYLf1fsWiqVA0Z2oKh7qi7BroCgOl2NqB2N/TG4=
24+
github.com/GoogleCloudPlatform/opentelemetry-operations-go/exporter/metric v0.34.1 h1:kbfuKQkOFb2XuuEcMTYbWtlVPiNKhLTyDjQcKx1pFqQ=
25+
github.com/GoogleCloudPlatform/opentelemetry-operations-go/exporter/metric v0.34.1/go.mod h1:pGSEvxQ2PGMKdz6oiiTjzfM8pWtoWHSymSyUHMsZkUA=
26+
github.com/GoogleCloudPlatform/opentelemetry-operations-go/exporter/trace v1.10.1 h1:E0Hwk1YC0lWXJboAvQrOnDSyVpmdlqC2v4m+GNmNszA=
27+
github.com/GoogleCloudPlatform/opentelemetry-operations-go/exporter/trace v1.10.1/go.mod h1:ZWWusXNLjdTConvbpJZf+/5xxtLfu7y3hRfKjmb/DOI=
28+
github.com/GoogleCloudPlatform/opentelemetry-operations-go/internal/cloudmock v0.34.1 h1:2G1eO4RSvcTNncDivyGTd3Zh9tozmMeA2JpF07QEYlc=
29+
github.com/GoogleCloudPlatform/opentelemetry-operations-go/internal/resourcemapping v0.34.1 h1:2zV0DiJaSJ+zoaYwMuWAkqMQyLggPfStnrwrFNv+ty4=
30+
github.com/GoogleCloudPlatform/opentelemetry-operations-go/internal/resourcemapping v0.34.1/go.mod h1:oBeOrlgeIZVX6bRZ+TDJiEuL1bsDdgAWKa4iETycZf8=
31+
github.com/GoogleCloudPlatform/opentelemetry-operations-go/propagator v0.0.0-20221104160235-e955c204f4f2 h1:B5e6QFA7aJvO+vEXYJMW38Rv3riaQ7qbbVlMARRLP2Y=
32+
github.com/GoogleCloudPlatform/opentelemetry-operations-go/propagator v0.0.0-20221104160235-e955c204f4f2/go.mod h1:FwtSi1M0P8cuMlHxVso1vcivukprUr1bBwf15CRypOI=
3333
github.com/benbjohnson/clock v1.3.0 h1:ip6w0uFQkncKQ979AypyG0ER7mqUSBdKLOgAle/AT8A=
3434
github.com/benbjohnson/clock v1.3.0/go.mod h1:J11/hYXuz8f4ySSvYwY0FKfm+ezbsZBKZxNJlLklBHA=
3535
github.com/census-instrumentation/opencensus-proto v0.2.1/go.mod h1:f6KPmirojxKA12rnyqOA5BBL4O983OfeGPqjHWSTneU=

0 commit comments

Comments
 (0)