This may seem general question but please take out to the time to answer. What is the best way to continuosly monitor 400+ SQL servers for parameters like agent status, CPU, Avail Memory etc. ? The method should be able to do itfrom a central location though that is not a hard rule and can be modified. I have looked into perfmon counters , wmi etc. but I still dont have a clear picture. As always, all the help is greatly appreciated.
closed as off topic by DaveShaw, Tim Lehner, Pondlife, marc_s, mah Oct 25 '12 at 0:17
Questions on Stack Overflow are expected to relate to programming or software development within the scope defined in the FAQ. Consider editing the question or leaving comments for improvement if you believe the question can be reworded to fit within the scope. Read more about closed questions here.
|
I'd recommend IBM Tivoli Monitoring for such a volume of servers. It is not free. It is not even cheap. It is very expensive, but as an added bonus, it can monitor virtually anything... |
|||
|
|
There are several commercial tools available like Red-Gate SQL Monitor or SQL Sentry that can help you with that. Red-Gate just added the ability to monitor the result of any SQL query. If you want to roll your own solution, you could create a linked server for each monitoree on a single central server and then use SQL Agent to regularly run queries against those and insert the results in some holding table on the central server. then you could write reports against that data. More information about linked servers: http://msdn.microsoft.com/en-us/library/ff772782(v=sql.105).aspx While that information is for SQL Server 2008R2, the concept exists for older versions as well. |
|||||
|