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
  • Loading branch information
kilfoyle authored Feb 6, 2024
1 parent f5ba20b commit ca44971
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 @@ -223,14 +223,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 @@ -243,6 +243,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 ca44971

Please sign in to comment.