I have 2 concerns to address. First I will describe the first one, once its done I will describe the second one. Below is how my spl query of 1st panel looks like. eventtype="example1" OR eventtype="example2" airline="airline1" AND aircraft="aircraft1" |sort 0 _time |rex for latitude and longitude |table _time airline aircraft lon lat flight_number |streamstats current=f last(flight_number) as p_fn |eval flight_number=if(isnull(flight_number),p_fn,flight_number) |search flight_number="filghtnumber1" |geostats count latfield=lat longfield=lon This gives visualization like the below. But I want it to be shown as continuous line instead of bubbles. Is it possible to be done using any other visualization or modifying the spl query shared? I am not working for any specific geographic region.
... View more