Retrieve Pipelineedit

This functionality is experimental and may be changed or removed completely in a future release.

The Retrieve Pipeline API enables you to retrieve a centrally-managed Logstash pipeline.

Requestedit

GET /api/logstash/pipeline/<id>

Path Parametersedit

id (required)
(string) ID for pipeline.

Examplesedit

GET api/logstash/pipeline/hello-world

A successful call returns a JSON structure similar to the following example:

{
  "id": "hello-world",
  "description": "Just a simple pipeline",
  "username": "elastic",
  "pipeline": "input { stdin {} } output { stdout {} }",
  "settings": {
    "queue.type": "persistent"
  }
}