Hi, I'm trying to combine boolean operators in order to get nested expressions (like (host.name == "host1" && host.name == "host2")||host.name == "host3")) but I can't do this, all the operators are transformed in the first one.
Example: I want (host.name == "host1" && host.name == "host2")||host.name == "host3")
I set like applyrule.png (see attachment)
store
I get like applyrule.png (see attachment): the OR operator becomed AND
In the preview I get host.name == "host1" && host.name == "host2" && (host.name == "host3")
Is this a bug or am I doing something wrong?
Thank you