@@ -704,6 +704,7 @@ logsdb with default ignore dynamic beyond limit and default sorting:
704704 body :
705705 query :
706706 match_all : {}
707+ sort : " @timestamp"
707708
708709 - match : { hits.total.value: 2 }
709710 - match : { hits.hits.0._source.name: "bar" }
@@ -765,15 +766,16 @@ logsdb with default ignore dynamic beyond limit and non-default sorting:
765766 body :
766767 query :
767768 match_all : {}
769+ sort : " @timestamp"
768770
769771 - match : { hits.total.value: 2 }
770- - match : { hits.hits.0._source.name: "foo " }
771- - match : { hits.hits.0._source.value: 10 }
772- - match : { hits.hits.0._source.message: "the quick brown fox " }
772+ - match : { hits.hits.0._source.name: "bar " }
773+ - match : { hits.hits.0._source.value: 20 }
774+ - match : { hits.hits.0._source.message: "jumps over the lazy dog " }
773775 - match : { hits.hits.0._ignored: [ "host", "message", "pid", "region", "value" ] }
774- - match : { hits.hits.1._source.name: "bar " }
775- - match : { hits.hits.1._source.value: 20 }
776- - match : { hits.hits.1._source.message: "jumps over the lazy dog " }
776+ - match : { hits.hits.1._source.name: "foo " }
777+ - match : { hits.hits.1._source.value: 10 }
778+ - match : { hits.hits.1._source.message: "the quick brown fox " }
777779 - match : { hits.hits.1._ignored: [ "host", "message", "pid", "region", "value" ] }
778780
779781---
@@ -870,6 +872,7 @@ logsdb with default ignore dynamic beyond limit and subobjects false:
870872 body :
871873 query :
872874 match_all : {}
875+ sort : " @timestamp"
873876
874877 - match : { hits.total.value: 2 }
875878 - match : { hits.hits.0._source.name: "bar" }
0 commit comments