Community Tip - Your Friends List is a way to easily have access to the community members that you interact with the most! X
Hi, I should create a service that converts the Boolean value of the isConnect parameter, into an infotable value to feed to a time Series chart, someone would know how to do it? In the code in the picture I have to create a new Infotable? thank you
Hello!
The question here is how do you want to push this parameter value to the infotable.
I can propose 3 possible solutions:
1. Subscription with 'On Trigger' - It means that you need to create Subscription, and subscribe to this property. Next you need to pick up an event option which can be, DataChange. (In property metadata you can also specify how it should behave). Now add a code, which will save this value in Stream. Then use Query service from this Stream in mashup to get time-based values of this property.
2. Subscription with Timer Trigger - Same story like above, but instead of DataChange you can create a Time Thing, which will save isConnect param value for example every 30 sec.
3. ValueStream - Create value stream, assign it to the target Thing. Now mark isConnect property as a 'logged'. Value will be pushed to the ValueStream on every change. Then use GetPropertiesHistory on this Thing to get Historical values in mashup.
In all cases you will recieve InfoTable as an output.
Best,
Adam