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
create a representation that will be sent to the exporter via toMetricPoint() on the Aggregator that will be eventually passed to the metric exporters
add an static ExponentialBucketHistogramAggregation() method to the Aggregation class and implement the Aggregation modeled after the HistogramAggregation
add an Interface for the Exponential Histogram to the @opentelemetry/otlp-transformer package's types, so that it can be transformed to the OTLP representation (and subsequently serialized to proto or json and exported)
The text was updated successfully, but these errors were encountered:
I started on a prototype for this but it is not production ready by any means. If someone wants to work on this you can reach out to me and I can share what I have, otherwise I'll work on this after the metrics release.
Implement the Exponential Histogram Aggregation based on the specificiation.
This is an (most likely incomplete) list of things that need to be implemented for this feature:
Aggregator
Accumulation
toMetricPoint()
on theAggregator
that will be eventually passed to the metric exportersExponentialBucketHistogramAggregation()
method to theAggregation
class and implement theAggregation
modeled after theHistogramAggregation
@opentelemetry/otlp-transformer
package's types, so that it can be transformed to the OTLP representation (and subsequently serialized to proto or json and exported)The text was updated successfully, but these errors were encountered: