44 lines
803 B
Plaintext
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);
|
|
----
|