I am working with range query in ELK stack. Suppose I am retrieving records with GTE only, so will the resultant records time will be = the GTE date provided or >= the GTE date provided?
Asked
Active
Viewed 117 times
1 Answers
0
GTE = "Greater or Equal"
So the resulting records will be >= the provided date.

Val
- 207,596
- 13
- 358
- 360
-
Thank you for clarifying. :) – Ashish Singh May 21 '19 at 14:05
-
Val, is there a way to get only greater than and not GTE? – Ashish Singh Jun 20 '19 at 07:39
-
Yes, use `gt` instead of `gte` :-) – Val Jun 20 '19 at 07:49