Splunk Search

Simplifing a search

cpeteman
Contributor

Two Splunk users have saved basically the same search:

searchterms | stats count by punct | table punct,count | append [ search searchterms | dedup punct | table punct,_raw ] | selfjoin punct | sort-count

and

searchterms | stats count by punct | rename punct as spunct | rename count as scount | table spunct scount | append [ search searchterms | dedup punct | rename punct as spunct | table spunct _raw ] | selfjoin spunct

It seems that I should be able to replace both of these with a much simpler search (with no subsearch) such as:

searchterms | stats count by punct | dedup punct | table punct,count,_raw | sort-count

The goal being to give one _raw message for each punct type along with the punct message and the number of occurrences of that punct. However the _raw field is empty. Help.

SOLUTION: I took a look at this again after having worked a lot more with Splunk and saw there's a way better way to do this:

searchterms | stats count first(_raw) AS raw by punct | sort-count

is all it takes.

Tags (3)
1 Solution

passing
Explorer

Try:

searchterms | stats count first(_raw) AS raw by punct | dedup punct | table punct,count,raw | sort-count

View solution in original post

passing
Explorer

Try:

searchterms | stats count first(_raw) AS raw by punct | dedup punct | table punct,count,raw | sort-count

cpeteman
Contributor

You guys never fail to prove that subsearches are avoidable Thanks!

0 Karma

sowings
Splunk Employee
Splunk Employee

The stats command nuked the _raw because you didn't tell it to include it, whether as a calculated value (values, first, last, avg, max, etc) or as a differentiator in the "by" clause.

Get Updates on the Splunk Community!

.conf24 | Registration Open!

Hello, hello! I come bearing good news: Registration for .conf24 is now open!   conf is Splunk’s rad annual ...

ICYMI - Check out the latest releases of Splunk Edge Processor

Splunk is pleased to announce the latest enhancements to Splunk Edge Processor.  HEC Receiver authorization ...

Introducing the 2024 SplunkTrust!

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