From 9fb88a09f69f28d6cc39994773140524bb96044d Mon Sep 17 00:00:00 2001 From: lukaromih Date: Mon, 21 Mar 2022 16:22:01 +0100 Subject: [PATCH 1/3] Fix word order in installation docs for Docker Signed-off-by: Luka Romih --- _opensearch/install/docker.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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} From f270a53c55363d2b8681b5e29374658b75ac81f9 Mon Sep 17 00:00:00 2001 From: lukaromih Date: Mon, 21 Mar 2022 22:59:00 +0100 Subject: [PATCH 2/3] Fix duplicated "the" in pipline aggregation docs Signed-off-by: Luka Romih --- _opensearch/pipeline-agg.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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: ``` From 70e09fed05bb22a0f64c7e1a1b0d19223a1c909f Mon Sep 17 00:00:00 2001 From: Luka Romih Date: Fri, 25 Mar 2022 16:20:55 +0100 Subject: [PATCH 3/3] Remove duplicate snippet for listing idx templates - The removed snippet is actually a duplicate of the previous one (finding template by its name). - Also a snippet for listing all temlates already exists; first from top Signed-off-by: Luka Romih --- _opensearch/index-templates.md | 6 ------ 1 file changed, 6 deletions(-) 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