@cryptotaxi247 / netdata-1 / commits / 4da3ca048

Added "==" to the list of expression operators (#11905)

David Lane committed Dec 20, 2021 at 15:13 UTC 4da3ca0488545efa315a6f7dc470ccd367e38054
1 file changed +1 -1
health/REFERENCE.md
+1 -1
@@ -538,7 +538,7 @@ See our [simple patterns docs](/libnetdata/simple_pattern/README.md) for more ex
538 Netdata has an internal [infix expression parser](/libnetdata/eval). This parses expressions and creates an internal
539 structure that allows fast execution of them.
540
541 -These operators are supported `+`, `-`, `*`, `/`, `<`, `<=`, `<>`, `!=`, `>`, `>=`, `&&`, `||`, `!`, `AND`, `OR`, `NOT`.
541 +These operators are supported `+`, `-`, `*`, `/`, `<`, `==`, `<=`, `<>`, `!=`, `>`, `>=`, `&&`, `||`, `!`, `AND`, `OR`, `NOT`.
542 Boolean operators result in either `1` (true) or `0` (false).
543
544 The conditional evaluation operator `?` is supported too. Using this operator IF-THEN-ELSE conditional statements can be