Filtering

Overview

It is possible to filter the data datapoints by specifying one or more tags. In that case, the data returned will only contain data points associated with the specified tags.

../_images/filtering-illustration.png

Description

You can specify multiple values for a given tag name to accept datapoints having any of these values.

If multiple tag names are specified, only the datapoints that match the values for each of these tag names are returned.

../_images/filtering-ui.png

For example the filter above will accept datapoints for customer 1 or 2 that are on antenna 1.

A tag explorer tool helps the building of tag filtering.

../_images/tag-explorer.png

Usage in API

Filtering is done using the tags property in the metric. It is an object where property names are tag names and with arrays of values.

...
"tags": {
    "customer": ["customer1", " customer2"],
    "antenna": ["antenna1"]
}
...