View active connection count per IP Apache

Run the following command to view the number of connections each IP currently has with the Apache:

netstat -ntu | awk '{print $5}' | cut -d: -f1 | sort | uniq -c | sort -n