Skip to content

Instantly share code, notes, and snippets.

@undertruck
undertruck / gist:4ce8ad306a3ee85cd49a929d58d930e5
Created September 2, 2018 16:57
Find top 5 edge Locations from AWS CloudFront logs
echo "Top 5 edge locations from sample data" > /dev/null
zgrep Googlebot * | cut -f3 | sort | uniq -c | sort -nr | head -5