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!

Splunk Custom Visualizations App End of Life

The Splunk Custom Visualizations apps End of Life for SimpleXML will reach end of support on Dec 21, 2024, ...

Introducing Splunk Enterprise 9.2

WATCH HERE! Watch this Tech Talk to learn about the latest features and enhancements shipped in the new Splunk ...

Adoption of RUM and APM at Splunk

    Unleash the power of Splunk Observability   Watch Now In this can't miss Tech Talk! The Splunk Growth ...