-
Notifications
You must be signed in to change notification settings - Fork 1.5k
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
Change default OTLP port number #2104
Change default OTLP port number #2104
Conversation
Codecov Report
@@ Coverage Diff @@
## master #2104 +/- ##
==========================================
- Coverage 92.23% 92.19% -0.04%
==========================================
Files 280 280
Lines 16977 17003 +26
==========================================
+ Hits 15658 15676 +18
- Misses 904 910 +6
- Partials 415 417 +2
Continue to review full report at Codecov.
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Consider to remove the build.log
dbe5792
to
a4a1a4a
Compare
Removed. |
a4a1a4a
to
cfe828d
Compare
@open-telemetry/collector-approvers please review. |
cfe828d
to
b5efd85
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Everything looks good except the http default port
This implements specification change open-telemetry/opentelemetry-specification#1221 To make transition to new port numbers less painful OTLP receiver will also accept data on the legacy port numbers when it is configured to use the default endpoint. Users who use the default Collector config can continue sending data to the legacy ports and have a graceful period to update their senders to start sending to the new ports. Note that OTLP/HTTP continues using a separate port number from OTLP/gRPC. There is separate work in progress to use one port for both.
b5efd85
to
2d8f1a8
Compare
@bogdandrutu PTAL. |
…ts (open-telemetry#2104) Signed-off-by: Bogdan Drutu <bogdandrutu@gmail.com> Co-authored-by: Tyler Yahn <MrAlias@users.noreply.github.com>
This implements specification change open-telemetry/opentelemetry-specification#1221
To make transition to new port numbers less painful OTLP receiver will
also accept data on the legacy port numbers when it is configured to
use the default endpoint. Users who use the default Collector config
can continue sending data to the legacy ports and have a graceful period
to update their senders to start sending to the new ports.
Note that OTLP/HTTP continues using a separate port number from OTLP/gRPC.
There is separate work in progress to use one port for both.
This must be merged after open-telemetry/opentelemetry-specification#1221 is merged.