From b66f1e545ab9aa6e61ae09fda1cef7f74fd125d0 Mon Sep 17 00:00:00 2001 From: Johannes Tax Date: Tue, 23 Apr 2024 15:58:59 +0200 Subject: [PATCH] Update deprecated attributes --- docs/attributes-registry/messaging.md | 1 + model/registry/deprecated/messaging.yaml | 7 +++++++ 2 files changed, 8 insertions(+) diff --git a/docs/attributes-registry/messaging.md b/docs/attributes-registry/messaging.md index 29a80eb0c2..7a41af1c30 100644 --- a/docs/attributes-registry/messaging.md +++ b/docs/attributes-registry/messaging.md @@ -178,6 +178,7 @@ size should be used. | Attribute | Type | Description | Examples | Stability | |---|---|---|---|---| +| `client_id` | string | Deprecated, use `messaging.client.id` instead. | `client-5`; `myhost@8742@s8083jm` | ![Deprecated](https://img.shields.io/badge/-deprecated-red)
Replaced by `messaging.client.id`. | | `messaging.kafka.destination.partition` | int | Deprecated, use `messaging.destination.partition.id` instead. | `2` | ![Deprecated](https://img.shields.io/badge/-deprecated-red)
Replaced by `messaging.destination.partition.id`. | | `messaging.operation` | string | Deprecated, use `messaging.operation.type` instead. | `publish`; `create`; `process` | ![Deprecated](https://img.shields.io/badge/-deprecated-red)
Replaced by `messaging.operation.type`. | \ No newline at end of file diff --git a/model/registry/deprecated/messaging.yaml b/model/registry/deprecated/messaging.yaml index 4f27d8e09a..c03a296f0c 100644 --- a/model/registry/deprecated/messaging.yaml +++ b/model/registry/deprecated/messaging.yaml @@ -17,3 +17,10 @@ groups: Deprecated, use `messaging.operation.type` instead. examples: ["publish", "create", "process"] deprecated: "Replaced by `messaging.operation.type`." + - id: client_id + type: string + stability: experimental + brief: > + Deprecated, use `messaging.client.id` instead. + examples: ['client-5', 'myhost@8742@s8083jm'] + deprecated: "Replaced by `messaging.client.id`."