Inde= x source=xtype | table _time bank | bucket span =1sec _time | stats count as pps by _time | timechart span=1 hr max(pps) as "maxpps"
_time. Max pps columns getting output but radical chart not navigated panel
You just need a single value from your search - depending on what you are trying to show, try this
Inde= x source=xtype | table _time bank | bucket span =1sec _time | stats count as pps by _time | timechart span=1 hr max(pps) as "maxpps" | stats max(maxpps) as maxpps
I am not clear what you mean by "radical chart not navigated panel". What is a "radical" chart? Where are you navigating from? Please can you explain more what you are trying to do and what you expect to see?
this radical chart my result showing 1 or 10 but nagivatiom pointer shows only 0
You just need a single value from your search - depending on what you are trying to show, try this
Inde= x source=xtype | table _time bank | bucket span =1sec _time | stats count as pps by _time | timechart span=1 hr max(pps) as "maxpps" | stats max(maxpps) as maxpps