You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I was trying to view / log the connections to a site.
Current Behavior
I didn't see a current way to view connections
Possible Solution
Created new function to pull the nsconnectiontable output
I've created Get-NSTCPConnections, queries the connection table.
Context
I'm using it in this fashion to view the active connections to a site over a 30min period for testing :
1..1800 | %{(Get-NSTCPConnections | ?{$_.destip -like "$vipIPaddress"} | ft).count ; sleep 1}
End goal is to eventually monitor connection count, and add resources on an as needed basis. Watch for a count, power up a server, test, add it to service group.
The text was updated successfully, but these errors were encountered:
Expected Behavior
I was trying to view / log the connections to a site.
Current Behavior
I didn't see a current way to view connections
Possible Solution
Created new function to pull the nsconnectiontable output
I've created Get-NSTCPConnections, queries the connection table.
Context
I'm using it in this fashion to view the active connections to a site over a 30min period for testing :
1..1800 | %{(Get-NSTCPConnections | ?{$_.destip -like "$vipIPaddress"} | ft).count ; sleep 1}
End goal is to eventually monitor connection count, and add resources on an as needed basis. Watch for a count, power up a server, test, add it to service group.
The text was updated successfully, but these errors were encountered: