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
Hello, is there a way to set histogram bucket after the metes has been registered?
From looking at source code and examples it does not seem like it's possible on iOS
My Android colleague is using this method, like this:
override fun trackHistogram(event: HistogramEvent) {
with(event) {
val otelAttributes = attributes.toOtelAttributes()
val builder = GlobalOpenTelemetry.getMeter("")
.histogramBuilder(eventName)
if (buckets != null) {
builder.setExplicitBucketBoundariesAdvice(buckets)
}
builder
.build()
.record(value, otelAttributes)
}
}
Hello, is there a way to set histogram bucket after the metes has been registered?
From looking at source code and examples it does not seem like it's possible on iOS
My Android colleague is using this method, like this:
Where as iOS histogram builder does not have such option
The text was updated successfully, but these errors were encountered: