Modify a Logging Pipeline Instance
You can modify your logging pipeline by sending a PATCH request with a specific pipeline's ID, for example:
## Update a pipeline
curl -X "PATCH" "https://logging.de-txl.ionos.com/pipelines/b849d5dd-cabe-4c13-b04d-a11bcdee721b" \
-H 'Content-Type: application/json' \
-H 'Authorization: Bearer $TOKEN' \
-d $'{
"properties": {
"name": "new-logging-name",
"logs": [
{
"source": "kubernetes",
"tag": "new_tag",
"source": "tcp"
}
]
}
}'
You can modify a pipeline with the same payload you use in the POST request.