Skip to content

Instantly share code, notes, and snippets.

@adnxn
Last active March 7, 2018 23:27
Show Gist options
  • Save adnxn/152c0fe2c7e243f78aa92fb5203f83a2 to your computer and use it in GitHub Desktop.
Save adnxn/152c0fe2c7e243f78aa92fb5203f83a2 to your computer and use it in GitHub Desktop.
grep -rhe "ACS Websocket connection closed for a valid reason" -e "ACS client starting websocket poll loop" /var/log/ecs |
sort |
tail -n +2 |
awk -F'Z' '{ gsub("-"," ",$1); gsub("T"," ",$1); gsub(":"," ",$1); print mktime($1)}' |
sort -n |
awk '{if(NR%2 == 0){print $1 - _n}; _n=$1}' |
sort -n
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment