Splunk Search

How to write a search that returns count totals and percentages?

splunk_hvijay
Explorer

I have some tables like below extracting from a csv file.

BusinessUnit      Status           SLAMET

Finance           Mailed           On-Time
Finance           Mailed           Late
Finance           Mailed           Early
Finance           Processed        No Status
Finance           Processed        No Status
HR               Mailed           On-Time
HR                Mailed           Late
HR                Mailed           Early
HR                Processed        No Status
HR                Processed        No Status  

I want to write a search query which returns the counts and percentages as below.. Can someone please help?

BusinessUnit    Total    OnTime    %OnTime    Late     %Late   Early     %Early
Finance            5        1         20%       1        20%     1        20%
HR               5        1         20%       1        20%     1        20%
0 Karma
1 Solution

somesoni2
Revered Legend

Try like this

your current search giving fields BusinessUnit, Status, SLAMET 
| stats count as Total count(eval(SLAMET="On-Time")) as OnTime count(eval(SLAMET="Late")) as Late count(eval(SLAMET="Early")) as Early | eval "%Ontime"=tostring(round(OnTime*100/Total,1))."%" | eval "%Late"=tostring(round(Late*100/Total,1))."%" | eval "%Early"=tostring(round(Early*100/Total,1))."%"
| table BusinessUnit Total OnTime "%OnTime" Late "%Late" Early "%Early"

View solution in original post

0 Karma

somesoni2
Revered Legend

Try like this

your current search giving fields BusinessUnit, Status, SLAMET 
| stats count as Total count(eval(SLAMET="On-Time")) as OnTime count(eval(SLAMET="Late")) as Late count(eval(SLAMET="Early")) as Early | eval "%Ontime"=tostring(round(OnTime*100/Total,1))."%" | eval "%Late"=tostring(round(Late*100/Total,1))."%" | eval "%Early"=tostring(round(Early*100/Total,1))."%"
| table BusinessUnit Total OnTime "%OnTime" Late "%Late" Early "%Early"
0 Karma

splunk_hvijay
Explorer

Thank You.. I just added the "stats by BusinessUnit" in the query. Thanks so much again.

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 ...