Hi mark.chuman,
timechart will do aggregation on the event values, if you don't need/want that to happen use stats or chart like this:
index=perfstats host=servername | stats avg("%_Privileged_Time") AS avg_PrivTime max("%_Privileged_Time") AS max_PrivTime min("%_Privileged_Time") AS min_PrivTime by host, _time
or
index=perfstats host=servername | chart avg("%_Privileged_Time") AS avg_PrivTime max("%_Privileged_Time") AS max_PrivTime min("%_Privileged_Time") AS min_PrivTime over _time by host
Both results are basically the same like using timechart, but without the aggregation.
hope this helps ...
cheers, MuS
... View more