When no order is specified (tail or head), EQL should return the most recent X matches (similar to how ES does for search).
This is different than Python EQL which returns the earliest matches first (time ASC). For compatibility purposes this behavior can be enabled (without modifying the query) through a dedicated parameter (say default_order or missing_order) which can be ASC/DESC.
When no order is specified (
tailorhead), EQL should return the most recent X matches (similar to how ES does for search).This is different than Python EQL which returns the earliest matches first (time ASC). For compatibility purposes this behavior can be enabled (without modifying the query) through a dedicated parameter (say
default_orderormissing_order) which can beASC/DESC.