31 lines
542 B
Plaintext
31 lines
542 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.ingest.simulate({
|
|
pipeline: {
|
|
processors: [
|
|
{
|
|
network_direction: {
|
|
internal_networks: ["private"],
|
|
},
|
|
},
|
|
],
|
|
},
|
|
docs: [
|
|
{
|
|
_source: {
|
|
source: {
|
|
ip: "128.232.110.120",
|
|
},
|
|
destination: {
|
|
ip: "192.168.1.1",
|
|
},
|
|
},
|
|
},
|
|
],
|
|
});
|
|
console.log(response);
|
|
----
|