Splunk Search

Top 10 Event Counts with date/time of last event

mmester
Explorer

Guys,

Im looking to figure out a way to determine when the last event happened in a top ten report. For example:

5/12/2013 12:00 500 apples
5/12/2015 13:00 225 Pears
Etc.

I currently have the query:

host="Clerk" sourcetype="fruitStand" | top 10 fruit

I use the table visualization.

Tags (4)
0 Karma
1 Solution

lguinn2
Legend

Try this instead:

host="Clerk" sourcetype="fruitStand" 
| stats count latest(_time) as latestTime by fruit
| sort -count
| fieldformat latestTime=strftime(latestTime,"%x %X")
| head 10

If you really need the percentage, add the following:

host="Clerk" sourcetype="fruitStand" 
| stats count latest(_time) as latestTime by fruit
| eventstats sum(count) as TotalCount
| eval percent=round(count*100/TotalCount)
| fields - TotalCount
| fieldformat latestTime=strftime(latestTime,"%x %X")
| sort -count
| head 10

View solution in original post

lguinn2
Legend

Try this instead:

host="Clerk" sourcetype="fruitStand" 
| stats count latest(_time) as latestTime by fruit
| sort -count
| fieldformat latestTime=strftime(latestTime,"%x %X")
| head 10

If you really need the percentage, add the following:

host="Clerk" sourcetype="fruitStand" 
| stats count latest(_time) as latestTime by fruit
| eventstats sum(count) as TotalCount
| eval percent=round(count*100/TotalCount)
| fields - TotalCount
| fieldformat latestTime=strftime(latestTime,"%x %X")
| sort -count
| head 10

mmester
Explorer

Thank you that worked perfectly

0 Karma
Get Updates on the Splunk Community!

Developer Spotlight with Paul Stout

Welcome to our very first developer spotlight release series where we'll feature some awesome Splunk ...

State of Splunk Careers 2024: Maximizing Career Outcomes and the Continued Value of ...

For the past four years, Splunk has partnered with Enterprise Strategy Group to conduct a survey that gauges ...

Data-Driven Success: Splunk & Financial Services

Splunk streamlines the process of extracting insights from large volumes of data. In this fast-paced world, ...