27 lines
466 B
Plaintext
27 lines
466 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: [
|
|
{
|
|
registered_domain: {
|
|
field: "fqdn",
|
|
target_field: "url",
|
|
},
|
|
},
|
|
],
|
|
},
|
|
docs: [
|
|
{
|
|
_source: {
|
|
fqdn: "www.example.ac.uk",
|
|
},
|
|
},
|
|
],
|
|
});
|
|
console.log(response);
|
|
----
|