19 lines
678 B
Plaintext
19 lines
678 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: [
|
|
{
|
|
drop: {
|
|
description: "Drop documents that don't contain 'prod' tag",
|
|
if: "\n Collection tags = ctx.tags;\n if(tags != null){\n for (String tag : tags) {\n if (tag.toLowerCase().contains('prod')) {\n return false;\n }\n }\n }\n return true;\n ",
|
|
},
|
|
},
|
|
],
|
|
});
|
|
console.log(response);
|
|
----
|