Splunk Search

How to edit my search to find percentage of duplicate events?

RocIngersol
Explorer

Hey Folks,

Any suggestions on how to report on the total percent of my events that are duplicates?

I can find my dupes via;

... | eval dupfield=_raw | transaction dupfield maxspan=1s keepevicted=true

But how do I get my dupfield / by my totalevent count? An appended search then an eval? I was thinking there is a better way..perhaps with eventstats first and then piping to transaction...

Thx!

0 Karma
1 Solution

cmerriman
Super Champion

if i understand what you're going for, see if this works.

...| eval dupfield=_raw|stats count by dupfield|eval dupevents=if(count>1,count,0)|stats sum(count) as total sum(dupevents) as dupevents|eval percDup=dupevents/total*100

View solution in original post

0 Karma

cmerriman
Super Champion

if i understand what you're going for, see if this works.

...| eval dupfield=_raw|stats count by dupfield|eval dupevents=if(count>1,count,0)|stats sum(count) as total sum(dupevents) as dupevents|eval percDup=dupevents/total*100
0 Karma
Get Updates on the Splunk Community!

More Ways To Control Your Costs With Archived Metrics | Register for Tech Talk

Tuesday, May 14, 2024  |  11AM PT / 2PM ET Register to Attend Join us for this Tech Talk and learn how to ...

.conf24 | Personalize your .conf experience with Learning Paths!

Personalize your .conf24 Experience Learning paths allow you to level up your skill sets and dive deeper ...

Threat Hunting Unlocked: How to Uplevel Your Threat Hunting With the PEAK Framework ...

WATCH NOWAs AI starts tackling low level alerts, it's more critical than ever to uplevel your threat hunting ...