Get settings for a pipeline

GET /_node/pipelines/{pipeline_name}

Get information and settings for all pipelines.

Path parameters

  • pipeline_name string Required

    The name of the pipeline to retrieve information for.

Query parameters

  • pretty boolean

    If you append ?pretty=true to the request, the JSON returned will be pretty formatted. Use it for debugging only!

Responses

  • 200 application/json

    Indicates a successful call

    Hide response attribute Show response attribute object
    • pipelines object
      Hide pipelines attribute Show pipelines attribute object
      • * object Additional properties
        Hide * attributes Show * attributes object
        • workers integer
        • batch_size integer
        • batch_delay integer
        • config_reload_automatic boolean
        • config_reload_interval integer
        • dead_letter_queue_enabled boolean
GET /_node/pipelines/{pipeline_name}
curl \ --request GET 'http://api.example.com/_node/pipelines/{pipeline_name}' \ --user "username:password"
Response examples (200)
{ "pipelines": { "aggregation-pipeline": { "workers": 1, "batch_size": 125, "batch_delay": 50, "config_reload_interval": 3, "config_reload_automatic": false, "dead_letter_queue_enabled": false } } }