-
Notifications
You must be signed in to change notification settings - Fork 8.2k
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
Search visualization/dashboard listing page with AND instead of OR #20676
Comments
@timroes this was what we discussed earlier today. This may be related to elastic/elasticsearch#25470 and cc: @Bargs @lukasolson |
I believe the saved objects search still uses the simple_query_string query. If so, we should just be able to change the |
Checked that and talked to the platform team. This is because the new saved object API now searches with OR as the default operator instead of AND. We need to wait for the platform team to either change the default behavior or offer an option in the API to select the default behavior before we can fix that. cc @mikecote @elastic/kibana-platform |
Blocked on #29262 |
Workaround: There btw is a temporary workaround, which you can do, by using |
related to #19656 |
cc @JacobBrandt |
Between 5 to 6 there was a change in the way the search in the visualization and dashboard listing page works.
In the past when searching for a dashboard
apache metricbeat
it would return results for dashboards withapache
andmetricbeat
in the name/description.Currently, with the changed behavior it will return any dashboard with
apache
ORmetricbeat
, which returns a lot more results,it makes it difficult to find dashboards when users have dozens of objects. In addition, searching
apache AND metricbeat
doesn't help only by using+apache +metricbeat
The request is to have a space consider as an
AND
by default and allowing for explicit searches using anOR
. By defualt when users search forapache metricbeat
is will return dashbaoards with both terms, and if searching forapache OR metricbeat
it returns the current results dashboard with eitherapache
ormetricbeat
The text was updated successfully, but these errors were encountered: