You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
at the moment I am updating opentelemetry-opencensus-shim from 1.30.0-alpha to 1.47.0-alpha.
My application is still using OpenCensus to create metrics. However, I am using the MetricExporter from OpenTelemetry. After the update, I noticed when using a Delta AggregationTemporality for the MetricExporter, OpenCensus sums are still aggregated Cumulative. It worked prior to the update.
Previously, we build the SdkMeterProvider like this:
There has been a change, which removed OpenCensusMetrics.attachTo() and introduced the OpenCensusMetricProducer (see #5835).
However, this removes the link between the OpenTelemetry MetricReader and the OpenCensusMetricProducer. Thus, the configured AggregationTemporality of the MetricExporter can not be applied to OpenCensus metrics, as far as I understand.
Is this intended? Is there some workaround?
Thanks for any feedback.
The text was updated successfully, but these errors were encountered:
Greetings,
at the moment I am updating
opentelemetry-opencensus-shim
from 1.30.0-alpha to 1.47.0-alpha.My application is still using OpenCensus to create metrics. However, I am using the MetricExporter from OpenTelemetry. After the update, I noticed when using a
Delta
AggregationTemporality for the MetricExporter, OpenCensus sums are still aggregatedCumulative
. It worked prior to the update.Previously, we build the
SdkMeterProvider
like this:After the update, it looks like this:
There has been a change, which removed
OpenCensusMetrics.attachTo()
and introduced theOpenCensusMetricProducer
(see #5835).However, this removes the link between the OpenTelemetry MetricReader and the OpenCensusMetricProducer. Thus, the configured AggregationTemporality of the MetricExporter can not be applied to OpenCensus metrics, as far as I understand.
Is this intended? Is there some workaround?
Thanks for any feedback.
The text was updated successfully, but these errors were encountered: