pipelines
Update a Pipeline
Update the specified Pipeline.<br/><br/>Provide a complete representation of the Pipeline that you want to update in the request body.<br/><br/>This endpoint does not support partial updates. Cribl removes any omitted fields when updating the Pipeline.<br/><br/>Confirm that the configuration in your request body is correct before sending the request.<br/><br/>If the configuration is incorrect, the updated Pipeline might not function as expected.
patch/pipelines/{id}
Path parameters
idstring required
The <code>id</code> of the Pipeline to update.
Request body
Example request
{
"conf": {
"functions": [
{
"id": "aggregate_metrics"
}
]
}
}Response
The updated Pipeline object in a single-item list.
Example response
{
"items": [
{
"conf": {
"functions": [
{
"id": "aggregate_metrics"
}
]
}
}
]
}