or) to uppercase (e.g., OR) immediately resolves the error and restores correct data visualization.
DX SaaS dashboards utilize the Apache Lucene search library for query parsing. According to the official Apache Lucene query parser syntax, boolean operators (AND, OR, NOT) must be all uppercase.
While lowercase operators may work inconsistently in certain contexts or older versions, this behavior is considered "undefined." Updates to the SaaS environment (including security patches or vulnerability fixes) can cause the parser to strictly adhere to the documented standard, resulting in lowercase operators being treated as literal text or ignored entirely.
To ensure query stability and accuracy, all logical operators must be written in uppercase.
or to ORand to ANDnot to NOTExample of Correct Syntax: (alarm_name:myalarm1 OR alarm_name:myalarm2) AND status:new
For further details on supported query syntax, please refer to the Official Apache Lucene Documentation.