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!

Extending Observability Content to Splunk Cloud

Watch Now!   In this Extending Observability Content to Splunk Cloud Tech Talk, you'll see how to leverage ...

More Control Over Your Monitoring Costs with Archived Metrics!

What if there was a way you could keep all the metrics data you need while saving on storage costs?This is now ...

New in Observability Cloud - Explicit Bucket Histograms

Splunk introduces native support for histograms as a metric data type within Observability Cloud with Explicit ...