List Logstash pipeline API

[experimental] This functionality is experimental and may be changed or removed completely in a future release. Elastic will take a best effort approach to fix any issues, but experimental features are not subject to the support SLA of official GA features. List all centrally-managed Logstash pipelines.

Request

GET <kibana host>:<port>/api/logstash/pipelines

Example

The API returns the following:

  1. {
  2. "pipelines": [
  3. {
  4. "id": "hello-world",
  5. "description": "Just a simple pipeline",
  6. "last_modified": "2018-04-14T12:23:29.772Z",
  7. "username": "elastic"
  8. },
  9. {
  10. "id": "sleepy-pipeline",
  11. "description": "",
  12. "last_modified": "2018-03-24T03:41:30.554Z"
  13. }
  14. ]
  15. }

The username property appears when security is enabled, and depends on when the pipeline was created or last updated.

Most Popular