-
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
make useOtelForInternalMetrics as beta #9037
make useOtelForInternalMetrics as beta #9037
Conversation
While testing this change I came across a discrepancy in how the |
This is blocked by #9065 |
No longer blocked, it was decided to move ahead without #9065 |
Please add changelog |
The metrics are now consistent with the metrics produced by OpenCensus. We should move the featuregate forward. Signed-off-by: Alex Boten <aboten@lightstep.com>
Signed-off-by: Alex Boten <aboten@lightstep.com>
59516a6
to
d52f227
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.
🎉
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #9037 +/- ##
==========================================
+ Coverage 91.42% 91.53% +0.10%
==========================================
Files 316 316
Lines 17190 17210 +20
==========================================
+ Hits 15716 15753 +37
+ Misses 1173 1160 -13
+ Partials 301 297 -4 ☔ View full report in Codecov by Sentry. |
The metrics are now consistent with the metrics produced by OpenCensus. We should move the featuregate forward. Note that the OpenTelemetry generated metrics includes grpc client/server metrics (for receivers/exporters that use grpc) and `target_info` metrics Fixes open-telemetry#7454 --------- Signed-off-by: Alex Boten <aboten@lightstep.com>
…10343) #### Description Fixing the bug: the latest version of otel-collector failed to start with ipv6 metrics endpoint service telemetry. This problem began to occur after #9037 with the feature gate flag enabled was merged. This problem is probably an implementation omission because the enabled codepath, which was originally added by #7871, is marked as WIP. You can reproduce the issue with the config and the environment variable (`MY_POD_IP=::1`). ```yaml service: telemetry: logs: encoding: json metrics: address: '[${env:MY_POD_IP}]:8888' ``` #### Link to tracking issue Fixes #10011 --------- Co-authored-by: Tyler Helmuth <12352919+TylerHelmuth@users.noreply.github.com>
The metrics are now consistent with the metrics produced by OpenCensus. We should move the featuregate forward.
Note that the OpenTelemetry generated metrics includes grpc client/server metrics (for receivers/exporters that use grpc) and
target_info
metricsFixes #7454