Adding `messaging.rabbitmq.message.delivery_tag` to the list of RabbitMQ specific tags (#433)
Co-authored-by: Liudmila Molkova <limolkova@microsoft.com>
This commit is contained in:
parent
1e7bb0e462
commit
096596b200
|
|
@ -0,0 +1,4 @@
|
||||||
|
change_type: enhancement
|
||||||
|
component: messaging
|
||||||
|
note: Add `messaging.rabbitmq.message.delivery_tag`` to the list of RabbitMQ specific tags
|
||||||
|
issues: [433]
|
||||||
|
|
@ -106,6 +106,7 @@ size should be used.
|
||||||
| Attribute | Type | Description | Examples |
|
| Attribute | Type | Description | Examples |
|
||||||
|---|---|---|---|
|
|---|---|---|---|
|
||||||
| `messaging.rabbitmq.destination.routing_key` | string | RabbitMQ message routing key. | `myKey` |
|
| `messaging.rabbitmq.destination.routing_key` | string | RabbitMQ message routing key. | `myKey` |
|
||||||
|
| `messaging.rabbitmq.message.delivery_tag` | int | RabbitMQ message delivery tag | `123` |
|
||||||
<!-- endsemconv -->
|
<!-- endsemconv -->
|
||||||
|
|
||||||
## RocketMQ Attributes
|
## RocketMQ Attributes
|
||||||
|
|
|
||||||
|
|
@ -21,6 +21,7 @@ In RabbitMQ, the destination is defined by an *exchange* and a *routing key*.
|
||||||
| Attribute | Type | Description | Examples | Requirement Level |
|
| Attribute | Type | Description | Examples | Requirement Level |
|
||||||
|---|---|---|---|---|
|
|---|---|---|---|---|
|
||||||
| [`messaging.rabbitmq.destination.routing_key`](../attributes-registry/messaging.md) | string | RabbitMQ message routing key. | `myKey` | Conditionally Required: If not empty. |
|
| [`messaging.rabbitmq.destination.routing_key`](../attributes-registry/messaging.md) | string | RabbitMQ message routing key. | `myKey` | Conditionally Required: If not empty. |
|
||||||
|
| [`messaging.rabbitmq.message.delivery_tag`](../attributes-registry/messaging.md) | int | RabbitMQ message delivery tag | `123` | Conditionally Required: When available. |
|
||||||
<!-- endsemconv -->
|
<!-- endsemconv -->
|
||||||
|
|
||||||
[DocumentStatus]: https://github.com/open-telemetry/opentelemetry-specification/tree/v1.26.0/specification/document-status.md
|
[DocumentStatus]: https://github.com/open-telemetry/opentelemetry-specification/tree/v1.26.0/specification/document-status.md
|
||||||
|
|
|
||||||
|
|
@ -156,6 +156,13 @@ groups:
|
||||||
RabbitMQ message routing key.
|
RabbitMQ message routing key.
|
||||||
examples: 'myKey'
|
examples: 'myKey'
|
||||||
tag: tech-specific-rabbitmq
|
tag: tech-specific-rabbitmq
|
||||||
|
- id: rabbitmq.message.delivery_tag
|
||||||
|
type: int
|
||||||
|
brief: >
|
||||||
|
RabbitMQ message delivery tag
|
||||||
|
examples: 123
|
||||||
|
tag: tech-specific-rabbitmq
|
||||||
|
|
||||||
- id: rocketmq.client_group
|
- id: rocketmq.client_group
|
||||||
type: string
|
type: string
|
||||||
brief: >
|
brief: >
|
||||||
|
|
|
||||||
|
|
@ -102,6 +102,10 @@ groups:
|
||||||
requirement_level:
|
requirement_level:
|
||||||
conditionally_required: If not empty.
|
conditionally_required: If not empty.
|
||||||
tag: tech-specific-rabbitmq
|
tag: tech-specific-rabbitmq
|
||||||
|
- ref: messaging.rabbitmq.message.delivery_tag
|
||||||
|
requirement_level:
|
||||||
|
conditionally_required: When available.
|
||||||
|
tag: tech-specific-rabbitmq
|
||||||
|
|
||||||
- id: messaging.kafka
|
- id: messaging.kafka
|
||||||
type: attribute_group
|
type: attribute_group
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue