38 lines
679 B
Plaintext
38 lines
679 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.bulk({
|
|
index: "my-index-000001",
|
|
refresh: "true",
|
|
operations: [
|
|
{
|
|
index: {
|
|
_id: 1,
|
|
},
|
|
},
|
|
{
|
|
user: {
|
|
id: "kimchy",
|
|
},
|
|
"@timestamp": "2099-11-15T14:12:12",
|
|
message: "trying out Elasticsearch",
|
|
},
|
|
{
|
|
index: {
|
|
_id: 2,
|
|
},
|
|
},
|
|
{
|
|
user: {
|
|
id: "kimchi",
|
|
},
|
|
"@timestamp": "2099-11-15T14:12:13",
|
|
message: "My user ID is similar to kimchy!",
|
|
},
|
|
],
|
|
});
|
|
console.log(response);
|
|
----
|