Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions modules/rest-api/pages/rest-statistics-multiple.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -56,13 +56,13 @@ Each object takes the following form:
{
"label": <label_name>,
"value": <label_val>,
"operator": "=" | "!=" | "=~" | "~="
"operator": "=" | "!=" | "=~" | "!~" | "any" | "not_any"
}
----

The value of the key `label`, `label_name`, must be a string that specifies how the metric is identified: for example, `name`, or `proc`.
The value of the key `value`, `label_val`, must be a string that is the actual name used to identify the metric: for example, `sys_cpu_utilization_rate`.
The value of the key `"operator"` must be `=`, `!=`, `=~`, or `~=`.
The value of the key `"operator"` must be `=` | `!=` | `=~` | `!~` | `any` | `not_any`.

* `applyFunctions.`
Can be any of the functions described in the section xref:rest-api:rest-statistics-single.adoc#function[function], on the page xref:rest-api:rest-statistics-single.adoc[Getting a Single Statistic].
Expand Down