I am sending data from device through MQTT at rate of 10 messages per second, and trying to get data in application through above rest api, but missing data. For instance, if i am sending 10 temperature values/second as values 1,2,3,4,5,6,7,8,10 and so on. Through rest api, i am getting 1,10,20 and so on, while missing all data between it. When i tried to get historical data, all data is there.
API: GET /events/last-known/{type}/{deviceId}
I am sending data from device through MQTT at rate of 10 messages per second, and trying to get data in application through above rest api, but missing data. For instance, if i am sending 10 temperature values/second as values 1,2,3,4,5,6,7,8,10 and so on. Through rest api, i am getting 1,10,20 and so on, while missing all data between it. When i tried to get historical data, all data is there.
Thanks