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

44 lines
803 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-data-stream",
refresh: "true",
operations: [
{
create: {},
},
{
"@timestamp": "2099-03-08T11:04:05.000Z",
user: {
id: "vlb44hny",
},
message: "Login attempt failed",
},
{
create: {},
},
{
"@timestamp": "2099-03-08T11:06:07.000Z",
user: {
id: "8a4f500d",
},
message: "Login successful",
},
{
create: {},
},
{
"@timestamp": "2099-03-09T11:07:08.000Z",
user: {
id: "l7gk7f82",
},
message: "Logout successful",
},
],
});
console.log(response);
----