Filter on metrics doc (#10087)

* add note about filter on metrics to filter docs

* edit doc to include having and filtered aggregator links
This commit is contained in:
Surekha 2020-06-30 19:52:40 -07:00 committed by GitHub
parent 5faa897a34
commit d3497a6581
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 0 deletions

View File

@ -30,6 +30,10 @@ sidebar_label: "Filters"
A filter is a JSON object indicating which rows of data should be included in the computation for a query. Its essentially the equivalent of the WHERE clause in SQL. Apache Druid supports the following types of filters.
**Note**
Filters are commonly applied on dimensions, but can be applied on aggregated metrics, for example, see [filtered-aggregator](./aggregations.md#filtered-aggregator) and [having-filters](./having.md).
### Selector filter
The simplest filter is a selector filter. The selector filter will match a specific dimension with a specific value. Selector filters can be used as the base filters for more complex Boolean expressions of filters.