You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We've vastly improved the url encoding in Kibana 4. Values are now encoded and decoded with RISON, which should entirely solve this issue. https://github.com/Nanonid/rison
Using Kibana 3.0.1:
This works as expected:
/#/dashboard/file/logstash.json?query=@fields.request_id:blah
This causes the browser (Chrome/Linux 34.0.1847.132 official) to error out:
/#/dashboard/file/logstash.json?query=@fields.request_id:%22blah%22
The error (from the javascript console):
TypeError: Cannot read property 'interval' of undefined
at dash_load (https://myserver/app/app.js:21:25997)
at https://myserver/app/app.js:21:28539
at i (https://myserver/app/app.js:9:458)
at i (https://myserver/app/app.js:9:458)
at https://myserver/app/app.js:9:1014
at Object.f.$eval (https://myserver/app/app.js:9:6963)
at Object.f.$digest (https://myserver/app/app.js:9:5755)
at Object.f.$apply (https://myserver/app/app.js:9:7111)
at f (https://myserver/app/app.js:9:11507)
at r (https://myserver/app/app.js:9:13216)
The upshot is values that must be quoted can't be searched for via URL parameters.
The text was updated successfully, but these errors were encountered: