Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add OTLP receiver for OTLP/HTTP support #125

Merged
merged 1 commit into from
Dec 20, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions collector/cmd/otelarrowcol/components.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

14 changes: 2 additions & 12 deletions collector/cmd/otelarrowcol/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ require (
go.opentelemetry.io/collector/otelcol v0.90.1
go.opentelemetry.io/collector/processor v0.90.0
go.opentelemetry.io/collector/receiver v0.90.0
go.opentelemetry.io/collector/receiver/otlpreceiver v0.90.1
golang.org/x/sys v0.14.0
)

Expand Down Expand Up @@ -164,22 +165,11 @@ require (
golang.org/x/tools v0.10.0 // indirect
golang.org/x/xerrors v0.0.0-20220907171357-04be3eba64a2 // indirect
gonum.org/v1/gonum v0.14.0 // indirect
google.golang.org/genproto/googleapis/api v0.0.0-20231030173426-d783a09b4405 // indirect
google.golang.org/genproto/googleapis/api v0.0.0-20231016165738-49dd2c1f3d0b // indirect
google.golang.org/genproto/googleapis/rpc v0.0.0-20231120223509-83a465c0220f // indirect
google.golang.org/grpc v1.59.0 // indirect
google.golang.org/protobuf v1.31.0 // indirect
gopkg.in/natefinch/lumberjack.v2 v2.2.1 // indirect
gopkg.in/yaml.v2 v2.4.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)











28 changes: 24 additions & 4 deletions collector/cmd/otelarrowcol/go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -826,6 +826,26 @@ github.com/open-telemetry/opentelemetry-collector-contrib/extension/pprofextensi
github.com/open-telemetry/opentelemetry-collector-contrib/extension/pprofextension v0.90.1/go.mod h1:9KucBpgt7VOSqcTmDuKzL4a7uRP+lX/2XKhmIioDTIw=
github.com/open-telemetry/opentelemetry-collector-contrib/internal/common v0.90.1 h1:ft3LwGzqLXAYaMprkuwxSG5TSOyG2D+XfJ1WV3ZpxGc=
github.com/open-telemetry/opentelemetry-collector-contrib/internal/common v0.90.1/go.mod h1:Kw1ZyEtVfeOTaBeNnJ4tWFw3E5TtqGwwpNDjMqT4Zp4=
github.com/open-telemetry/otel-arrow v0.12.0 h1:0MxZAiMMKOD4vAtPRqDslnl46dU5pzZKQOT/ddOAAYU=
github.com/open-telemetry/otel-arrow v0.12.0/go.mod h1:obKIF/Z+RhmjBj7Nh8lkzszUVXLz34aKr+77qyFuIhU=
github.com/open-telemetry/otel-arrow/collector v0.12.0 h1:ci7cT4QXAP7vl3IO71vWI9Qm1MFA91EGl7MuZXVJ9C0=
github.com/open-telemetry/otel-arrow/collector v0.12.0/go.mod h1:ZV2IYaRWDC4VD1EzsSstLvDoGg1s4Fh/JquEaeSHpmQ=
github.com/open-telemetry/otel-arrow/collector/connector/validationconnector v0.12.0 h1:gOrEDD+C9U/YBLJBLpU/oatj2qLZ2q4wdLC0qA22sQI=
github.com/open-telemetry/otel-arrow/collector/connector/validationconnector v0.12.0/go.mod h1:yn03UQmTokw5D5rZa8Bg+MVDCB/59xx4FKzDDQTX1jE=
github.com/open-telemetry/otel-arrow/collector/exporter/fileexporter v0.12.0 h1:f/PQQR3k7+6Q01UOIzch9lPq48LTlN8UuEUeoYOxyuM=
github.com/open-telemetry/otel-arrow/collector/exporter/fileexporter v0.12.0/go.mod h1:JkT0RXrzpqHOGBUw6ipX9Sn2W3sE866CzeeLS+9ssqM=
github.com/open-telemetry/otel-arrow/collector/exporter/otelarrowexporter v0.12.0 h1:YfmfntqymzBqC7cLGr8khHjAIIQzOGPsMHZGu0ebHJM=
github.com/open-telemetry/otel-arrow/collector/exporter/otelarrowexporter v0.12.0/go.mod h1:ufr4pq1JfE0NCXtvun7QAijsDbBvk6dYQRRYpF43VwE=
github.com/open-telemetry/otel-arrow/collector/processor/concurrentbatchprocessor v0.12.0 h1:UTbmCmvjZzPj3PiP7Y4o5qYX20qNoSoTX14cH6ZjOZU=
github.com/open-telemetry/otel-arrow/collector/processor/concurrentbatchprocessor v0.12.0/go.mod h1:xyX1l+OzVNnFrphl1SW4LA+POo60Yn4H0k28uGxeM8A=
github.com/open-telemetry/otel-arrow/collector/processor/experimentprocessor v0.12.0 h1:a6UkE9K9b7y2un+fo5+wpLImPHHhSk9jc5J0XJuoEGw=
github.com/open-telemetry/otel-arrow/collector/processor/experimentprocessor v0.12.0/go.mod h1:c+I5os5DhHNxfK2c7rvbHP7c2L63enFmfqiPqrvwAwY=
github.com/open-telemetry/otel-arrow/collector/processor/obfuscationprocessor v0.12.0 h1:YAv1L4dCCEvgh3dqYvhbDP7qfPjjVvMDKJGjdcPvCUw=
github.com/open-telemetry/otel-arrow/collector/processor/obfuscationprocessor v0.12.0/go.mod h1:yNdqFgu2oq2IOf+MGLB9iCbZEdHomFg1IwcpH392R9E=
github.com/open-telemetry/otel-arrow/collector/receiver/filereceiver v0.12.0 h1:jggp3todGftbn6IgkohBCNa17Jhhtabqn2l7xvr0AJ0=
github.com/open-telemetry/otel-arrow/collector/receiver/filereceiver v0.12.0/go.mod h1:Axr5TNmWk+8/nHlgaYxJroOOvhKx+N89JA0MXOg7JWQ=
github.com/open-telemetry/otel-arrow/collector/receiver/otelarrowreceiver v0.12.0 h1:/uIk6qNFR+RPvtTguFTNWz832er503EVUAHluDdeCeU=
github.com/open-telemetry/otel-arrow/collector/receiver/otelarrowreceiver v0.12.0/go.mod h1:OqtBnOz1E6p238udyar0g4WpJs2Txnw5nnnvplQpnTw=
github.com/opentracing/opentracing-go v1.0.2/go.mod h1:UkNAQd3GIcIGf0SeVgPpRdFStlNbqXla1AfSYxPUl2o=
github.com/opentracing/opentracing-go v1.0.3-0.20180606204148-bd9c31933947/go.mod h1:UkNAQd3GIcIGf0SeVgPpRdFStlNbqXla1AfSYxPUl2o=
github.com/opentracing/opentracing-go v1.1.0/go.mod h1:UkNAQd3GIcIGf0SeVgPpRdFStlNbqXla1AfSYxPUl2o=
Expand Down Expand Up @@ -1147,8 +1167,8 @@ go.opentelemetry.io/collector/processor v0.90.0 h1:GP9er9lx+lSUg1khsjkuiAN0VIGfk
go.opentelemetry.io/collector/processor v0.90.0/go.mod h1:EbXqZoGuLIc+qYa9uS3ZTU05r3e981No81vyp6PH2q0=
go.opentelemetry.io/collector/receiver v0.90.0 h1:cVp1s9c9kSfn5ZTXb9o8nlZnLEgs2gutEYzty5+eUEI=
go.opentelemetry.io/collector/receiver v0.90.0/go.mod h1:oRmH7WKmkJo7tgc7odoArLXjrz2TZdcw7pco0KRZjWo=
go.opentelemetry.io/collector/receiver/otlpreceiver v0.90.0 h1:TCqjZma7Q0Sfgeiq8d/DsoHq8U6ImeGIgUB6NiPCNWM=
go.opentelemetry.io/collector/receiver/otlpreceiver v0.90.0/go.mod h1:QFfO7iY6P4K12N1h2jar9qSMfJgeauIgAjzoxq/34D0=
go.opentelemetry.io/collector/receiver/otlpreceiver v0.90.1 h1:SI9A0cwdWzWL5xvCelNNS/2btX9tOw1pd3+QwpBW/tU=
go.opentelemetry.io/collector/receiver/otlpreceiver v0.90.1/go.mod h1:QFfO7iY6P4K12N1h2jar9qSMfJgeauIgAjzoxq/34D0=
go.opentelemetry.io/collector/semconv v0.90.0 h1:X361OfWNRqCgMCht+nuo7NH4OzpfYEbh9JTga7r5d0c=
go.opentelemetry.io/collector/semconv v0.90.0/go.mod h1:j/8THcqVxFna1FpvA2zYIsUperEtOaRaqoLYIN4doWw=
go.opentelemetry.io/collector/service v0.90.0 h1:Sht6G9uIM4IUQvAGzbDInhAaOu/s4h8VrBnZC7MadbM=
Expand Down Expand Up @@ -1733,8 +1753,8 @@ google.golang.org/genproto v0.0.0-20210602131652-f16073e35f0c/go.mod h1:UODoCrxH
google.golang.org/genproto v0.0.0-20210624195500-8bfb893ecb84/go.mod h1:SzzZ/N+nwJDaO1kznhnlzqS8ocJICar6hYhVyhi++24=
google.golang.org/genproto v0.0.0-20231106174013-bbf56f31fb17 h1:wpZ8pe2x1Q3f2KyT5f8oP/fa9rHAKgFPr/HZdNuS+PQ=
google.golang.org/genproto v0.0.0-20231106174013-bbf56f31fb17/go.mod h1:J7XzRzVy1+IPwWHZUzoD0IccYZIrXILAQpc+Qy9CMhY=
google.golang.org/genproto/googleapis/api v0.0.0-20231030173426-d783a09b4405 h1:HJMDndgxest5n2y77fnErkM62iUsptE/H8p0dC2Huo4=
google.golang.org/genproto/googleapis/api v0.0.0-20231030173426-d783a09b4405/go.mod h1:oT32Z4o8Zv2xPQTg0pbVaPr0MPOH6f14RgXt7zfIpwg=
google.golang.org/genproto/googleapis/api v0.0.0-20231016165738-49dd2c1f3d0b h1:CIC2YMXmIhYw6evmhPxBKJ4fmLbOFtXQN/GV3XOZR8k=
google.golang.org/genproto/googleapis/api v0.0.0-20231016165738-49dd2c1f3d0b/go.mod h1:IBQ646DjkDkvUIsVq/cc03FUFQ9wbZu7yE396YcL870=
google.golang.org/genproto/googleapis/rpc v0.0.0-20231120223509-83a465c0220f h1:ultW7fxlIvee4HYrtnaRPon9HpEgFk5zYpmfMgtKB5I=
google.golang.org/genproto/googleapis/rpc v0.0.0-20231120223509-83a465c0220f/go.mod h1:L9KNLi232K1/xB6f7AlSX692koaRnKaWSR0stBki0Yc=
google.golang.org/grpc v0.0.0-20170208002647-2a6bf6142e96/go.mod h1:yo6s7OP7yaDglbqo1J04qKzAhqBH6lvTonzMVmEdcZw=
Expand Down
11 changes: 0 additions & 11 deletions collector/connector/validationconnector/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -44,14 +44,3 @@ require (
google.golang.org/protobuf v1.31.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)











2 changes: 2 additions & 0 deletions collector/connector/validationconnector/go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,8 @@ github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd h1:TRLaZ9cD/w
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd/go.mod h1:6dJC0mAP4ikYIbvyc7fijjWJddQyLn8Ig3JB5CqoB9Q=
github.com/modern-go/reflect2 v1.0.2 h1:xBagoLtFs94CBntxluKeaWgTMpvLxC4ur3nMaC9Gz0M=
github.com/modern-go/reflect2 v1.0.2/go.mod h1:yWuevngMOJpCy52FWWMvUC8ws7m/LJsjYzDa0/r8luk=
github.com/open-telemetry/otel-arrow v0.12.0 h1:0MxZAiMMKOD4vAtPRqDslnl46dU5pzZKQOT/ddOAAYU=
github.com/open-telemetry/otel-arrow v0.12.0/go.mod h1:obKIF/Z+RhmjBj7Nh8lkzszUVXLz34aKr+77qyFuIhU=
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/rogpeppe/go-internal v1.11.0 h1:cWPaGQEPrBb5/AsnsZesgZZ9yb1OQ+GOISoDNXVBh4M=
Expand Down
11 changes: 0 additions & 11 deletions collector/examples/printer/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -19,14 +19,3 @@ require (
google.golang.org/grpc v1.59.0 // indirect
google.golang.org/protobuf v1.31.0 // indirect
)











