From 26d72c26852700d7ce67b74f9b48b587c8fea8a3 Mon Sep 17 00:00:00 2001 From: Raj Nishtala Date: Wed, 16 Oct 2024 15:26:09 -0400 Subject: [PATCH 1/3] fix(compression): Changes that follow core breaking changes to the confighttp API --- exporter/splunkhecexporter/client.go | 3 ++- pkg/datadog/config/config.go | 2 +- pkg/datadog/config/config_test.go | 3 ++- testbed/testbed/senders.go | 2 +- 4 files changed, 6 insertions(+), 4 deletions(-) diff --git a/exporter/splunkhecexporter/client.go b/exporter/splunkhecexporter/client.go index 70e2e11bb659..3802c9f6fe69 100644 --- a/exporter/splunkhecexporter/client.go +++ b/exporter/splunkhecexporter/client.go @@ -14,6 +14,7 @@ import ( "github.com/goccy/go-json" "go.opentelemetry.io/collector/component" + "go.opentelemetry.io/collector/config/configcompression" "go.opentelemetry.io/collector/consumer/consumererror" "go.opentelemetry.io/collector/exporter" "go.opentelemetry.io/collector/pdata/plog" @@ -658,7 +659,7 @@ func checkHecHealth(ctx context.Context, client *http.Client, healthCheckURL *ur func buildHTTPClient(ctx context.Context, config *Config, host component.Host, telemetrySettings component.TelemetrySettings) (*http.Client, error) { // we handle compression explicitly. - config.ClientConfig.Compression = "" + config.ClientConfig.Compression = configcompression.TypeWithLevel{Type: "", Level: 0} return config.ToClient(ctx, host, telemetrySettings) } diff --git a/pkg/datadog/config/config.go b/pkg/datadog/config/config.go index 65133187c5b3..433c3b8c741c 100644 --- a/pkg/datadog/config/config.go +++ b/pkg/datadog/config/config.go @@ -160,7 +160,7 @@ func validateClientConfig(cfg confighttp.ClientConfig) error { if cfg.Endpoint != "" { unsupported = append(unsupported, "endpoint") } - if cfg.Compression != "" { + if cfg.Compression.Type != "" { unsupported = append(unsupported, "compression") } if len(cfg.Headers) > 0 { diff --git a/pkg/datadog/config/config_test.go b/pkg/datadog/config/config_test.go index 11c0d2db2bb2..128bb499fc40 100644 --- a/pkg/datadog/config/config_test.go +++ b/pkg/datadog/config/config_test.go @@ -13,6 +13,7 @@ import ( "go.opentelemetry.io/collector/component" "go.opentelemetry.io/collector/component/componenttest" "go.opentelemetry.io/collector/config/configauth" + "go.opentelemetry.io/collector/config/configcompression" "go.opentelemetry.io/collector/config/confighttp" "go.opentelemetry.io/collector/config/confignet" "go.opentelemetry.io/collector/config/configopaque" @@ -183,7 +184,7 @@ func TestValidate(t *testing.T) { API: APIConfig{Key: "aaaaaaa"}, ClientConfig: confighttp.ClientConfig{ Endpoint: "endpoint", - Compression: "gzip", + Compression: configcompression.TypeWithLevel{Type: configcompression.TypeGzip, Level: -1}, Auth: &auth, Headers: map[string]configopaque.String{"key": "val"}, HTTP2ReadIdleTimeout: 250, diff --git a/testbed/testbed/senders.go b/testbed/testbed/senders.go index da69e2d337a9..24d62ec3998a 100644 --- a/testbed/testbed/senders.go +++ b/testbed/testbed/senders.go @@ -78,7 +78,7 @@ func (dsb *DataSenderBase) Flush() { type otlpHTTPDataSender struct { DataSenderBase - compression configcompression.Type + compression configcompression.TypeWithLevel } func (ods *otlpHTTPDataSender) fillConfig(cfg *otlphttpexporter.Config) *otlphttpexporter.Config { From 335785aafb5700cc307f0543ce277fb337387f75 Mon Sep 17 00:00:00 2001 From: Raj Nishtala Date: Tue, 19 Nov 2024 18:32:04 -0500 Subject: [PATCH 2/3] fix: Use the compression level branch changes to fix tests --- .chloggen/fix-contrib-tests.yaml | 27 +++++++++++++++++++++++++++ exporter/splunkhecexporter/go.mod | 4 ++++ exporter/splunkhecexporter/go.sum | 4 ++++ pkg/datadog/go.mod | 4 ++++ pkg/datadog/go.sum | 4 ++++ testbed/go.mod | 4 ++++ 6 files changed, 47 insertions(+) create mode 100644 .chloggen/fix-contrib-tests.yaml diff --git a/.chloggen/fix-contrib-tests.yaml b/.chloggen/fix-contrib-tests.yaml new file mode 100644 index 000000000000..8914bad8f8f9 --- /dev/null +++ b/.chloggen/fix-contrib-tests.yaml @@ -0,0 +1,27 @@ +# Use this changelog template to create an entry for release notes. + +# One of 'breaking', 'deprecation', 'new_component', 'enhancement', 'bug_fix' +change_type: 'breaking' + +# The name of the component, or a single word describing the area of concern, (e.g. filelogreceiver) +component: Multiple components + +# A brief description of the change. Surround your text with quotes ("") if it needs to start with a backtick (`). +note: Multiple components have been updated to fix the failing contrib tests, because of core API changes. + +# Mandatory: One or more tracking issues related to the change. You can use the PR number here if no issue exists. +issues: [10467] + +# (Optional) One or more lines of additional information to render under the primary note. +# These lines will be padded with 2 spaces and then inserted directly into the document. +# Use pipe (|) for multiline entries. +subtext: + +# If your change doesn't affect end users or the exported elements of any package, +# you should instead start your pull request title with [chore] or use the "Skip Changelog" label. +# Optional: The change log or logs in which this entry should be included. +# e.g. '[user]' or '[user, api]' +# Include 'user' if the change is relevant to end users. +# Include 'api' if there is a change to a library API. +# Default: '[user]' +change_logs: [] diff --git a/exporter/splunkhecexporter/go.mod b/exporter/splunkhecexporter/go.mod index 9e8335d06811..b0d40b999e4e 100644 --- a/exporter/splunkhecexporter/go.mod +++ b/exporter/splunkhecexporter/go.mod @@ -137,3 +137,7 @@ replace github.com/open-telemetry/opentelemetry-collector-contrib/pkg/pdatautil replace github.com/open-telemetry/opentelemetry-collector-contrib/pkg/pdatatest => ../../pkg/pdatatest replace github.com/open-telemetry/opentelemetry-collector-contrib/pkg/golden => ../../pkg/golden + +replace go.opentelemetry.io/collector/config/configcompression => github.com/rnishtala-sumo/opentelemetry-collector/config/configcompression v0.0.0-20241118202008-518d136b719c + +replace go.opentelemetry.io/collector/config/confighttp => github.com/rnishtala-sumo/opentelemetry-collector/config/confighttp v0.0.0-20241118202008-518d136b719c diff --git a/exporter/splunkhecexporter/go.sum b/exporter/splunkhecexporter/go.sum index 28072ab0df76..01632682f724 100644 --- a/exporter/splunkhecexporter/go.sum +++ b/exporter/splunkhecexporter/go.sum @@ -113,6 +113,10 @@ github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZb github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= github.com/power-devops/perfstat v0.0.0-20210106213030-5aafc221ea8c h1:ncq/mPwQF4JjgDlrVEn3C11VoGHZN7m8qihwgMEtzYw= github.com/power-devops/perfstat v0.0.0-20210106213030-5aafc221ea8c/go.mod h1:OmDBASR4679mdNQnz2pUhc2G8CO2JrUAVFDRBDP/hJE= +github.com/rnishtala-sumo/opentelemetry-collector/config/configcompression v0.0.0-20241118202008-518d136b719c h1:UM4aAdmHvSfI+fCiQ6FBFjn1ORq43rP4X7Epnzu8KpA= +github.com/rnishtala-sumo/opentelemetry-collector/config/configcompression v0.0.0-20241118202008-518d136b719c/go.mod h1:GH3iEYQYCULGQfcG92n1rjfOsytLIWxymnlYkE8Y95U= +github.com/rnishtala-sumo/opentelemetry-collector/config/confighttp v0.0.0-20241118202008-518d136b719c h1:d+EskULp1gMfvs8/FP6LUn28I7a+0oA6qYZJ6DeL2nw= +github.com/rnishtala-sumo/opentelemetry-collector/config/confighttp v0.0.0-20241118202008-518d136b719c/go.mod h1:nrlNLxOZ+4JQaV9j0TiqQV7LOHhrRivPrT8nQRHED3Q= github.com/rogpeppe/go-internal v1.12.0 h1:exVL4IDcn6na9z1rAb56Vxr+CgyK3nn3O+epU5NdKM8= github.com/rogpeppe/go-internal v1.12.0/go.mod h1:E+RYuTGaKKdloAfM02xzb0FW3Paa99yedzYV+kq4uf4= github.com/rs/cors v1.11.1 h1:eU3gRzXLRK57F5rKMGMZURNdIG4EoAmX8k94r9wXWHA= diff --git a/pkg/datadog/go.mod b/pkg/datadog/go.mod index 56023949f2f7..080b920b6368 100644 --- a/pkg/datadog/go.mod +++ b/pkg/datadog/go.mod @@ -87,3 +87,7 @@ require ( gopkg.in/yaml.v2 v2.4.0 // indirect gopkg.in/yaml.v3 v3.0.1 // indirect ) + +replace go.opentelemetry.io/collector/config/configcompression => github.com/rnishtala-sumo/opentelemetry-collector/config/configcompression v0.0.0-20241118202008-518d136b719c + +replace go.opentelemetry.io/collector/config/confighttp => github.com/rnishtala-sumo/opentelemetry-collector/config/confighttp v0.0.0-20241118202008-518d136b719c diff --git a/pkg/datadog/go.sum b/pkg/datadog/go.sum index 4ad5646a01c6..3259a16f37be 100644 --- a/pkg/datadog/go.sum +++ b/pkg/datadog/go.sum @@ -94,6 +94,10 @@ github.com/pierrec/lz4/v4 v4.1.21 h1:yOVMLb6qSIDP67pl/5F7RepeKYu/VmTyEXvuMI5d9mQ github.com/pierrec/lz4/v4 v4.1.21/go.mod h1:gZWDp/Ze/IJXGXf23ltt2EXimqmTUXEy0GFuRQyBid4= github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM= github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= +github.com/rnishtala-sumo/opentelemetry-collector/config/configcompression v0.0.0-20241118202008-518d136b719c h1:UM4aAdmHvSfI+fCiQ6FBFjn1ORq43rP4X7Epnzu8KpA= +github.com/rnishtala-sumo/opentelemetry-collector/config/configcompression v0.0.0-20241118202008-518d136b719c/go.mod h1:GH3iEYQYCULGQfcG92n1rjfOsytLIWxymnlYkE8Y95U= +github.com/rnishtala-sumo/opentelemetry-collector/config/confighttp v0.0.0-20241118202008-518d136b719c h1:d+EskULp1gMfvs8/FP6LUn28I7a+0oA6qYZJ6DeL2nw= +github.com/rnishtala-sumo/opentelemetry-collector/config/confighttp v0.0.0-20241118202008-518d136b719c/go.mod h1:nrlNLxOZ+4JQaV9j0TiqQV7LOHhrRivPrT8nQRHED3Q= github.com/rogpeppe/go-internal v1.12.0 h1:exVL4IDcn6na9z1rAb56Vxr+CgyK3nn3O+epU5NdKM8= github.com/rogpeppe/go-internal v1.12.0/go.mod h1:E+RYuTGaKKdloAfM02xzb0FW3Paa99yedzYV+kq4uf4= github.com/rs/cors v1.11.1 h1:eU3gRzXLRK57F5rKMGMZURNdIG4EoAmX8k94r9wXWHA= diff --git a/testbed/go.mod b/testbed/go.mod index 6a0b2f96c488..70d3f11aaf42 100644 --- a/testbed/go.mod +++ b/testbed/go.mod @@ -438,3 +438,7 @@ replace github.com/open-telemetry/opentelemetry-collector-contrib/pkg/ottl => .. replace github.com/open-telemetry/opentelemetry-collector-contrib/internal/exp/metrics => ../internal/exp/metrics replace github.com/open-telemetry/opentelemetry-collector-contrib/internal/pdatautil => ../internal/pdatautil + +replace go.opentelemetry.io/collector/config/configcompression => github.com/rnishtala-sumo/opentelemetry-collector/config/configcompression v0.0.0-20241118202008-518d136b719c + +replace go.opentelemetry.io/collector/config/confighttp => github.com/rnishtala-sumo/opentelemetry-collector/config/confighttp v0.0.0-20241118202008-518d136b719c From 5aa495e1feeb9eef7e44bedb266e3674d43893f6 Mon Sep 17 00:00:00 2001 From: Raj Nishtala Date: Wed, 4 Dec 2024 11:41:08 -0500 Subject: [PATCH 3/3] Update configcompression and confighttp versions to point to the latest commit on branch (configure-compression-levels) --- .chloggen/fix-contrib-tests.yaml | 2 +- exporter/splunkhecexporter/go.mod | 6 +++--- exporter/splunkhecexporter/go.sum | 12 ++++-------- pkg/datadog/go.mod | 6 +++--- pkg/datadog/go.sum | 12 ++++-------- 5 files changed, 15 insertions(+), 23 deletions(-) diff --git a/.chloggen/fix-contrib-tests.yaml b/.chloggen/fix-contrib-tests.yaml index 8914bad8f8f9..645f84553081 100644 --- a/.chloggen/fix-contrib-tests.yaml +++ b/.chloggen/fix-contrib-tests.yaml @@ -1,7 +1,7 @@ # Use this changelog template to create an entry for release notes. # One of 'breaking', 'deprecation', 'new_component', 'enhancement', 'bug_fix' -change_type: 'breaking' +change_type: 'enhancement' # The name of the component, or a single word describing the area of concern, (e.g. filelogreceiver) component: Multiple components diff --git a/exporter/splunkhecexporter/go.mod b/exporter/splunkhecexporter/go.mod index b0d40b999e4e..3235d5fff097 100644 --- a/exporter/splunkhecexporter/go.mod +++ b/exporter/splunkhecexporter/go.mod @@ -14,6 +14,7 @@ require ( github.com/testcontainers/testcontainers-go v0.34.0 go.opentelemetry.io/collector/component v0.115.0 go.opentelemetry.io/collector/component/componenttest v0.115.0 + go.opentelemetry.io/collector/config/configcompression v1.21.0 go.opentelemetry.io/collector/config/confighttp v0.115.0 go.opentelemetry.io/collector/config/configopaque v1.21.0 go.opentelemetry.io/collector/config/configretry v1.21.0 @@ -93,7 +94,6 @@ require ( github.com/yusufpapurcu/wmi v1.2.4 // indirect go.opentelemetry.io/collector/client v1.21.0 // indirect go.opentelemetry.io/collector/config/configauth v0.115.0 // indirect - go.opentelemetry.io/collector/config/configcompression v1.21.0 // indirect go.opentelemetry.io/collector/config/configtelemetry v0.115.0 // indirect go.opentelemetry.io/collector/config/internal v0.115.0 // indirect go.opentelemetry.io/collector/consumer/consumerprofiles v0.115.0 // indirect @@ -138,6 +138,6 @@ replace github.com/open-telemetry/opentelemetry-collector-contrib/pkg/pdatatest replace github.com/open-telemetry/opentelemetry-collector-contrib/pkg/golden => ../../pkg/golden -replace go.opentelemetry.io/collector/config/configcompression => github.com/rnishtala-sumo/opentelemetry-collector/config/configcompression v0.0.0-20241118202008-518d136b719c +replace go.opentelemetry.io/collector/config/configcompression => github.com/rnishtala-sumo/opentelemetry-collector/config/configcompression v0.0.0-20241204155200-78d83fd4ebca -replace go.opentelemetry.io/collector/config/confighttp => github.com/rnishtala-sumo/opentelemetry-collector/config/confighttp v0.0.0-20241118202008-518d136b719c +replace go.opentelemetry.io/collector/config/confighttp => github.com/rnishtala-sumo/opentelemetry-collector/config/confighttp v0.0.0-20241204155200-78d83fd4ebca diff --git a/exporter/splunkhecexporter/go.sum b/exporter/splunkhecexporter/go.sum index 01632682f724..13281b184a64 100644 --- a/exporter/splunkhecexporter/go.sum +++ b/exporter/splunkhecexporter/go.sum @@ -113,10 +113,10 @@ github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZb github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= github.com/power-devops/perfstat v0.0.0-20210106213030-5aafc221ea8c h1:ncq/mPwQF4JjgDlrVEn3C11VoGHZN7m8qihwgMEtzYw= github.com/power-devops/perfstat v0.0.0-20210106213030-5aafc221ea8c/go.mod h1:OmDBASR4679mdNQnz2pUhc2G8CO2JrUAVFDRBDP/hJE= -github.com/rnishtala-sumo/opentelemetry-collector/config/configcompression v0.0.0-20241118202008-518d136b719c h1:UM4aAdmHvSfI+fCiQ6FBFjn1ORq43rP4X7Epnzu8KpA= -github.com/rnishtala-sumo/opentelemetry-collector/config/configcompression v0.0.0-20241118202008-518d136b719c/go.mod h1:GH3iEYQYCULGQfcG92n1rjfOsytLIWxymnlYkE8Y95U= -github.com/rnishtala-sumo/opentelemetry-collector/config/confighttp v0.0.0-20241118202008-518d136b719c h1:d+EskULp1gMfvs8/FP6LUn28I7a+0oA6qYZJ6DeL2nw= -github.com/rnishtala-sumo/opentelemetry-collector/config/confighttp v0.0.0-20241118202008-518d136b719c/go.mod h1:nrlNLxOZ+4JQaV9j0TiqQV7LOHhrRivPrT8nQRHED3Q= +github.com/rnishtala-sumo/opentelemetry-collector/config/configcompression v0.0.0-20241204155200-78d83fd4ebca h1:rWYWOGMwPqrrfNvF4EGu6o+Ew3JoiRvKJ6QiRljMLjU= +github.com/rnishtala-sumo/opentelemetry-collector/config/configcompression v0.0.0-20241204155200-78d83fd4ebca/go.mod h1:QY1HtxILD1CoZnZ/+WBNaCYXppveAFlLADZRmlDUpt0= +github.com/rnishtala-sumo/opentelemetry-collector/config/confighttp v0.0.0-20241204155200-78d83fd4ebca h1:odnCElmXSPIj/e7vBtZuhZkK6HAosfmWpouEnbv/VQM= +github.com/rnishtala-sumo/opentelemetry-collector/config/confighttp v0.0.0-20241204155200-78d83fd4ebca/go.mod h1:Wr50ut12NmCEAl4bWLJryw2EjUmJTtYRg89560Q51wc= github.com/rogpeppe/go-internal v1.12.0 h1:exVL4IDcn6na9z1rAb56Vxr+CgyK3nn3O+epU5NdKM8= github.com/rogpeppe/go-internal v1.12.0/go.mod h1:E+RYuTGaKKdloAfM02xzb0FW3Paa99yedzYV+kq4uf4= github.com/rs/cors v1.11.1 h1:eU3gRzXLRK57F5rKMGMZURNdIG4EoAmX8k94r9wXWHA= @@ -154,10 +154,6 @@ go.opentelemetry.io/collector/component/componenttest v0.115.0 h1:9URDJ9VyP6tuij go.opentelemetry.io/collector/component/componenttest v0.115.0/go.mod h1:PzXvNqKLCiSADZGZFKH+IOHMkaQ0GTHuzysfVbTPKYY= go.opentelemetry.io/collector/config/configauth v0.115.0 h1:xa+ALdyPgva3rZnLBh1H2oS5MsHP6JxSqMtQmcELnys= go.opentelemetry.io/collector/config/configauth v0.115.0/go.mod h1:C7anpb3Rf4KswMT+dgOzkW9UX0z/65PLORpUw3p0VYc= -go.opentelemetry.io/collector/config/configcompression v1.21.0 h1:0zbPdZAgPFMAarwJEC4gaR6f/JBP686A3TYSgb3oa+E= -go.opentelemetry.io/collector/config/configcompression v1.21.0/go.mod h1:LvYG00tbPTv0NOLoZN0wXq1F5thcxvukO8INq7xyfWU= -go.opentelemetry.io/collector/config/confighttp v0.115.0 h1:BIy394oNXnqySJwrCqgAJu4gWgAV5aQUDD6k1hy6C8o= -go.opentelemetry.io/collector/config/confighttp v0.115.0/go.mod h1:Wr50ut12NmCEAl4bWLJryw2EjUmJTtYRg89560Q51wc= go.opentelemetry.io/collector/config/configopaque v1.21.0 h1:PcvRGkBk4Px8BQM7tX+kw4i3jBsfAHGoGQbtZg6Ox7U= go.opentelemetry.io/collector/config/configopaque v1.21.0/go.mod h1:sW0t0iI/VfRL9VYX7Ik6XzVgPcR+Y5kejTLsYcMyDWs= go.opentelemetry.io/collector/config/configretry v1.21.0 h1:ZHoOvAkEcv5BBeaJn8IQ6rQ4GMPZWW4S+W7R4QTEbZU= diff --git a/pkg/datadog/go.mod b/pkg/datadog/go.mod index 080b920b6368..9a858ea10af8 100644 --- a/pkg/datadog/go.mod +++ b/pkg/datadog/go.mod @@ -9,6 +9,7 @@ require ( go.opentelemetry.io/collector/component v0.115.0 go.opentelemetry.io/collector/component/componenttest v0.115.0 go.opentelemetry.io/collector/config/configauth v0.115.0 + go.opentelemetry.io/collector/config/configcompression v1.21.0 go.opentelemetry.io/collector/config/confighttp v0.115.0 go.opentelemetry.io/collector/config/confignet v1.21.0 go.opentelemetry.io/collector/config/configopaque v1.21.0 @@ -56,7 +57,6 @@ require ( github.com/rs/cors v1.11.1 // indirect github.com/tinylib/msgp v1.1.8 // indirect go.opentelemetry.io/collector/client v1.21.0 // indirect - go.opentelemetry.io/collector/config/configcompression v1.21.0 // indirect go.opentelemetry.io/collector/config/configtelemetry v0.115.0 // indirect go.opentelemetry.io/collector/config/internal v0.115.0 // indirect go.opentelemetry.io/collector/consumer v1.21.0 // indirect @@ -88,6 +88,6 @@ require ( gopkg.in/yaml.v3 v3.0.1 // indirect ) -replace go.opentelemetry.io/collector/config/configcompression => github.com/rnishtala-sumo/opentelemetry-collector/config/configcompression v0.0.0-20241118202008-518d136b719c +replace go.opentelemetry.io/collector/config/configcompression => github.com/rnishtala-sumo/opentelemetry-collector/config/configcompression v0.0.0-20241204155200-78d83fd4ebca -replace go.opentelemetry.io/collector/config/confighttp => github.com/rnishtala-sumo/opentelemetry-collector/config/confighttp v0.0.0-20241118202008-518d136b719c +replace go.opentelemetry.io/collector/config/confighttp => github.com/rnishtala-sumo/opentelemetry-collector/config/confighttp v0.0.0-20241204155200-78d83fd4ebca diff --git a/pkg/datadog/go.sum b/pkg/datadog/go.sum index 3259a16f37be..4fd9002652ae 100644 --- a/pkg/datadog/go.sum +++ b/pkg/datadog/go.sum @@ -94,10 +94,10 @@ github.com/pierrec/lz4/v4 v4.1.21 h1:yOVMLb6qSIDP67pl/5F7RepeKYu/VmTyEXvuMI5d9mQ github.com/pierrec/lz4/v4 v4.1.21/go.mod h1:gZWDp/Ze/IJXGXf23ltt2EXimqmTUXEy0GFuRQyBid4= github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM= github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= -github.com/rnishtala-sumo/opentelemetry-collector/config/configcompression v0.0.0-20241118202008-518d136b719c h1:UM4aAdmHvSfI+fCiQ6FBFjn1ORq43rP4X7Epnzu8KpA= -github.com/rnishtala-sumo/opentelemetry-collector/config/configcompression v0.0.0-20241118202008-518d136b719c/go.mod h1:GH3iEYQYCULGQfcG92n1rjfOsytLIWxymnlYkE8Y95U= -github.com/rnishtala-sumo/opentelemetry-collector/config/confighttp v0.0.0-20241118202008-518d136b719c h1:d+EskULp1gMfvs8/FP6LUn28I7a+0oA6qYZJ6DeL2nw= -github.com/rnishtala-sumo/opentelemetry-collector/config/confighttp v0.0.0-20241118202008-518d136b719c/go.mod h1:nrlNLxOZ+4JQaV9j0TiqQV7LOHhrRivPrT8nQRHED3Q= +github.com/rnishtala-sumo/opentelemetry-collector/config/configcompression v0.0.0-20241204155200-78d83fd4ebca h1:rWYWOGMwPqrrfNvF4EGu6o+Ew3JoiRvKJ6QiRljMLjU= +github.com/rnishtala-sumo/opentelemetry-collector/config/configcompression v0.0.0-20241204155200-78d83fd4ebca/go.mod h1:QY1HtxILD1CoZnZ/+WBNaCYXppveAFlLADZRmlDUpt0= +github.com/rnishtala-sumo/opentelemetry-collector/config/confighttp v0.0.0-20241204155200-78d83fd4ebca h1:odnCElmXSPIj/e7vBtZuhZkK6HAosfmWpouEnbv/VQM= +github.com/rnishtala-sumo/opentelemetry-collector/config/confighttp v0.0.0-20241204155200-78d83fd4ebca/go.mod h1:Wr50ut12NmCEAl4bWLJryw2EjUmJTtYRg89560Q51wc= github.com/rogpeppe/go-internal v1.12.0 h1:exVL4IDcn6na9z1rAb56Vxr+CgyK3nn3O+epU5NdKM8= github.com/rogpeppe/go-internal v1.12.0/go.mod h1:E+RYuTGaKKdloAfM02xzb0FW3Paa99yedzYV+kq4uf4= github.com/rs/cors v1.11.1 h1:eU3gRzXLRK57F5rKMGMZURNdIG4EoAmX8k94r9wXWHA= @@ -124,10 +124,6 @@ go.opentelemetry.io/collector/component/componenttest v0.115.0 h1:9URDJ9VyP6tuij go.opentelemetry.io/collector/component/componenttest v0.115.0/go.mod h1:PzXvNqKLCiSADZGZFKH+IOHMkaQ0GTHuzysfVbTPKYY= go.opentelemetry.io/collector/config/configauth v0.115.0 h1:xa+ALdyPgva3rZnLBh1H2oS5MsHP6JxSqMtQmcELnys= go.opentelemetry.io/collector/config/configauth v0.115.0/go.mod h1:C7anpb3Rf4KswMT+dgOzkW9UX0z/65PLORpUw3p0VYc= -go.opentelemetry.io/collector/config/configcompression v1.21.0 h1:0zbPdZAgPFMAarwJEC4gaR6f/JBP686A3TYSgb3oa+E= -go.opentelemetry.io/collector/config/configcompression v1.21.0/go.mod h1:LvYG00tbPTv0NOLoZN0wXq1F5thcxvukO8INq7xyfWU= -go.opentelemetry.io/collector/config/confighttp v0.115.0 h1:BIy394oNXnqySJwrCqgAJu4gWgAV5aQUDD6k1hy6C8o= -go.opentelemetry.io/collector/config/confighttp v0.115.0/go.mod h1:Wr50ut12NmCEAl4bWLJryw2EjUmJTtYRg89560Q51wc= go.opentelemetry.io/collector/config/confignet v1.21.0 h1:PeQ5YrMnfftysFL/WVaSrjPOWjD6DfeABY50pf9CZxU= go.opentelemetry.io/collector/config/confignet v1.21.0/go.mod h1:ZppUH1hgUJOubawEsxsQ9MzEYFytqo2GnVSS7d4CVxc= go.opentelemetry.io/collector/config/configopaque v1.21.0 h1:PcvRGkBk4Px8BQM7tX+kw4i3jBsfAHGoGQbtZg6Ox7U=