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!

Introducing the 2024 SplunkTrust!

Hello, Splunk Community! We are beyond thrilled to announce our newest group of SplunkTrust members!  The ...

Introducing the 2024 Splunk MVPs!

We are excited to announce the 2024 cohort of the Splunk MVP program. Splunk MVPs are passionate members of ...

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