Merge pull request #469 from lukaromih/patch-2
Fix duplicated "the" in pipline aggregation docs
This commit is contained in:
commit
abb653c115
|
@ -113,12 +113,6 @@ To find a template by its name:
|
|||
GET _index_template/daily_logs
|
||||
```
|
||||
|
||||
To get a list of all your templates:
|
||||
|
||||
```json
|
||||
GET _index_template/daily_logs
|
||||
```
|
||||
|
||||
To get a list of all templates that match a pattern:
|
||||
|
||||
```json
|
||||
|
|
|
@ -152,7 +152,7 @@ networks:
|
|||
opensearch-net:
|
||||
```
|
||||
|
||||
If you override `opensearch_dashboards.yml` settings using environment variables, as seen above, use all uppercase letters and periods in place of underscores (e.g. for `opensearch.hosts`, use `OPENSEARCH_HOSTS`).
|
||||
If you override `opensearch_dashboards.yml` settings using environment variables, as seen above, use all uppercase letters and underscores in place of periods (e.g. for `opensearch.hosts`, use `OPENSEARCH_HOSTS`).
|
||||
{: .note}
|
||||
|
||||
|
||||
|
|
|
@ -14,7 +14,7 @@ You can use pipeline aggregations to compute complex statistical and mathematica
|
|||
|
||||
## Pipeline aggregation syntax
|
||||
|
||||
A pipeline aggregation uses the the `buckets_path` property to access the results of other aggregations.
|
||||
A pipeline aggregation uses the `buckets_path` property to access the results of other aggregations.
|
||||
The `buckets_path` property has a specific syntax:
|
||||
|
||||
```
|
||||
|
|
Loading…
Reference in New Issue