From dbad43b2afc187d2aa05329a7527473ea4e6d8c6 Mon Sep 17 00:00:00 2001 From: David Kilfoyle <41695641+kilfoyle@users.noreply.github.com> Date: Tue, 6 Feb 2024 09:31:02 -0500 Subject: [PATCH] Update ingest pipeline docs with new integrations pattern naming (#863) (cherry picked from commit ca4497172e37a3e742cadc5044bada75d9641069) --- docs/en/ingest-management/data-streams.asciidoc | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) 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.