v1

latestOpenAPI 3.0.02026-07-142351,1971.3 MB
Logs Pipelines

Update pipeline order

Update the order of your pipelines. Since logs are processed sequentially, reordering a pipeline may change the structure and content of the data processed by other pipelines and their processors.

Note: Using the PUT method updates your pipeline order by replacing your current order with the new one sent to your Datadog organization.

put/api/v1/logs/config/pipeline-order

Request body

pipeline_idsstring[] required

Ordered Array of <PIPELINE_ID> strings, the order of pipeline IDs in the array define the overall Pipelines order for Datadog.

Example request

{
  "pipeline_ids": [
    "tags",
    "org_ids",
    "products"
  ]
}

Response

OK

pipeline_idsstring[] required

Ordered Array of <PIPELINE_ID> strings, the order of pipeline IDs in the array define the overall Pipelines order for Datadog.

Example response

{
  "pipeline_ids": [
    "tags",
    "org_ids",
    "products"
  ]
}