Hello,
Is there a way I can monitor application server connection timeout to the database servers?
Hi @raiden100
Two ways directly comes to mind. The first easy way should be to see if the application itself is storing this info in some log file or as a windows event . Can you monitor such a log for that kind of info?
The other way is to have a powershell-script-monitor do a "test-netconnection [SQLServerName] -Port 1433" to see if the application server can reach the SQL server. Does not say if the application get a response from the query itself though.
You could also use "Application dependency with connection quality polling": https://documentation.solarwinds.com/en/success_center/sam/content/sam-adm-configure-app-dependencies.htm?cshid=OrionSamADMEnableAppDependencyPollingIt will give you latency and packetloss between your application and db. Not timeouts but close.