Get information about one or more ingest pipelines. This API returns a local reference of the pipeline.
Query parameters
-
Period to wait for a connection to the master node. If no response is received before the timeout expires, the request fails and returns an error.
Values are
-1or0.External documentation -
Return pipelines without their definitions
GET
/_ingest/pipeline
curl \
--request GET 'http://api.example.com/_ingest/pipeline'
Response examples (200)
A successful response for retrieving information about an ingest pipeline.
{
"my-pipeline-id" : {
"description" : "describe pipeline",
"version" : 123,
"processors" : [
{
"set" : {
"field" : "foo",
"value" : "bar"
}
}
]
}
}