How to Show the Top URL's being Accessed by the Users?

Still need help?

The Atlassian Community is here for you.

Ask the community

Purpose

 To find the most visited URLs from the access.logs and perform few performance tests to know how it is working and how to improve user experience when accessing those pages.

Resolution

 This is only applicable for Linux Users:

cat /path/to/your/access/logs/access_log | cut -d\  -f7 | sort -T . | uniq -c | sort -T . -r -g | head -n 20 
Last modified on Aug 14, 2015

Was this helpful?

Yes
No
Provide feedback about this article
Powered by Confluence and Scroll Viewport.