68 lines
1.1 KiB
Plaintext
68 lines
1.1 KiB
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.bulk({
|
|
index: "my-index-000001",
|
|
refresh: "true",
|
|
operations: [
|
|
{
|
|
index: {},
|
|
},
|
|
{
|
|
timestamp: 1516729294000,
|
|
temperature: 200,
|
|
voltage: 5.2,
|
|
node: "a",
|
|
},
|
|
{
|
|
index: {},
|
|
},
|
|
{
|
|
timestamp: 1516642894000,
|
|
temperature: 201,
|
|
voltage: 5.8,
|
|
node: "b",
|
|
},
|
|
{
|
|
index: {},
|
|
},
|
|
{
|
|
timestamp: 1516556494000,
|
|
temperature: 202,
|
|
voltage: 5.1,
|
|
node: "a",
|
|
},
|
|
{
|
|
index: {},
|
|
},
|
|
{
|
|
timestamp: 1516470094000,
|
|
temperature: 198,
|
|
voltage: 5.6,
|
|
node: "b",
|
|
},
|
|
{
|
|
index: {},
|
|
},
|
|
{
|
|
timestamp: 1516383694000,
|
|
temperature: 200,
|
|
voltage: 4.2,
|
|
node: "c",
|
|
},
|
|
{
|
|
index: {},
|
|
},
|
|
{
|
|
timestamp: 1516297294000,
|
|
temperature: 202,
|
|
voltage: 4,
|
|
node: "c",
|
|
},
|
|
],
|
|
});
|
|
console.log(response);
|
|
----
|