Monitoring connections


/ Published in: Bash
Save to your folder(s)

I am monitoring stablished http connections in a loop each 30 seconds


Copy this code and paste it in your HTML
  1. while true; do netstat -n |grep ':80' |grep 'EST' | wc -l; sleep 30; done;

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.