Timelion in 7.10.0 does not work with single quotations anymore #83297
Labels
Feature:Timelion
Timelion app and visualization
patch-worthy
regression
Team:Visualizations
Visualization editors, elastic-charts and infrastructure
Kibana version: 7.10.0
In Kibana 7.9.3 the pattern
.es(index='logstash-*',q="subtype=EQS", metric="sum:payload_length").cusum()
works as expected.
In kibana 7.10.0 it results in an error
Timelion request error: undefined SyntaxError: {"type":"incompleteFunction","function":"es","location":{"min":0,"max":3},"text":".es"}
after changing it to:
.es(index="logstash-*",q="subtype=EQS", metric="sum:payload_length").cusum()
it works again. Seems like your parser has changed. This is very nasty because I use a lot of timelion commands.
The text was updated successfully, but these errors were encountered: