I want to show the drop down value automatically about data name "landing_time". So I wrote my code like this. | eval st_time= round(landing_time,0) | where st_time<=90 | stats values by st_time ...
See more...
I want to show the drop down value automatically about data name "landing_time". So I wrote my code like this. | eval st_time= round(landing_time,0) | where st_time<=90 | stats values by st_time | sort st_time But it show all landing_time less than 90, not fil the landing_time. For example.. lading_time : 7, 15, 17, 24, 30.. drop down data show : 0, 1, 2, 3, 4, .......17, 18, 19,....30, 31... How could I show only landing_time in the drop down?