diff --git a/_opensearch/index-templates.md b/_opensearch/index-templates.md index 6ed6ae05..04821f97 100644 --- a/_opensearch/index-templates.md +++ b/_opensearch/index-templates.md @@ -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 diff --git a/_opensearch/install/docker.md b/_opensearch/install/docker.md index ecddd2f7..eac12298 100644 --- a/_opensearch/install/docker.md +++ b/_opensearch/install/docker.md @@ -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} diff --git a/_opensearch/pipeline-agg.md b/_opensearch/pipeline-agg.md index 892cb19c..5e735f2c 100644 --- a/_opensearch/pipeline-agg.md +++ b/_opensearch/pipeline-agg.md @@ -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: ```