Modify a Logging Pipeline Instance
curl --location \
--request PATCH 'https://logging.de-txl.ionos.com/pipelines/{pipelineID}' \
--header 'Authorization: Bearer $TOKEN' \
--header 'Content-Type: application/json' \
--data '{
"properties": {
"name": "new-logging-name",
"logs": [
{
"source": "kubernetes1",
"tag": "kub1",
"protocol": "tcp",
"destinations": [
{
"type": "loki",
"retentionInDays": 7
}
]
}
]
}
}'Last updated
Was this helpful?