-
Notifications
You must be signed in to change notification settings - Fork 2.4k
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
[processor/filter] mv from opencensus to otel #30736
[processor/filter] mv from opencensus to otel #30736
Conversation
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.
@codeboten is this a breaking change for users who are using the telemetry.useOtelWithSDKConfigurationForInternalTelemetry
feature gate to export metrics using the OTel GO SDK?
Moved back to draft until i fix a missing attribute issue i found while testing manually |
@TylerHelmuth confirmedthis is not a breaking change. The current metric emitted look like:
Although it's currently not working because of this bug open-telemetry/opentelemetry-collector#9361 |
This moves the telemetry generated by the processor from using opencensus to using otel. Note that the test checks the name of the metric in the format that it is generated using the meter provider, hence the change from `processor_filter_datapoints_filtered` to `processor/filter/datapoints.filtered`. When using the prometheus exporter, the output name will be the same as before. Fixes open-telemetry#30734 Signed-off-by: Alex Boten <aboten@lightstep.com>
Signed-off-by: Alex Boten <aboten@lightstep.com>
Signed-off-by: Alex Boten <aboten@lightstep.com>
Signed-off-by: Alex Boten <aboten@lightstep.com>
a2e1455
to
7a30384
Compare
This moves the telemetry generated by the processor from using opencensus to using otel. Note that the test checks the name of the metric in the format that it is generated using the meter provider, hence the change from `processor_filter_datapoints_filtered` to `processor/filter/datapoints.filtered`. When using the prometheus exporter, the output name will be the same as before. Fixes open-telemetry#30734 --------- Signed-off-by: Alex Boten <aboten@lightstep.com>
This moves the telemetry generated by the processor from using opencensus to using otel. Note that the test checks the name of the metric in the format that it is generated using the meter provider, hence the change from
processor_filter_datapoints_filtered
toprocessor/filter/datapoints.filtered
. When using the prometheus exporter, the output name will be the same as before.Fixes #30734