Splunk Search

Alternative to dedup

greggz
Communicator

I'm sorting by time cause I want the latest time for every distinct host. Im doing this and it works. But dedup is fairly heavy.. I've tried searching for alternatives but to no avail. Can you guys point me in the right direction ? thanks

Be mindfull that I have a lot more fields in the stats pipe

 | stats
       count(duration) as request_count 
        sum(duration) as total_duration
        sum(exc_thrown) as error_count
        .....  by host _time | sort - _time  | dedup host

I currently have uptaded to | dedup host stortby -_time instead of | sort - _time | dedup host. Don't know which is faster

Tags (2)
0 Karma

mayurr98
Super Champion

you can check execution time in jobs>inspect job. Using dedup on larger dataset can be expensive. There are cases where you can replace dedup by using a stats latest(...

  | stats
latest(_time) as latest_time        
count(duration) as request_count 
         sum(duration) as total_duration
         sum(exc_thrown) as error_count
         .....  by host | sort -  latest_time  | eval latest_time=strftime(latest_time,"%d-%m-%Y %H:%M:%S")

let me know if this helps!

0 Karma

greggz
Communicator

No it's not helping, I sort by host and _time because I need one host at the specific time for all distinct hosts. This code pulling in values from other times to the same host giving false values

0 Karma
Get Updates on the Splunk Community!

Detecting Cross-Channel Fraud with Splunk

This article is the final installment in our three-part series exploring fraud detection techniques using ...

Splunk at Cisco Live 2025: Learning, Innovation, and a Little Bit of Mr. Brightside

Pack your bags (and maybe your dancing shoes)—Cisco Live is heading to San Diego, June 8–12, 2025, and Splunk ...

Splunk App Dev Community Updates – What’s New and What’s Next

Welcome to your go-to roundup of everything happening in the Splunk App Dev Community! Whether you're building ...