Live feed of concurrent HTTP connections

By | 18th July 2014

This is a cool command for checking how many are sending requests to the webserver.

watch -n 0.5 “netstat -ano | grep -v unix | grep ESTABLISHED | grep :80”

 

With the above command one can monitor how many connections are connected to the server. It looks a bit like a sci-fi screen if you have more than 50 connections at a time 🙂