diff --git a/docs/en/ingest-management/data-streams.asciidoc b/docs/en/ingest-management/data-streams.asciidoc index 26f1ad28f..6ffccb4a6 100644 --- a/docs/en/ingest-management/data-streams.asciidoc +++ b/docs/en/ingest-management/data-streams.asciidoc @@ -216,14 +216,14 @@ PUT _ingest/pipeline/logs@custom } ---- -`${type}-${package}`:: +`${type}-${package}.integration`:: Apply processing to all events of a given type in an integration + -For example, the following request creates a `logs-nginx@custom` pipeline that adds a new field `my-nginx-field` for all log events in the Nginx integration: +For example, the following request creates a `logs-nginx.integration@custom` pipeline that adds a new field `my-nginx-field` for all log events in the Nginx integration: + [source,console] ---- -PUT _ingest/pipeline/logs-nginx@custom +PUT _ingest/pipeline/logs-nginx.integration@custom { "processors": [ { @@ -236,6 +236,9 @@ PUT _ingest/pipeline/logs-nginx@custom ] } ---- ++ +Note that `.integration` is included in the pipeline pattern to avoid possible collision with existing dataset pipelines. + `${type}-${dataset}`:: Apply processing to a specific dataset.