The most recent content from our members.
Hi folks. Say I want to monitor a large range of TCP ports on a server. Let's say 9000-9200. Is my only option to create a SAM template and click one-by-one and add 200 individual TCP Monitor components? I would think that monitoring a range of ports would be a common need for server and application monitoring but I can't…
This all started from a simple command I ran in another monitoring tool that is being replaced. netstat -an | find "TCP" | find ":1433" | find /c "ESTABLISHED" Then I replicated it in powershell: (Get-NetTCPConnection | Where-Object { $_.RemotePort -eq '1433' -and $_.State -eq 'ESTABLISHED' }).count I realize that when I…
Hi, The TCP Port Monitor component currently works in a Down is equal to not responding. There is a need to update this monitor to allow the component status if the port is open and accepting connections. This is to allow a security based profile to be monitored, whereby you are monitoring to ensure you cannot connect to a…
It looks like you're new here. Sign in or register to get started.