Pipelines
Learn how to transform incoming data in an Elasticsearch Ingest Pipeline.
Creating a Pipeline
var myPipeline = getInstance( "Pipeline@cbelasticsearch" ).new( {
"id" : "foo-pipeline",
"description" : "A test pipeline",
"version" : 1,
"processors" : [
{
"set" : {
"if" : "ctx.foo == null",
"field" : "foo",
"value" : "bar"
}
}
]
} );Retrieving Pipeline Definitions
Updating a Pipeline
Deleting a Pipeline
Using Pipelines When Saving Documents
Last updated
Was this helpful?