/ Published in: Bash
I am monitoring stablished http connections in a loop each 30 seconds
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
while true; do netstat -n |grep ':80' |grep 'EST' | wc -l; sleep 30; done;