Files
elasticsearch-js/docs/doc_examples/d4d450f536d747d5ef5050d2d8c66f09.asciidoc
2024-07-29 17:10:05 -05:00

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);
----