Parsing a JSON and getting time series data without saving it into database

0
I am building an IoT application, where I am getting JSON formatted time series data from the devices. I am able to get this data in my mendix app but how can parse this JSON data and show the time series charts without saving it in the database as some entity’s x and y values. Is there a way to deal with showing real time data on a chart without using DB storage?
asked
1 answers
1

Yatin,

If you import it using an import mapping, it will be stored in a set of non-persistent entities.  These are not stored in the database.  Then you can use these non-persistent entities to populate the charts you need.  This documentation may be helpful:  https://docs.mendix.com/refguide/mapping-documents

Hope that helps,

Mike

answered