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.

Last updated

Revision created on 9/7/2023