-
Notifications
You must be signed in to change notification settings - Fork 8.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Characters I type in the visualization filter box are being removed #14909
Comments
I hacked this together so I could delay the typing of each character;
|
I think this will fix it lee: #15003 |
Still a problem on 6.1.0. I just typed |
thanks @LeeDr . I think I might have an idea of what's going on. I'm guessing the flow is like this: -> search l
If es sends us search results back not in the order we requested, i think this would happen. The fix above for debouncing the search results should have alleviated the problem, but I suppose it's still theoretically possible to hit the bug (just seems unlikely). The debounce filter sends every 200 ms so if you type slower than that (or your input is captured slower than that), it could still happen:
Seems unlikely since the results for Anyway, I'll see if I can simulate the error given my above assumptions and find a better workaround. |
Scratch that. I do see this problem on 5.6.3 with IE 11. I don't see the problem on 5.5.1. To me it looks like several issues were introduced in 5.6. ;
|
Fixed by #15479 in 6.2 so going to close. |
Kibana version: 6.1.0-SNAPSHOT
Elasticsearch version: 6.1.0-SNAPSHOT
Server OS version: Ubuntu 14.04 (virtualBox VM)
Browser version: Chrome 62
Browser OS version: Windows 10
Original install method (e.g. download page, yum, from source, etc.): .deb packages
Description of the problem including expected versus actual behavior:
As I type quickly in the filter box to open a saved visualization some characters get deleted.
This is Selenium typing
Top Transactions for Time Period [APM]
;I first noticed this while running an automated test from the integration-test repo. But I can reproduce it manually sometimes.
It looks similar to this issue (which I thought was IE only);
#14628
I could not reproduce this problem when filtering Dashboards.
Note that I have 243 visualizations loaded from metricbeat, packetbeat, filebeat, and apm-server. So that might impact query response time. And also that I'm running those beats, elasticsearch, logstash, and kibana all in a VM.
Steps to reproduce:
I reproduced it while I was on zoom so maybe that video capturing load makes it easier to reproduce.
Errors in browser console (if relevant):
Provide logs and/or server output (if relevant):
I temporarily modified this method in visualize_page.js to clear and repeat typing in a saved visualization name a couple of times to help me capture a gif. The first attempt is wrapping the query in double-quotes. I left that off the subsequent attempts but I don't think that makes any difference.
I think I'll create a method that has a configurable delay between typing each character to approximate human speed.
The text was updated successfully, but these errors were encountered: