Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
E
Elasticsearch DSL
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Public
Elasticsearch DSL
Commits
a4c9b297
Commit
a4c9b297
authored
9 years ago
by
Aivaras Gotovskis
Browse files
Options
Downloads
Patches
Plain Diff
Add filters aggregation doc.
parent
6950d2dc
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
docs/Aggregation/Filters.md
+86
-0
86 additions, 0 deletions
docs/Aggregation/Filters.md
with
86 additions
and
0 deletions
docs/Aggregation/Filters.md
0 → 100644
+
86
−
0
View file @
a4c9b297
# Filters Aggregation
> More info about filters aggregation is in the [official elasticsearch docs][1]
Defines a multi bucket aggregations where each bucket is associated with a filter.
Each bucket will collect all documents that match its associated filter.
Filters can have names or be anonymous, this is controlled by setAnonymous method.
By default filters are not anonymous and trying to add filter without name will result
in exception.
## Named example
```
JSON
{
"aggregations" : {
"agg_messages" : {
"filters" : {
"filters" : {
"errors" : { "term" : { "body" : "error" }},
"warnings" : { "term" : { "body" : "warning" }}
}
},
"aggregations" : {
"agg_monthly" : {
"histogram" : {
"field" : "timestamp",
"interval" : "1M"
}
}
}
}
}
}
```
And now the query via DSL:
```
php
$errorTermFilter
=
new
TermFilter
(
'body'
,
'error'
);
$warningTermFilter
=
new
TermFilter
(
'body'
,
'warning'
);
$histogramAggregation
=
new
HistogramAggregation
(
'monthly'
,
'timestamp'
);
$histogramAggregation
->
setInterval
(
'1M'
);
$filterAggregation
=
new
FiltersAggregation
(
'grades_stats'
,
[
'error'
=>
$errorTermFilter
,
'warning'
=>
$warningTermFilter
,
]
);
$filterAggregation
->
addAggregation
(
$histogramAggregation
);
$search
=
new
Search
();
$search
->
addAggregation
(
$filterAggregation
);
$queryArray
=
$search
->
toArray
();
```
## Anonymous example
```
php
$errorTermFilter
=
new
TermFilter
(
'body'
,
'error'
);
$warningTermFilter
=
new
TermFilter
(
'body'
,
'warning'
);
$histogramAggregation
=
new
HistogramAggregation
(
'monthly'
,
'timestamp'
);
$histogramAggregation
->
setInterval
(
'1M'
);
$filterAggregation
=
new
FiltersAggregation
(
'grades_stats'
,
[
$errorTermFilter
,
$warningTermFilter
,
],
true
);
$filterAggregation
->
addAggregation
(
$histogramAggregation
);
$search
=
new
Search
();
$search
->
addAggregation
(
$filterAggregation
);
$queryArray
=
$search
->
toArray
();
```
[
1
]:
https://www.elastic.co/guide/en/elasticsearch/reference/current/search-aggregations-bucket-filters-aggregation.html
\ No newline at end of file
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment