-
Notifications
You must be signed in to change notification settings - Fork 30
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 HTTP to gateway #948
Conversation
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #948 +/- ##
==========================================
- Coverage 76.55% 76.51% -0.05%
==========================================
Files 94 94
Lines 6074 6071 -3
==========================================
- Hits 4650 4645 -5
- Misses 1152 1153 +1
- Partials 272 273 +1
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. |
My test manifests
|
@pavolloffay We need to update the tests/e2e/gateway tests/e2e-openshift/multitenancy/ cases for the change.
I tested the PR and the changes LGTM, I'm working on adding some additional steps to the tests and will submit the PR after this gets merged. |
Signed-off-by: Pavol Loffay <p.loffay@gmail.com>
dca23d2
to
ff112b9
Compare
Signed-off-by: Pavol Loffay <p.loffay@gmail.com>
629b98b
to
c487b9b
Compare
Update e2e tests for HTTP gateway support
targetPort: 4317 | ||
- appProtocol: http | ||
name: otlp-http-http |
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.
Can we use otlp-http
and otlp-grpc
as port names?
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.
These ports names are set by the OTEL operator. They are derived from the receiver name e.g. otlp/http
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.
oh, sorry, I didn't realize this is from the OTEL collector.
Notable changes