Splunk Search

stats\timechart after timechart

reverse
Contributor
| timechart span=10m avg(Value) as AV by Host useother=false 

after running this query - I get desired values for all HOSTS..
Now I want to get MAX of each column for the day ..

Stats wouldn't show anything ..

| stats max(AV) BY Host
0 Karma
1 Solution

renjith_nair
Legend

@reverse ,

Try

 "your search"|untable _time,Host,AV |stats max(AV) BY Host
Happy Splunking!

View solution in original post

0 Karma

nareshinsvu
Builder

Agree with Renjith's comments. But if you need to capture the time of the max event as well, then try this.

"your search"
|untable _time Host AV 
|eventstats  max(AV) as max_AV by Host 
| where AV=max_AV 
| table _time Host AV
0 Karma

renjith_nair
Legend

@reverse ,

Try

 "your search"|untable _time,Host,AV |stats max(AV) BY Host
Happy Splunking!
0 Karma

reverse
Contributor

Amazing .. cleared all the clutter too ..
thank you for such a clean solution

0 Karma
Get Updates on the Splunk Community!

Updated Team Landing Page in Splunk Observability

We’re making some changes to the team landing page in Splunk Observability, based on your feedback. The ...

New! Splunk Observability Search Enhancements for Splunk APM Services/Traces and ...

Regardless of where you are in Splunk Observability, you can search for relevant APM targets including service ...

Webinar Recap | Revolutionizing IT Operations: The Transformative Power of AI and ML ...

The Transformative Power of AI and ML in Enhancing Observability   In the realm of IT operations, the ...