Splunk Search

Eval count in two searches

macadminrohit
Contributor

Hi,

I have a search that lists top 50 events based on the following search :

index=servers sourcetype=json appName="" AND appName!="*Server" AND appName!="Service") locId=* level=Warning OR level=Error OR level=Critical) bdy.msg="Scanner*"
top 50 appName level msg bdy.ex.Msg | addcoltotals | fields - percent

This give me top 50 events with their count. I have another search with slight change :

index=servers sourcetype=json appName="" AND appName!="*Server" AND appName!="Service") locId=* level=Information bdy.msg="Scanner*"
top 50 appName level msg bdy.ex.Msg | addcoltotals | fields - percent

only thing changing is Level . Now i have to calculate the ratio of both the counts from two searches. how can i do that. any help is highly appreciated.

Thanks
Rohit

Tags (1)
0 Karma

somesoni2
Revered Legend

Give this a try

index=servers sourcetype=json (appName="*"  AND appName!="*Server*" AND appName!="*Service*") locId=* (level=Warning OR level=Error OR level=Critical OR level=Information)   bdy.msg="Scanner*"
| eval level=if(level="Information",level,"NonInformation")
|  top 50 appName msg bdy.ex.Msg by level showperc=f 
| eval Info=if(level="Information",count,null())
| eval NonInfo=if(level!="Information",count,null())
| stats values(Info) as Info values(NonInfo) as NonInfo by appName msg bdy.ex.Msg
| addcoltotals 
| eval Ratio=Info/NonInfo
0 Karma
Get Updates on the Splunk Community!

Splunk Custom Visualizations App End of Life

The Splunk Custom Visualizations apps End of Life for SimpleXML will reach end of support on Dec 21, 2024, ...

Introducing Splunk Enterprise 9.2

WATCH HERE! Watch this Tech Talk to learn about the latest features and enhancements shipped in the new Splunk ...

Adoption of RUM and APM at Splunk

    Unleash the power of Splunk Observability   Watch Now In this can't miss Tech Talk! The Splunk Growth ...