Skip to content

Instantly share code, notes, and snippets.

@arx76
Created November 29, 2018 15:02
Show Gist options
  • Save arx76/0c4f486e0efb02c3adce7998b73d5c98 to your computer and use it in GitHub Desktop.
Save arx76/0c4f486e0efb02c3adce7998b73d5c98 to your computer and use it in GitHub Desktop.
Established connections number
ss -p | grep nginx | grep -i estab | wc -l
Established connections IP addresses
ss -p | grep nginx | grep -i estab | awk '{print $6}' | cut -f1 -d\: | sort -u
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment