Splunk Search

Table with count and latest date

giuces
Engager

Hi all,

i need to create a table that count for every product how many events are accepted or rejected.

In addition to this fields the latest event date should be shown with the count. Table should be like this

ProductLatest AcceptedTotal AcceptedLatest RejectedTotal Rejected
Bike10/11/20213512/11/202114
Skate11/11/20219913/11/20215

 

the first part of the query is pretty easy:

...| stats count(eval(action="accepted)) AS "Total Accepted" count(eval(action="rejected)) AS "Total rejected" by product | rename product AS Product

I'm not able to retrieve the latest date for every  kind of action, tried with latest(_time) without success.

Many thanks

 

Labels (1)
0 Karma

aasabatini
Motivator

Hi @giuces 

try the stats function like this:

stats latest(eval(if(action="rejected", _time, NULL()))) AS "Latest Rejected"

 

Ale 

“The answer is out there, Neo, and it’s looking for you, and it will find you if you want it to.”
0 Karma

giuces
Engager

thanks aasabatini,

i'm little be confused where do i have to insert portion of search yo suggest in the old one

 

...| stats count(eval(action="accepted)) AS "Total Accepted" count(eval(action="rejected)) AS "Total rejected" by product | rename product AS Product | table Product "Total Accepted" "Total Rejected" ?

 

Regards

0 Karma

aasabatini
Motivator

Hi @giuces 

 

try like this

 stats count(eval(action="accepted)) AS "Total Accepted" count(eval(action="rejected)) AS "Total rejected" latest(eval(if(action="rejected", _time, NULL()))) AS "Latest Rejected" by product | rename product AS Product
“The answer is out there, Neo, and it’s looking for you, and it will find you if you want it to.”
0 Karma
Get Updates on the Splunk Community!

Observability Unlocked: Kubernetes Monitoring with Splunk Observability Cloud

  Ready to master Kubernetes and cloud monitoring like the pros?Join Splunk’s Growth Engineering team for an ...

Wrapping Up Cybersecurity Awareness Month

October might be wrapping up, but for Splunk Education, cybersecurity awareness never goes out of season. ...

🌟 From Audit Chaos to Clarity: Welcoming Audit Trail v2

🗣 You Spoke, We Listened  Audit Trail v2 wasn’t written in isolation—it was shaped by your voices.  In ...