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
I tried using the query count plugin script to alert if a query count is not satisfied. However upon testing out and examine the code, the following two issues came up :
The Query DSL used to construct the query in elasticsearch-query.rb is not supported within ES2.x Query DSL. (filtered queries have gone the way of the dodo), instead the query needs to be modified to use a Bool query with a filter option along with a must/must_not/should option.
The script seems to allow to query only against 1 field, the script should be enhanced to either accept a well formed ES query, or a Lucene Query (field_name:Fieldvalue AND anotherFieldName=differentFieldValue...) instead of insisting on a field option being provided
I tried using the query count plugin script to alert if a query count is not satisfied. However upon testing out and examine the code, the following two issues came up :
The text was updated successfully, but these errors were encountered: