Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 16 additions & 0 deletions docs/index.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -136,6 +136,22 @@ output {
}
-----

NOTE: Dynamic variable substitution using sprintf syntax, such as %{foo}, is not supported in the `data_stream` options
at this time. If you want to dynamically route to data streams, you can add the appropriate fields to events in
the configuration and take advantage of the (on by default) auto routing facility:

[source,sh]
-----
filter {
mutate {
add_field => {
"[data_stream][type]" => "logs"
"[data_stream][dataset]" => "%{dataset_name}"
"[data_stream][namespace]" => "%{namespace_name}"
}
}
}
-----

==== Writing to different indices: best practices

Expand Down