Splunk Search

How to exclude data that is already duplicated?

Hong_TP
Engager

Hi ,

I have somthing data need to deduplicate.

I got some data from two database and save in different indexes . I use the following SPL to merge the data as

 

 

 

index="data1"  sourcetype="data1" | append [search index="data2" sourcetype="data2"]
|rename data1DATA as 1data
|eval dataall=coalesce(1data,2data)
|table dataall sourcetype

 

 

 

and I got results like this

 

 

 

dataall      sourcetype
------       ----------
abc,1        data1
abc,1        data2
def,2        data1
abc,3        data2

 

 

 

Now, I need to compare the data and exclude duplicate data . The result is like the following

 

 

 

dataall      sourcetype
------       ----------
def,2        data1
dbc,3        data2

 

 

 

Any suggestions ?

Greetings and thanks!

Tags (3)
0 Karma
1 Solution

ITWhisperer
SplunkTrust
SplunkTrust
| eventstats count by dataall
| where count == 1

View solution in original post

0 Karma

ITWhisperer
SplunkTrust
SplunkTrust
| eventstats count by dataall
| where count == 1
0 Karma
Get Updates on the Splunk Community!

.conf25 Community Recap

Hello Splunkers, And just like that, .conf25 is in the books! What an incredible few days — full of learning, ...

Splunk App Developers | .conf25 Recap & What’s Next

If you stopped by the Builder Bar at .conf25 this year, thank you! The retro tech beer garden vibes were ...

Congratulations to the 2025-2026 SplunkTrust!

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