2020-05-15 10:37:45 -04:00
|
|
|
[[indices-create-data-stream]]
|
|
|
|
=== Create data stream API
|
|
|
|
++++
|
|
|
|
<titleabbrev>Create data stream</titleabbrev>
|
|
|
|
++++
|
|
|
|
|
2020-06-18 10:59:12 -04:00
|
|
|
Creates a new <<data-streams,data stream>>.
|
2020-05-15 10:37:45 -04:00
|
|
|
|
2020-06-18 10:59:12 -04:00
|
|
|
Data streams require an associated <<indices-templates,composable template>>.
|
|
|
|
See <<set-up-a-data-stream>>.
|
2020-05-28 09:08:25 -04:00
|
|
|
|
2020-06-18 10:59:12 -04:00
|
|
|
////
|
2020-05-15 10:37:45 -04:00
|
|
|
[source,console]
|
2020-06-18 10:59:12 -04:00
|
|
|
----
|
|
|
|
PUT /_index_template/template
|
2020-05-15 10:37:45 -04:00
|
|
|
{
|
2020-05-28 09:08:25 -04:00
|
|
|
"index_patterns": ["my-data-stream*"],
|
2020-06-12 09:24:42 -04:00
|
|
|
"template": {
|
|
|
|
"mappings": {
|
|
|
|
"properties": {
|
|
|
|
"@timestamp": {
|
|
|
|
"type": "date"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
2020-05-28 09:08:25 -04:00
|
|
|
"data_stream": {
|
|
|
|
"timestamp_field": "@timestamp"
|
|
|
|
}
|
2020-05-15 10:37:45 -04:00
|
|
|
}
|
2020-06-18 10:59:12 -04:00
|
|
|
----
|
|
|
|
////
|
2020-05-28 09:08:25 -04:00
|
|
|
|
|
|
|
[source,console]
|
2020-06-18 10:59:12 -04:00
|
|
|
----
|
|
|
|
PUT /_data_stream/my-data-stream
|
|
|
|
----
|
2020-05-28 09:08:25 -04:00
|
|
|
// TEST[continued]
|
2020-05-15 10:37:45 -04:00
|
|
|
|
|
|
|
////
|
|
|
|
[source,console]
|
|
|
|
-----------------------------------
|
|
|
|
DELETE /_data_stream/my-data-stream
|
2020-05-28 09:08:25 -04:00
|
|
|
DELETE /_index_template/template
|
2020-05-15 10:37:45 -04:00
|
|
|
-----------------------------------
|
|
|
|
// TEST[continued]
|
|
|
|
////
|
|
|
|
|
|
|
|
[[indices-create-data-stream-request]]
|
|
|
|
==== {api-request-title}
|
|
|
|
|
2020-06-18 10:59:12 -04:00
|
|
|
`PUT /_data_stream/<data-stream>`
|
2020-05-15 10:37:45 -04:00
|
|
|
|
|
|
|
[[indices-create-data-stream-api-path-params]]
|
|
|
|
==== {api-path-parms-title}
|
|
|
|
|
|
|
|
`<data-stream>`::
|
|
|
|
+
|
|
|
|
--
|
|
|
|
(Required, string) Name of the data stream to create.
|
|
|
|
|
|
|
|
Data stream names must meet the following criteria:
|
|
|
|
|
|
|
|
- Lowercase only
|
|
|
|
- Cannot include `\`, `/`, `*`, `?`, `"`, `<`, `>`, `|`, ` ` (space character),
|
|
|
|
`,`, `#`, `:`
|
|
|
|
- Cannot start with `-`, `_`, `+`, `.`
|
|
|
|
- Cannot be `.` or `..`
|
|
|
|
- Cannot be longer than 255 bytes (note it is bytes, so multi-byte characters
|
|
|
|
will count towards the 255 limit faster)
|
|
|
|
--
|
|
|
|
|