Splunk Search

How to aggregate a percentage of a total before another search?

faramarz
Path Finder

Hey! I am trying to figure out how to aggregate a percentage of the total before another search like this:

eventName = pageLoad | eventstats count as Total | search currentPage "\/brands\/" | stats count(currentPage) as counter by currentPage | eval percent = counter/Total

The percent field is always empty when I try to display it using table, and the variable Total seems to disappear once I get past the stats command. What should I do to preserve that total? Thanks!

Best,
F

0 Karma
1 Solution

somesoni2
Revered Legend

The stats will remove all other fields which are not specified. Try something like this

eventName = pageLoad | eventstats count as Total | search currentPage "\/brands\/" | stats count(currentPage) as counter max(Total) as Total by currentPage | eval percent = counter/Total

Since Total field is generated as same value for all events (eventstats without by clause), you can use any aggregation function of splunk to get it (min, max, values, first, last).

View solution in original post

somesoni2
Revered Legend

The stats will remove all other fields which are not specified. Try something like this

eventName = pageLoad | eventstats count as Total | search currentPage "\/brands\/" | stats count(currentPage) as counter max(Total) as Total by currentPage | eval percent = counter/Total

Since Total field is generated as same value for all events (eventstats without by clause), you can use any aggregation function of splunk to get it (min, max, values, first, last).

faramarz
Path Finder

Amazing. Thanks so much 🙂

0 Karma
Get Updates on the Splunk Community!

Stay Connected: Your Guide to May Tech Talks, Office Hours, and Webinars!

Take a look below to explore our upcoming Community Office Hours, Tech Talks, and Webinars this month. This ...

They're back! Join the SplunkTrust and MVP at .conf24

With our highly anticipated annual conference, .conf, comes the fez-wearers you can trust! The SplunkTrust, as ...

Enterprise Security Content Update (ESCU) | New Releases

Last month, the Splunk Threat Research Team had two releases of new security content via the Enterprise ...