Splunk Search

How to create a conditional stats search based on a field value?

ronny_wang
Explorer

Hi,
I am trying to write a conditional stats command based on a field value.
So for example:
I have a field called stat_command

Name, No., stat_command         
Name1, 5, latest
Name2, 12, avg
Name3, 13, max

So for stat_command = latest, I want to run | stats latest(Number)
for stat_command = avg, I want to run | stats avg(Number)

Is there a way to do this in a search-efficient way without doing many appends?
I have tried using macros, map, and case statements but have not had much luck.

Thanks

0 Karma
1 Solution

ronny_wang
Explorer

Hi,

As i had to split by a number of fields, including the Name field, we were able to do the following:
| stats latest(Value) AS latest_value
avg(Value) AS avg_value
max(Value) AS max_value
min(Value) AS min_value
count(Value) AS count_value
BY Name

| eval value=case(stats_command="latest", latest_value,
stats_command="avg", avg_value,
stats_command="min", min_value,
stats_command="max", max_value,
stats_command="count", count_value,
1=1, Value)

View solution in original post

0 Karma

ronny_wang
Explorer

Hi,

As i had to split by a number of fields, including the Name field, we were able to do the following:
| stats latest(Value) AS latest_value
avg(Value) AS avg_value
max(Value) AS max_value
min(Value) AS min_value
count(Value) AS count_value
BY Name

| eval value=case(stats_command="latest", latest_value,
stats_command="avg", avg_value,
stats_command="min", min_value,
stats_command="max", max_value,
stats_command="count", count_value,
1=1, Value)
0 Karma

richgalloway
SplunkTrust
SplunkTrust

@ronny_wang If your problem is resolved, please accept an answer to help future readers.

---
If this reply helps you, Karma would be appreciated.
0 Karma

renjith_nair
Legend

@ronny_wang,

Does this approach work for you ?

    | eventstats latest(No) as _latest,avg(No) as _avg,max(No) as _Max
    | eval value=case(stat_command=="latest",_latest,stat_command=="avg",_avg,stat_command=="max",_Max)

Get all types of aggregate values using stats and select only the value based on your condition

---
What goes around comes around. If it helps, hit it with Karma 🙂

ronny_wang
Explorer

Hi, As i had to split by a number of fields, including the name field, I was able to solve this with the following

| stats latest(Value) AS latest_value 
avg(Value) AS avg_value
max(Value) AS max_value
min(Value) AS min_value
count(Value) AS count_value
latest(_time) AS event_time_epoch
BY Name
| eval metric_value=case(stats_command="latest", latest_value,
stats_command="avg", avg_value,
stats_command="min", min_value,
stats_command="max", max_value,
stats_command="count", count_value,
1=1, Value)
0 Karma
Got questions? Get answers!

Join the Splunk Community Slack to learn, troubleshoot, and make connections with fellow Splunk practitioners in real time!

Meet up IRL or virtually!

Join Splunk User Groups to connect and learn in-person by region or remotely by topic or industry.

Get Updates on the Splunk Community!

Why Splunk Customers Should Attend Cisco Live 2026 Las Vegas

Why Splunk Customers Should Attend Cisco Live 2026 Las Vegas     Cisco Live 2026 is almost here, and this ...

What Is the Name of the USB Key Inserted by Bob Smith? (BOTS Hint, Not the Answer)

Hello Splunkers,   So you searched, “what is the name of the usb key inserted by bob smith?”  Not gonna lie… ...

Automating Threat Operations and Threat Hunting with Recorded Future

    Automating Threat Operations and Threat Hunting with Recorded Future June 29, 2026 | Register   Is your ...