I am on Kibana 6.2.4 and I couldn't get the following Timelion visualization working right.
.es(index="bug_elk_prod", timefield="open_date", q="(found_in_rv: 'AGM 9.0') AND (target_rv:PARENT)").label("Found in AGM 9.0").color(#00BFFF).bars()
The visualization of this query came out as same as my other Timelion visualization - in which q="(found_in_rv: '9.0') AND (target_rv:PARENT)") the value "9.0" is the only difference. Please see the screenshot attached to this discussion.
It seems like the query of 'AGM 9.0' didn't go through. How could I make it right to get the data associated with "AGM 9.0"? Thanks.
.es(index="bug_elk_prod", timefield="open_date", q='(found_in_rv:"9.0" OR found_in_rv:"AGM 9.0") AND target_rv:PARENT').label("Found in 9.0 and AGM 9.0").color(#00BFFF).bars()
The query (found_in_rv:"9.0" OR found_in_rv:"AGM 9.0") is picking up only the 9.0 data but not AGM 9.0 data. How do I make this OR expression right?
Thank you, you are right. This euery is 9.0 and AGM 9.0 inclusive. It's now working after I changed my query from target_rv:9.0 to target_rv.keyword:9.0.
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.