Splunk Search

Using eval to Add Field for top Result?

splunkyphil
Engager

I need to create a new field to assign to the top results of a command using eval

Obviously this syntax doesn't work, so I'm looking for the correct query:

source="tutorialdata.zip*" | eval popular = top limit=5 itemId | stats count(action) by popular, action

Basically I only need the action stats of the top 5 itemId results of the following:

Screen Shot 2022-10-23 at 7.43.46 PM.png

 

Sorry for the n00b question; I am just getting started with Splunk. Thanks for your time!

Labels (1)
0 Karma
1 Solution

bowesmana
SplunkTrust
SplunkTrust

Is this what you're after?

 

source="tutorialdata.zip*"
| eval X_{action}=action
| stats count as total count(X_*) as X_* by itemId
| sort - total
| head 5
| rename X_* as *
| fields - total

 

That will give you 5 rows of the most frequent itemId and then each column is a count of actions

Note the X_ prefix to the new field created is to allow the use of wildcards in the stats command to only collect the fields you're interested in.

You could also replace the eval/stats with 

| eval X_{action}=1
| stats count as total sum(X_*) as X_* by itemId

which may be slightly more efficient

View solution in original post

bowesmana
SplunkTrust
SplunkTrust

Is this what you're after?

 

source="tutorialdata.zip*"
| eval X_{action}=action
| stats count as total count(X_*) as X_* by itemId
| sort - total
| head 5
| rename X_* as *
| fields - total

 

That will give you 5 rows of the most frequent itemId and then each column is a count of actions

Note the X_ prefix to the new field created is to allow the use of wildcards in the stats command to only collect the fields you're interested in.

You could also replace the eval/stats with 

| eval X_{action}=1
| stats count as total sum(X_*) as X_* by itemId

which may be slightly more efficient

splunkyphil
Engager

This works; thank you kindly!

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