Splunk Search

Latest event filter on status- How to get the failed tasks?

splunkuser320
Path Finder

I have a query that is giving the latest event of the task but I want to filter the query for a status

 

<base query>

| stats latest(status) as Status latest(time) as Time by TASK_NAME

Results:

TASK_NAME          Status                           Time

TASK 1                      Passed                         2023-05-19T01:32:28

TASK 2                     Failed                            2023-05-19T01:35:28

TASK 3                     Passed                         2023-05-19T01:15:28

TASK 4                    Passed                          2023-05-19T05:32:28

 

I just wants all the failed tasks

Labels (3)
0 Karma

gcusello
SplunkTrust
SplunkTrust

Hi @splunkuser320,

did you tried to filer events in the main search?

<base query>
| search status="failed"
| stats latest(status) as Status latest(time) as Time by TASK_NAME

if there's the possibility that a task can have more than a status in the period, you can put the filter at the end of the search

<base query>
| stats latest(status) as Status latest(time) as Time by TASK_NAME
| search status="failed"

Ciao.

Giuseppe

0 Karma

splunkuser320
Path Finder

I tried this but the query is giving all the events. I want to get only the latest event. 

0 Karma

yeahnah
Motivator

Just remove the group by clause then...

 

...<your query>...
| search Status="failed"
| stats latest(*) AS *

 

By default, Splunk lists events with the latest first so you could even do this

 

...your base query... Status="failed"
| head 1

 

 

0 Karma
Get Updates on the Splunk Community!

Detecting Remote Code Executions With the Splunk Threat Research Team

REGISTER NOWRemote code execution (RCE) vulnerabilities pose a significant risk to organizations. If ...

Observability | Use Synthetic Monitoring for Website Metadata Verification

If you are on Splunk Observability Cloud, you may already have Synthetic Monitoringin your observability ...

More Ways To Control Your Costs With Archived Metrics | Register for Tech Talk

Tuesday, May 14, 2024  |  11AM PT / 2PM ET Register to Attend Join us for this Tech Talk and learn how to ...