Merge pull request #576 from vinylen/fix-data-prepper-docs
Fixed the data-prepper URI
This commit is contained in:
commit
7a6b42f562
|
@ -38,7 +38,7 @@ Run the following command with your pipeline configuration YAML.
|
||||||
```bash
|
```bash
|
||||||
docker run --name data-prepper \
|
docker run --name data-prepper \
|
||||||
-v /full/path/to/pipelines.yaml:/usr/share/data-prepper/pipelines.yaml \
|
-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).
|
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).
|
||||||
|
|
|
@ -211,7 +211,7 @@ Data Prepper supports Logstash configuration files for a limited set of plugins.
|
||||||
```bash
|
```bash
|
||||||
docker run --name data-prepper \
|
docker run --name data-prepper \
|
||||||
-v /full/path/to/logstash.conf:/usr/share/data-prepper/pipelines.conf \
|
-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:
|
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:
|
||||||
|
@ -238,5 +238,5 @@ To configure the Data Prepper server, run Data Prepper with the additional yaml
|
||||||
```bash
|
```bash
|
||||||
docker run --name data-prepper -v /full/path/to/pipelines.yaml:/usr/share/data-prepper/pipelines.yaml \
|
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 \
|
/full/path/to/data-prepper-config.yaml:/usr/share/data-prepper/data-prepper-config.yaml \
|
||||||
opensearchproject/opensearch-data-prepper:latest
|
opensearchproject/data-prepper:latest
|
||||||
````
|
````
|
||||||
|
|
Loading…
Reference in New Issue