summaryrefslogtreecommitdiffstats
path: root/health
diff options
context:
space:
mode:
authorDavid Lane <laned130@users.noreply.github.com>2021-12-20 15:13:13 +0000
committerGitHub <noreply@github.com>2021-12-20 10:13:13 -0500
commit4da3ca0488545efa315a6f7dc470ccd367e38054 (patch)
treeec7f758d41f6e81e5aab2d55e383eae35987e062 /health
parent08af95ce15fcdc2ec111a5c469fd2c5891eb9ebc (diff)
Added "==" to the list of expression operators (#11905)
Diffstat (limited to 'health')
-rw-r--r--health/REFERENCE.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/health/REFERENCE.md b/health/REFERENCE.md
index ef264b1cbf..4feb782d6c 100644
--- a/health/REFERENCE.md
+++ b/health/REFERENCE.md
@@ -538,7 +538,7 @@ See our [simple patterns docs](/libnetdata/simple_pattern/README.md) for more ex
Netdata has an internal [infix expression parser](/libnetdata/eval). This parses expressions and creates an internal
structure that allows fast execution of them.
-These operators are supported `+`, `-`, `*`, `/`, `<`, `<=`, `<>`, `!=`, `>`, `>=`, `&&`, `||`, `!`, `AND`, `OR`, `NOT`.
+These operators are supported `+`, `-`, `*`, `/`, `<`, `==`, `<=`, `<>`, `!=`, `>`, `>=`, `&&`, `||`, `!`, `AND`, `OR`, `NOT`.
Boolean operators result in either `1` (true) or `0` (false).
The conditional evaluation operator `?` is supported too. Using this operator IF-THEN-ELSE conditional statements can be