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
This line causes issues when the drilldown search has double quotes within its content. Last working version was 3.1.30.
E.g index=foo NOT field="" | stats count..., will result in a failure because this line of code takes away one quote from "". Similar cases with regexes in a search that may end the match in a quote | rex field=foo "myfield:.?\"" -> | rex field=foo "myfield:.?\"
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
This line causes issues when the drilldown search has double quotes within its content. Last working version was 3.1.30.
E.g index=foo NOT field="" | stats count..., will result in a failure because this line of code takes away one quote from "". Similar cases with regexes in a search that may end the match in a quote | rex field=foo "myfield:.?\"" -> | rex field=foo "myfield:.?\"
parsed_query = parsed_query.replace('""', '"')
Beta Was this translation helpful? Give feedback.
All reactions