27 lines
495 B
Plaintext
27 lines
495 B
Plaintext
// This file is autogenerated, DO NOT EDIT
|
|
// Use `node scripts/generate-docs-examples.js` to generate the docs examples
|
|
|
|
[source, js]
|
|
----
|
|
const response0 = await client.index({
|
|
index: 'metricbeat-2016.05.30',
|
|
id: '1',
|
|
refresh: true,
|
|
body: {
|
|
'system.cpu.idle.pct': 0.908
|
|
}
|
|
})
|
|
console.log(response0)
|
|
|
|
const response1 = await client.index({
|
|
index: 'metricbeat-2016.05.31',
|
|
id: '1',
|
|
refresh: true,
|
|
body: {
|
|
'system.cpu.idle.pct': 0.105
|
|
}
|
|
})
|
|
console.log(response1)
|
|
----
|
|
|