11 changes: 0 additions & 11 deletions collector/exporter/fileexporter/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -49,14 +49,3 @@ require (
google.golang.org/protobuf v1.31.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)











2 changes: 2 additions & 0 deletions collector/exporter/fileexporter/go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,8 @@ github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd h1:TRLaZ9cD/w
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd/go.mod h1:6dJC0mAP4ikYIbvyc7fijjWJddQyLn8Ig3JB5CqoB9Q=
github.com/modern-go/reflect2 v1.0.2 h1:xBagoLtFs94CBntxluKeaWgTMpvLxC4ur3nMaC9Gz0M=
github.com/modern-go/reflect2 v1.0.2/go.mod h1:yWuevngMOJpCy52FWWMvUC8ws7m/LJsjYzDa0/r8luk=
github.com/open-telemetry/otel-arrow/collector v0.12.0 h1:ci7cT4QXAP7vl3IO71vWI9Qm1MFA91EGl7MuZXVJ9C0=
github.com/open-telemetry/otel-arrow/collector v0.12.0/go.mod h1:ZV2IYaRWDC4VD1EzsSstLvDoGg1s4Fh/JquEaeSHpmQ=
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/prometheus/client_golang v1.17.0 h1:rl2sfwZMtSthVU752MqfjQozy7blglC+1SOtjMAMh+Q=
Expand Down
11 changes: 0 additions & 11 deletions collector/exporter/otelarrowexporter/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -89,14 +89,3 @@ require (
golang.org/x/xerrors v0.0.0-20220907171357-04be3eba64a2 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)











4 changes: 4 additions & 0 deletions collector/exporter/otelarrowexporter/go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -150,6 +150,10 @@ github.com/modern-go/reflect2 v1.0.2/go.mod h1:yWuevngMOJpCy52FWWMvUC8ws7m/LJsjY
github.com/mostynb/go-grpc-compression v1.2.2 h1:XaDbnRvt2+1vgr0b/l0qh4mJAfIxE0bKXtz2Znl3GGI=
github.com/mostynb/go-grpc-compression v1.2.2/go.mod h1:GOCr2KBxXcblCuczg3YdLQlcin1/NfyDA348ckuCH6w=
github.com/niemeyer/pretty v0.0.0-20200227124842-a10e7caefd8e/go.mod h1:zD1mROLANZcx1PVRCS0qkT7pwLkGfwJo4zjcN/Tysno=
github.com/open-telemetry/otel-arrow v0.12.0 h1:0MxZAiMMKOD4vAtPRqDslnl46dU5pzZKQOT/ddOAAYU=
github.com/open-telemetry/otel-arrow v0.12.0/go.mod h1:obKIF/Z+RhmjBj7Nh8lkzszUVXLz34aKr+77qyFuIhU=
github.com/open-telemetry/otel-arrow/collector v0.12.0 h1:ci7cT4QXAP7vl3IO71vWI9Qm1MFA91EGl7MuZXVJ9C0=
github.com/open-telemetry/otel-arrow/collector v0.12.0/go.mod h1:ZV2IYaRWDC4VD1EzsSstLvDoGg1s4Fh/JquEaeSHpmQ=
github.com/pierrec/lz4/v4 v4.1.18 h1:xaKrnTkyoqfh1YItXl56+6KJNVYWlEEPuAQW9xsplYQ=
github.com/pierrec/lz4/v4 v4.1.18/go.mod h1:gZWDp/Ze/IJXGXf23ltt2EXimqmTUXEy0GFuRQyBid4=
github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM=
Expand Down
11 changes: 0 additions & 11 deletions collector/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -51,14 +51,3 @@ require (
google.golang.org/protobuf v1.31.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)











