Real Time Monitoring System using .net [closed]
- by sameer
I need to develop the application which display the dashboard where data from various SQL DB is fetched from different servers and displayed. Now this need to happen real time we can have refresh time say 5 min.
Here is my thought, suggest if anything is wrong.
1) To Develop the Windows Service to accumulate the data from various SQL Server Instance.
2) Then Persist those details into SQL DB from which Dashboard will displayed on the web page.
3) Fetch of data from Windows service will be trigger every x minutes.
4) SQL Server Instance details will be stored in SQL DB which Windows Service will be referring.
Thus this approach make sense.
Thanks..