20 lines
447 B
Plaintext
20 lines
447 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: "my-pipeline",
|
|
processors: [
|
|
{
|
|
set: {
|
|
description: "Set '_routing' to 'geoip.country_iso_code' value",
|
|
field: "_routing",
|
|
value: "{{{geoip.country_iso_code}}}",
|
|
},
|
|
},
|
|
],
|
|
});
|
|
console.log(response);
|
|
----
|