3 changes: 3 additions & 0 deletions collector/otelarrowcol-build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,9 @@ receivers:
- import: github.com/open-telemetry/otel-arrow/collector/receiver/filereceiver
gomod: github.com/open-telemetry/otel-arrow/collector v0.12.0
- gomod: github.com/lightstep/telemetry-generator/generatorreceiver v0.15.0
# Users wanting the OTLP/HTTP Receiver will use the otlp receiver.
# Users wanting OTLP/gRPC may use the otelarrowreceiver.
- gomod: go.opentelemetry.io/collector/receiver/otlpreceiver v0.90.1

processors:
- import: github.com/open-telemetry/otel-arrow/collector/processor/concurrentbatchprocessor
Expand Down
11 changes: 0 additions & 11 deletions collector/processor/concurrentbatchprocessor/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -64,14 +64,3 @@ require (
gopkg.in/yaml.v2 v2.4.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)











11 changes: 0 additions & 11 deletions collector/processor/experimentprocessor/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -45,14 +45,3 @@ require (
google.golang.org/protobuf v1.31.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)











11 changes: 0 additions & 11 deletions collector/processor/obfuscationprocessor/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -60,14 +60,3 @@ require (
google.golang.org/protobuf v1.31.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)











11 changes: 0 additions & 11 deletions collector/receiver/filereceiver/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -45,14 +45,3 @@ require (
google.golang.org/protobuf v1.31.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)











