20 lines
499 B
Plaintext
20 lines
499 B
Plaintext
// This file is autogenerated, DO NOT EDIT
|
|
// Use `node scripts/generate-docs-examples.js` to generate the docs examples
|
|
|
|
[source, js]
|
|
----
|
|
const response = await client.indices.putIndexTemplate({
|
|
name: "timeseries_template",
|
|
index_patterns: ["timeseries-*"],
|
|
template: {
|
|
settings: {
|
|
number_of_shards: 1,
|
|
number_of_replicas: 1,
|
|
"index.lifecycle.name": "timeseries_policy",
|
|
"index.lifecycle.rollover_alias": "timeseries",
|
|
},
|
|
},
|
|
});
|
|
console.log(response);
|
|
----
|