I'm trying to define a query in timelion:
.es(index=rspec_issue_miner_v1, q=priority.name.keyword:(Blocker OR Critical))
However I get an error
Timelion: SyntaxError: {"type":"incompleteFunction","function":"es","location":{"min":1,"max":4},"text":".es"} How can I define this query properly?
Timelion: SyntaxError: {"type":"incompleteFunction","function":"es","location":{"min":1,"max":4},"text":".es"}
Put your queries between single quotes and try to run it again.
.es(index=rspec_issue_miner_v1, q='priority.name.keyword:(Blocker OR Critical)')
It worked! Thanks!
This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.
© 2020. All Rights Reserved - Elasticsearch
Apache, Apache Lucene, Apache Hadoop, Hadoop, HDFS and the yellow elephant logo are trademarks of the Apache Software Foundation in the United States and/or other countries.