I have a search that returns events with many different URLs index=test URL=* I want to obtain a count of events per URL However some of the URLs are slightly different so I want to group them together Example of my URL values /login/ /login/ /api/customer/5542-a44/data /api/customer/5c77-59w/data /api/customer/7a88-134/data /weather/forecast/ /api/savedseach/7775 /api/savedseach/4788 /new/user What I would like to end up with URL COUNT /login/ 2 /api/customer//data 3 /weather/forecast/ 1 /api/savedseach/ 2 /new/user 1 Im using | stats count by URL However as mentioned above my issue is with the URLs that have ids or guids in them
... View more