How can we monitor connections between sockets? And one more thing please, no NTA settings option in 'Product Specific Settings'.
I would query it with PowerShell in the SAM PowerShell script component. Pulling the info should be something like:
<pre class="code codeBlock" spellcheck="false" tabindex="0"> Get-NetTCPConnection | Select-Object LocalAddress, LocalPort, RemoteAddress, RemotePort, State, OwningProcess, @{l="Name"; e={Get-Process -Id $_.OwningProcess | Select-Object -ExpandProperty Name}}</pre>
Then you just need to filter for the thing you want to check and return back the data the SAM component needs. (More info at: PowerShell scripting in SAM component monitors (solarwinds.com) )