Get pipeline API

Get pipeline API

Returns information about one or more ingest pipelines. This API returns a local reference of the pipeline.

  1. GET /_ingest/pipeline/my-pipeline-id

Request

GET /_ingest/pipeline/<pipeline>

GET /_ingest/pipeline

Prerequisites

  • If the Elasticsearch security features are enabled, you must have the read_pipeline, manage_pipeline, manage_ingest_pipelines, or manage cluster privilege to use this API.

Path parameters

<pipeline>

(Optional, string) Comma-separated list of pipeline IDs to retrieve. Wildcard (*) expressions are supported.

To get all ingest pipelines, omit this parameter or use *.

Query parameters

master_timeout

(Optional, time units) 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. Defaults to 30s.

Examples

Get information for a specific ingest pipeline

  1. GET /_ingest/pipeline/my-pipeline-id

The API returns the following response:

  1. {
  2. "my-pipeline-id" : {
  3. "description" : "describe pipeline",
  4. "version" : 123,
  5. "processors" : [
  6. {
  7. "set" : {
  8. "field" : "foo",
  9. "value" : "bar"
  10. }
  11. }
  12. ]
  13. }
  14. }