Splunk Enterprise

How to limit results with a condition before retrieving the final results

smirambe
Engager

Dear experts,

I apologize but I am new on Splunk and I have a question which can be really simple for you ...

I have just uploaded a file Inside Splunk for SAP jobs analyzing. The format is really simple :
JobName | StartDate | Duration

I have retrieved the jobs with the highest execution duration by the search -> stats count(JobName) avg(Duration_sec) by JobName

However, I want to add the following condition "Only the JobName with more than 100 exécutions should be counted".

How can I modify my query ?

Thanks really in advance.

Regards.

Stéphane

Tags (1)
0 Karma
1 Solution

richgalloway
SplunkTrust
SplunkTrust

Perhaps this is what you are looking for.

stats count(JobName) as Executions avg(Duration_sec) by JobName | where Executions > 100
---
If this reply helps you, Karma would be appreciated.

View solution in original post

smirambe
Engager

Thanks really for all, both solutions work perfectly. The second one is perhaps simplest ...

0 Karma

richgalloway
SplunkTrust
SplunkTrust

Perhaps this is what you are looking for.

stats count(JobName) as Executions avg(Duration_sec) by JobName | where Executions > 100
---
If this reply helps you, Karma would be appreciated.

TiagoTLD1
Communicator

Hi

1st scenario: gives you the jobs that were executed more than 100 times

| stats count(JobName) AS COUNTER avg(Duration_sec) AS AVG_DURATION by JobName | where COUNTER>100 | table JobName, AVG_DURATION

2nd scenario: if you want to calculate the avg_duration of jobs that were executed more than 100 times, you can do this:

| eventstats count(JobName) AS COUNTER by JobName | where COUNTER>100 | stats avg(Duration) as AVG_DURATION by JobName | table JobName, AVG_DURATION

That returns only the

0 Karma
Get Updates on the Splunk Community!

Join Us for Splunk University and Get Your Bootcamp Game On!

If you know, you know! Splunk University is the vibe this summer so register today for bootcamps galore ...

.conf24 | Learning Tracks for Security, Observability, Platform, and Developers!

.conf24 is taking place at The Venetian in Las Vegas from June 11 - 14. Continue reading to learn about the ...

Announcing Scheduled Export GA for Dashboard Studio

We're excited to announce the general availability of Scheduled Export for Dashboard Studio. Starting in ...