Im currently using the query to find the cpu utilization for a few host but i want to see the average utilization per host
tag=name "CPU Utilization" | timechart span=15m max(SysStatsUtilizationCpu) by host limit=0
Any information would be helpful
It worked, how do i remove the decimal (floating number)
| eval average=floor(average)
| timechart span=15m max(SysStatsUtilizationCpu) by host limit=0
| untable _time host SysStatsUtilizationCpu
| stats avg(SysStatsUtilizationCpu) as average by host
Thank you