22 lines
485 B
Plaintext
22 lines
485 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.putPipeline({
|
|
id: "networks_lookup",
|
|
processors: [
|
|
{
|
|
enrich: {
|
|
description: "Add 'network' data based on 'ip'",
|
|
policy_name: "networks-policy",
|
|
field: "ip",
|
|
target_field: "network",
|
|
max_matches: "10",
|
|
},
|
|
},
|
|
],
|
|
});
|
|
console.log(response);
|
|
----
|