Skip to content

Commit

Permalink
Update ingest pipeline docs with new integrations pattern naming (#863)
Browse files Browse the repository at this point in the history
(cherry picked from commit ca44971)
  • Loading branch information
kilfoyle authored and mergify[bot] committed Feb 6, 2024
1 parent d458e0c commit dbad43b
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions docs/en/ingest-management/data-streams.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -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": [
{
Expand All @@ -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.
Expand Down

0 comments on commit dbad43b

Please sign in to comment.