Currently, I am saving the execution results from an external simulation tool into a database every hour based on the simulation time. This data is then retrieved using CDCsync. From this data, I extract the timestamps to create a timeseries and build a system using Quiver that updates the Time Series Chart in real-time.
The implementation up to this point is complete; however, an issue has arisen.
In the current simulation setup, data can only be retrieved from “2024/5/30 07:00:00” to “2024/5/31 00:00”. As a result, even if I run the simulation multiple times for verification, the Quiver graph always displays data up to “2024/5/31 00:00”. This makes it impossible to confirm in real-time whether data is being successfully retrieved using Quiver’s Time Series Chart.
One of the requirements is that data for the same period (“2024/5/30 07:00:00” to “2024/5/31 00:00”) exists separately from the simulation data and can be used for comparison.
For instance, is there a way to ensure that the graph does not display data beyond the timestamp of the most recently retrieved data?