-
-
Notifications
You must be signed in to change notification settings - Fork 130
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Feature: Add TCP ports to monitor #211
Comments
Can you please describe what specifically you want to monitor. Please give an example. I am not able to understand. |
Hi, In PowerShell, I would do something like this: $tcpConnection = Test-NetConnection -ComputerName $ComputerName -Port $Port
if ($tcpConnection.TcpTestSucceeded) {
Write-Output "Port $Port is open on $ComputerName."
return
} else {
Write-Output "Port $Port is not open on $ComputerName. "
} |
I would also like a feature like this. Since I have several services on different ports, I want to be able to monitor an IP:port combination.
|
It will be release as part of 3.0.9. ETA would be 7th Feb 2025 |
Is your feature request related to a problem? Please describe.
Currently, we are able to ping a host, but an app might be served on a specific port and not necessarily over HTTP.
Describe the solution you'd like
Adding Port monitor would be an additional check to see if the application is up.
Describe alternatives you've considered
Creating an http request node-red flow to check the port and then use the API in Kener to validate.
The text was updated successfully, but these errors were encountered: