Search code examples
javaapireal-timedashboard

Real Time Dashboard - Data refresh issue


I want to build an dashboard to visualize data from multiple database through an API. I don't want to pull data at regular interval because each database have individual API so I need to pull from 25 different servers.

I need some solution to push from server side to the dashboard


Solution

  • A solution to push data realtime from server to client can be done through Webockets. Using WebSockets you can push data from the server to the client without the client having to poll the server for updates.