Splunk Search

Is there a way to divide the addcoltotals from each case statement in my search?

jhayIV
Engager

Is there a way to divide the addcoltotals from each case statement in the following :

eval daysclass=case(
NoOfDays<=14,"0-14 DAYS ",
NoOfDays>15 AND NoOfDays<=28,"14-28 DAYS ",
NoOfDays>29 AND NoOfDays<=42,"28-42 DAYS ",
NoOfDays>43 AND NoOfDays<=56,"42-56 DAYS",
NoOfDays>57, "56 DAYS OR MORE "
,1=1,"NULL")|search daysclass!=NULL|stats count(Name) AS "COUNT" by daysclass| ADDCOLTOTALS
0 Karma

cmerriman
Super Champion

if i get what you're doing, i think this might work:

eval daysclass=case(
 NoOfDays<=14,"0-14 DAYS ",
 NoOfDays>15 AND NoOfDays<=28,"14-28 DAYS ",
 NoOfDays>29 AND NoOfDays<=42,"28-42 DAYS ",
 NoOfDays>43 AND NoOfDays<=56,"42-56 DAYS",
 NoOfDays>57, "56 DAYS OR MORE "
 ,1=1,"NULL")|search daysclass!=NULL|stats count(Name) AS "COUNT" by daysclass|eventstats sum(COUNT) as total|eval divide=COUNT/total
0 Karma
Get Updates on the Splunk Community!

Announcing Scheduled Export GA for Dashboard Studio

We're excited to announce the general availability of Scheduled Export for Dashboard Studio. Starting in ...

Extending Observability Content to Splunk Cloud

Watch Now!   In this Extending Observability Content to Splunk Cloud Tech Talk, you'll see how to leverage ...

More Control Over Your Monitoring Costs with Archived Metrics GA in US-AWS!

What if there was a way you could keep all the metrics data you need while saving on storage costs?This is now ...