17 changes: 1 addition & 16 deletions collector/receiver/otelarrowreceiver/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ require (
go.opentelemetry.io/collector/component v0.90.1
go.opentelemetry.io/collector/config/configauth v0.90.0
go.opentelemetry.io/collector/config/configgrpc v0.90.0
go.opentelemetry.io/collector/config/confighttp v0.90.0
go.opentelemetry.io/collector/config/confignet v0.90.1
go.opentelemetry.io/collector/config/configtelemetry v0.90.1
go.opentelemetry.io/collector/config/configtls v0.90.0
Expand All @@ -28,7 +27,6 @@ require (
golang.org/x/net v0.18.0
google.golang.org/genproto/googleapis/rpc v0.0.0-20231120223509-83a465c0220f
google.golang.org/grpc v1.59.0
google.golang.org/protobuf v1.31.0
)

require (
Expand All @@ -43,7 +41,6 @@ require (
github.com/cespare/xxhash/v2 v2.2.0 // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/dgryski/go-metro v0.0.0-20180109044635-280f6062b5bc // indirect
github.com/felixge/httpsnoop v1.0.4 // indirect
github.com/fsnotify/fsnotify v1.7.0 // indirect
github.com/fxamacker/cbor/v2 v2.4.0 // indirect
github.com/go-kit/log v0.2.1 // indirect
Expand Down Expand Up @@ -78,7 +75,6 @@ require (
github.com/prometheus/common v0.45.0 // indirect
github.com/prometheus/procfs v0.11.1 // indirect
github.com/prometheus/statsd_exporter v0.22.7 // indirect
github.com/rs/cors v1.10.1 // indirect
github.com/x448/float16 v0.8.4 // indirect
github.com/zeebo/xxh3 v1.0.2 // indirect
go.opencensus.io v0.24.0 // indirect
Expand All @@ -91,7 +87,6 @@ require (
go.opentelemetry.io/collector/service v0.90.0 // indirect
go.opentelemetry.io/contrib/config v0.1.1 // indirect
go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.46.0 // indirect
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.46.1 // indirect
go.opentelemetry.io/otel v1.21.0 // indirect
go.opentelemetry.io/otel/exporters/prometheus v0.44.0 // indirect
go.opentelemetry.io/otel/metric v1.21.0 // indirect
Expand All @@ -104,17 +99,7 @@ require (
golang.org/x/text v0.14.0 // indirect
golang.org/x/tools v0.10.0 // indirect
golang.org/x/xerrors v0.0.0-20220907171357-04be3eba64a2 // indirect
google.golang.org/protobuf v1.31.0 // indirect
gopkg.in/yaml.v2 v2.4.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)











12 changes: 4 additions & 8 deletions collector/receiver/otelarrowreceiver/go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -91,8 +91,6 @@ github.com/envoyproxy/go-control-plane v0.9.4/go.mod h1:6rpuAdCZL397s3pYoYcLgu1m
github.com/envoyproxy/protoc-gen-validate v0.1.0/go.mod h1:iSmxcyjqTsJpI2R4NaDN7+kN2VEUnK/pcBlmesArF7c=
github.com/envoyproxy/protoc-gen-validate v1.0.2 h1:QkIBuU5k+x7/QXPvPPnWXWlCdaBFApVqftFV6k087DA=
github.com/envoyproxy/protoc-gen-validate v1.0.2/go.mod h1:GpiZQP3dDbg4JouG/NNS7QWXpgx6x8QiMKdmN72jogE=
github.com/felixge/httpsnoop v1.0.4 h1:NFTV2Zj1bL4mc9sqWACXbQFVBBg2W3GPvqp8/ESS2Wg=
github.com/felixge/httpsnoop v1.0.4/go.mod h1:m8KPJKqk1gH5J9DgRY2ASl2lWCfGKXixSwevea8zH2U=
github.com/fogleman/gg v1.2.1-0.20190220221249-0403632d5b90/go.mod h1:R/bRT+9gY/C5z7JzPU0zXsXHKM4/ayA+zqcVNZzPa1k=
github.com/fsnotify/fsnotify v1.7.0 h1:8JEhPFa5W2WU7YfeZzPNqzMP6Lwt7L2715Ggo0nosvA=
github.com/fsnotify/fsnotify v1.7.0/go.mod h1:40Bi/Hjc2AVfZrqy+aj+yEI+/bRxZnMJyTJwOpGvigM=
Expand Down Expand Up @@ -258,6 +256,10 @@ github.com/mostynb/go-grpc-compression v1.2.2/go.mod h1:GOCr2KBxXcblCuczg3YdLQlc
github.com/mwitkow/go-conntrack v0.0.0-20161129095857-cc309e4a2223/go.mod h1:qRWi+5nqEBWmkhHvq77mSJWrCKwh8bxhgT7d/eI7P4U=
github.com/mwitkow/go-conntrack v0.0.0-20190716064945-2f068394615f/go.mod h1:qRWi+5nqEBWmkhHvq77mSJWrCKwh8bxhgT7d/eI7P4U=
github.com/niemeyer/pretty v0.0.0-20200227124842-a10e7caefd8e/go.mod h1:zD1mROLANZcx1PVRCS0qkT7pwLkGfwJo4zjcN/Tysno=
github.com/open-telemetry/otel-arrow v0.12.0 h1:0MxZAiMMKOD4vAtPRqDslnl46dU5pzZKQOT/ddOAAYU=
github.com/open-telemetry/otel-arrow v0.12.0/go.mod h1:obKIF/Z+RhmjBj7Nh8lkzszUVXLz34aKr+77qyFuIhU=
github.com/open-telemetry/otel-arrow/collector v0.12.0 h1:ci7cT4QXAP7vl3IO71vWI9Qm1MFA91EGl7MuZXVJ9C0=
github.com/open-telemetry/otel-arrow/collector v0.12.0/go.mod h1:ZV2IYaRWDC4VD1EzsSstLvDoGg1s4Fh/JquEaeSHpmQ=
github.com/pierrec/lz4/v4 v4.1.18 h1:xaKrnTkyoqfh1YItXl56+6KJNVYWlEEPuAQW9xsplYQ=
github.com/pierrec/lz4/v4 v4.1.18/go.mod h1:gZWDp/Ze/IJXGXf23ltt2EXimqmTUXEy0GFuRQyBid4=
github.com/pkg/errors v0.8.0/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0=
Expand Down Expand Up @@ -301,8 +303,6 @@ github.com/prometheus/statsd_exporter v0.22.7/go.mod h1:N/TevpjkIh9ccs6nuzY3jQn9
github.com/rogpeppe/go-internal v1.3.0/go.mod h1:M8bDsm7K2OlrFYOpmOWEs/qY81heoFRclV5y23lUDJ4=
github.com/rogpeppe/go-internal v1.11.0 h1:cWPaGQEPrBb5/AsnsZesgZZ9yb1OQ+GOISoDNXVBh4M=
github.com/rogpeppe/go-internal v1.11.0/go.mod h1:ddIwULY96R17DhadqLgMfk9H9tvdUzkipdSkR5nkCZA=
github.com/rs/cors v1.10.1 h1:L0uuZVXIKlI1SShY2nhFfo44TYvDPQ1w4oFkUJNfhyo=
github.com/rs/cors v1.10.1/go.mod h1:XyqrcTp5zjWr1wsJ8PIRZssZ8b/WMcMf71DJnit4EMU=
github.com/sirupsen/logrus v1.2.0/go.mod h1:LxeOpSwHxABJmUn/MG1IvRgCAasNZTLOkJPxbbu5VWo=
github.com/sirupsen/logrus v1.4.2/go.mod h1:tLMulIdttU9McNUspp0xgXVQah82FyeX6MwdIuYE2rE=
github.com/sirupsen/logrus v1.6.0/go.mod h1:7uNnSEd1DgxDLC74fIahvMZmmYsHGZGEOFrfsX/uA88=
Expand Down Expand Up @@ -350,8 +350,6 @@ go.opentelemetry.io/collector/config/configcompression v0.90.0 h1:5y5sGbvo0NZKJo
go.opentelemetry.io/collector/config/configcompression v0.90.0/go.mod h1:LaavoxZsro5lL7qh1g9DMifG0qixWPEecW18Qr8bpag=
go.opentelemetry.io/collector/config/configgrpc v0.90.0 h1:fxKjv/6VxNltv7O3q6L9B2aggeEK4NxXahnjSwipQNo=
go.opentelemetry.io/collector/config/configgrpc v0.90.0/go.mod h1:kqSGz7XhKaoKXMq7XaL9+UJe8+0QIxpof9+CTD4u3Kw=
go.opentelemetry.io/collector/config/confighttp v0.90.0 h1:trgTrKp3hzyCMO8RDtPTfrnia6h1qhr8QOqS5Sizl6M=
go.opentelemetry.io/collector/config/confighttp v0.90.0/go.mod h1:viutRIlajhHWuR3snu1RLako3b+Rd3MM0OfRDhIuicM=
go.opentelemetry.io/collector/config/confignet v0.90.1 h1:QBt6L0YQRnshXfZz2gUySyp9+Mqa37CTiBfy/OLDWEk=
go.opentelemetry.io/collector/config/confignet v0.90.1/go.mod h1:cpO8JYWGONaViOygKVw+Hd2UoBcn2cUiyi0WWeFTwJY=
go.opentelemetry.io/collector/config/configopaque v0.90.1 h1:wdNYdeEDvvy6tz5BYxcAQUA5iQKtMGQPefuKQfJFXmU=
Expand Down Expand Up @@ -388,8 +386,6 @@ go.opentelemetry.io/contrib/config v0.1.1 h1:lIUTrMWkfDE0GvzBLhwv6ATDB1vntrnTsRv
go.opentelemetry.io/contrib/config v0.1.1/go.mod h1:rDrK4+PS6Cs+WIphU/GO5Sk4TGV36lEQqk/Z1vZkaLI=
go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.46.0 h1:PzIubN4/sjByhDRHLviCjJuweBXWFZWhghjg7cS28+M=
go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.46.0/go.mod h1:Ct6zzQEuGK3WpJs2n4dn+wfJYzd/+hNnxMRTWjGn30M=
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.46.1 h1:aFJWCqJMNjENlcleuuOkGAPH82y0yULBScfXcIEdS24=
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.46.1/go.mod h1:sEGXWArGqc3tVa+ekntsN65DmVbVeW+7lTKTjZF3/Fo=
go.opentelemetry.io/otel v1.21.0 h1:hzLeKBZEL7Okw2mGzZ0cc4k/A7Fta0uoPgaJCr8fsFc=
go.opentelemetry.io/otel v1.21.0/go.mod h1:QZzNPQPm1zLX4gZK4cMi+71eaorMSGT3A4znnUvNNEo=
go.opentelemetry.io/otel/exporters/prometheus v0.44.0 h1:08qeJgaPC0YEBu2PQMbqU3rogTlyzpjhCI2b58Yn00w=
Expand Down
11 changes: 0 additions & 11 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -63,14 +63,3 @@ require (
google.golang.org/genproto/googleapis/rpc v0.0.0-20231120223509-83a465c0220f // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)