I'm working with a ThingsBoard widget and I'm looking for a way to programmatically subscribe to a data source where the field/attribute or timeseries key is not predetermined.
Currently, I can utilize the dashboard state to subscribe to entities (assets, devices) or clients dynamically. However, this approach requires prior knowledge of the attribute name, which in my case is dynamic.
Is there a method or API within ThingsBoard that allows for such dynamic attribute subscriptions within a widget? Any examples or documentation pointers would be highly appreciated.
To dynamically subscribe to data sources in a ThingsBoard widget, you can utilize the
createSubscriptionFromInfo
method provided by thesubscriptionApi
. This method allows you to create subscriptions based on a configuration object that can include dynamic attributes or timeseries keys determined at runtime.Example:
In this example,
getDynamicKeySomehow
is a function that should be implemented to determine or retrieve the dynamic key. TheonDataUpdated
andonDataUpdateError
functions are callbacks that handle data updates and errors, respectively.Don't forget to clean up and unsubscribe when the widget is destroyed to avoid any potential memory leaks:
See related GitHub issue for more info.