Splunk Search

chart after using stats latest()

jared_anderson
Path Finder

I have the following command:

sourcetype="sourcetype" eventid=731 OR eventid=730
| stats latest(eventid) by target
| chart count by eventid

the 2nd line works as expected, but when I add in the 3rd line, i get "No results found"

I want to display the results of the 2nd line in a pie chart rather than a table.

1 Solution

gcusello
SplunkTrust
SplunkTrust

Hi
add AS eventid to your stats command

sourcetype="sourcetype" eventid=731 OR eventid=730
| stats latest(eventid) AS eventId by target
| chart count by eventid

Bye.
Giuseppe

View solution in original post

niketn
Legend

@jared_anderson, following should also give you same result. Dedup will get latest events for each target which enables you to count latest eventid for unique targets.

sourcetype="sourcetype" eventid=731 OR eventid=730
| dedup target
| chart count by eventid
____________________________________________
| makeresults | eval message= "Happy Splunking!!!"
0 Karma

gcusello
SplunkTrust
SplunkTrust

Hi
add AS eventid to your stats command

sourcetype="sourcetype" eventid=731 OR eventid=730
| stats latest(eventid) AS eventId by target
| chart count by eventid

Bye.
Giuseppe

jared_anderson
Path Finder

why is the AS eventid needed?

0 Karma

gcusello
SplunkTrust
SplunkTrust

Because if you don't use it, the stats result field name is latest(eventId) as you can see in the column header running Your first two tows.
Bye.
Giuseppe

Get Updates on the Splunk Community!

September Community Champions: A Shoutout to Our Contributors!

As we close the books on another fantastic month, we want to take a moment to celebrate the people who are the ...

Splunk Decoded: Service Maps vs Service Analyzer Tree View vs Flow Maps

It’s Monday morning, and your phone is buzzing with alert escalations – your customer-facing portal is running ...

What’s New in Splunk Observability – September 2025

What's NewWe are excited to announce the latest enhancements to Splunk Observability, designed to help ITOps ...