When running “asadm -e collectinfo”, it takes a long time to do the connection counts using “ss”. For example, there are 3 commands like this that each take 10 minutes on our systems: > [INFO] Data collection for [‘ss -pant | grep 3000 | grep TIME-WAIT | wc -l’] in progress…
The following takes <1s on our systems: > ss -pant state time-wait dst :3000 | wc -l
Seems like they accomplish the same task?