Home > other >  Lucene query for Todays date
Lucene query for Todays date

Time:10-13

I'm trying to filter my Elastic Search data based on a date field to show me everything for todays date.

In Kibana I can use the KQL query using now/d but I need the equivalent for Lucene, any help? I would've thought it'd be the same but it doesn't seem to work

CodePudding user response:

It's not supported yet at the Lucene level and is still work in progress

CodePudding user response:

field:[now/d TO now/d] seems to do the trick

  • Related