Splunk Search

How to make conditional stats aggregation query?

mxh7777
Path Finder

Hi,

I'm looking for how to make conditional stats aggregation query according to a form input "With users" (value : Yes or No)

I got a list of events per User

When form input With users is equal "Yes", i'd like to present such a table

User URI avgNb avgDuration
A A 1 1
A B 2 5
A C 3 1
B A 5 9
B C 6 10
C A 4 11
C B 6 8

 

Query : | stats count as avgNb avg(DUR) as avgDuration by USR

An when form input With users is equal "No", i'd like to present this one

URI avgNb avgDuration
A 3,33333333 7
B 4 6,5
C 4,5 5,5

Query : | stats count as avgNb avg(DUR) as avgDuration

 

How can I build my query according to this form input condition?

Thanks

Labels (1)
0 Karma
1 Solution

ITWhisperer
SplunkTrust
SplunkTrust

It looks like your queries are more like

| stats count as avgNb avg(DUR) as avgDuration by USR URI

and

| stats count as avgNb avg(DUR) as avgDuration by URI

Given that, you could set up the label and value of the input to be like this

LabelValue
YesUSR URI
NoURI

Then modify the query like this

| stats count as avgNb avg(DUR) as avgDuration by $user$

View solution in original post

ITWhisperer
SplunkTrust
SplunkTrust

It looks like your queries are more like

| stats count as avgNb avg(DUR) as avgDuration by USR URI

and

| stats count as avgNb avg(DUR) as avgDuration by URI

Given that, you could set up the label and value of the input to be like this

LabelValue
YesUSR URI
NoURI

Then modify the query like this

| stats count as avgNb avg(DUR) as avgDuration by $user$

mxh7777
Path Finder

HI @ITWhisperer 

Thanks for answering.

I tried this just to see if it works but it doesn't work

| eval label="USR URI"
| stats count as avgNb avg(DUR) as avgDuration by $label$

=> No results return

whereas this works

| stats count as avgNb avg(DUR) as avgDuration by USR URI

 

Something wrong in my eval instruction ?

Thanks

0 Karma

ITWhisperer
SplunkTrust
SplunkTrust

Yes, the label and value are from your form input (which you have referenced but not shown) not an eval

mxh7777
Path Finder

@ITWhisperer 

It works perfectly !!

Thanks a lot

0 Karma
Career Survey
First 500 qualified respondents will receive a $20 gift card! Tell us about your professional Splunk journey.

Can’t make it to .conf25? Join us online!

Get Updates on the Splunk Community!

Take Action Automatically on Splunk Alerts with Red Hat Ansible Automation Platform

 Are you ready to revolutionize your IT operations? As digital transformation accelerates, the demand for ...

Calling All Security Pros: Ready to Race Through Boston?

Hey Splunkers, .conf25 is heading to Boston and we’re kicking things off with something bold, competitive, and ...

Beyond Detection: How Splunk and Cisco Integrated Security Platforms Transform ...

Financial services organizations face an impossible equation: maintain 99.9% uptime for mission-critical ...