Splunk Search

Problem with Lookup table

theouhuios
Motivator

Hello

While using lookup table there are multiple entries coming up even when in the lookup table they have distinct values stored.

Here is a gist of data in the lookup file

threshold CI
"1.00",AN100489
"1.00",WASBFBLV
"1.00",AN100369
"1.00",AN100357
"1.00",AN100399
"1.00",AN100281
"1.00",AN100090
"1.00",AN100570
"1.00",WASBHJ8B

Now when I use it in search

sourcetype="incident"| rename record.affectedCI as CI | lookup threshold-Lookup CI AS CI OUTPUT threshold AS threshold | table CI threshold| 

the data comes as
1 WTSDK3LD

2 WTSDHFTB 1.00
3 WTSDHFTB 1.00
4 WTSDHFTB 1.00
5 WTSDHFS4 1.00
6 WTSDHFS4 1.00
7 WTSDC4NQ 1.00
8 WTSDC4NQ 1.00
9 WTSDC4NQ 1.00
10 WTSDC4NQ 1.00
11 WTSDC4NQ 1.00
12 WTSDC4NQ 1.00
13 WTSDB9JG 1.00

Any idea on how can I make it distinct so that it lists it only once? I need it to be uniq as I will be comparing the threshold to other fields to generate emails.

Please help.

Regards

theou

Tags (2)
0 Karma

alacercogitatus
SplunkTrust
SplunkTrust

I believe you want the dedup command.

sourcetype="incident"| rename record.affectedCI as CI | lookup threshold-Lookup CI AS CI OUTPUT threshold AS threshold | dedup CI| table CI threshold

http://www.splunk.com/base/Documentation/5.0/SearchReference/Dedup

theouhuios
Motivator

Issue was in the lookup tables itself. Rectified it. Thanks for the help/

0 Karma

alacercogitatus
SplunkTrust
SplunkTrust

How about: sourcetype="incident" | lookup threshold-Lookup record.affectedCI AS CI OUTPUT threshold|dedup CI |stats values(threshold) as threshold by CI ? If not, could you provide a table of the information you'd like to see? (please use backticks to preserve formatting)

0 Karma

theouhuios
Motivator

I tried with dedup too. But it's still the same.

WASDQYMK    

1.00
1.00
1.00
1.00

Would this be an issue with the lookup table?

0 Karma
Get Updates on the Splunk Community!

Stay Connected: Your Guide to May Tech Talks, Office Hours, and Webinars!

Take a look below to explore our upcoming Community Office Hours, Tech Talks, and Webinars this month. This ...

They're back! Join the SplunkTrust and MVP at .conf24

With our highly anticipated annual conference, .conf, comes the fez-wearers you can trust! The SplunkTrust, as ...

Enterprise Security Content Update (ESCU) | New Releases

Last month, the Splunk Threat Research Team had two releases of new security content via the Enterprise ...