Return type of callback functions for Asynchronous Instruments #1732
Labels
area:api
Cross language API specification issue
release:after-ga
Not required before GA release, and not going to work on before GA
spec:metrics
Related to the specification/metrics directory
Right now, the Metrics API Docs says:
Measurements
encapsulate two things:Attributes
(dimensions)This means that if the users have a function that provides a value (provided by a library/language sdk/etc.), they can't just simply use it but they have to wrap it in another function that enhances the original one and adds the attributes.
This can result in sub-optimal user experience and API usability by forcing the users to write a bunch of boilerplate.
Can we come up with a solution (additional functionality) to improve this so that the users can register a simple function that only provides the value and if they want define the attributes separately?
For example:
With "static" attributes:
You can call it like this
(the
sensor
instance has agetTemperature
method that returns aDouble
and it is registered as the callback):With "dynamic" attributes:
You can call it like this (the
sensor
instance has agetTemperature
method that returns aTemperatureResult
instance that will be passed to theattributesProvider
which will provide the Attributes based on the result):The text was updated successfully, but these errors were encountered: