From 0074bc3a2694440cf7c1145c0a543fb021353927 Mon Sep 17 00:00:00 2001 From: Victor Nilsson Date: Tue, 17 May 2022 14:55:11 +0200 Subject: [PATCH] Fixed the data-prepper URI Signed-off-by: Victor Nilsson --- _clients/data-prepper/get-started.md | 2 +- _clients/data-prepper/pipelines.md | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/_clients/data-prepper/get-started.md b/_clients/data-prepper/get-started.md index 11ef4ea9..3d00fb4a 100644 --- a/_clients/data-prepper/get-started.md +++ b/_clients/data-prepper/get-started.md @@ -38,7 +38,7 @@ Run the following command with your pipeline configuration YAML. ```bash docker run --name data-prepper \ -v /full/path/to/pipelines.yaml:/usr/share/data-prepper/pipelines.yaml \ - opensearchproject/opensearch-data-prepper:latest + opensearchproject/data-prepper:latest ``` This sample pipeline configuration above demonstrates a simple pipeline with a source (`random`) sending data to a sink (`stdout`). For more examples and details on more advanced pipeline configurations, see [Pipelines]({{site.url}}{{site.baseurl}}/clients/data-prepper/pipelines). diff --git a/_clients/data-prepper/pipelines.md b/_clients/data-prepper/pipelines.md index b664d98a..f0f1ce30 100644 --- a/_clients/data-prepper/pipelines.md +++ b/_clients/data-prepper/pipelines.md @@ -122,7 +122,7 @@ Data Prepper supports Logstash configuration files for a limited set of plugins. ```bash docker run --name data-prepper \ -v /full/path/to/logstash.conf:/usr/share/data-prepper/pipelines.conf \ - opensearchproject/opensearch-data-prepper:latest + opensearchproject/data-prepper:latest ``` This feature is limited by feature parity of Data Prepper. As of Data Prepper 1.2 release, the following plugins from the Logstash configuration are supported: @@ -149,5 +149,5 @@ To configure the Data Prepper server, run Data Prepper with the additional yaml ```bash docker run --name data-prepper -v /full/path/to/pipelines.yaml:/usr/share/data-prepper/pipelines.yaml \ /full/path/to/data-prepper-config.yaml:/usr/share/data-prepper/data-prepper-config.yaml \ - opensearchproject/opensearch-data-prepper:latest + opensearchproject/data-prepper:latest ````