|
10 | 10 | - [Kafka Attributes](#kafka-attributes)
|
11 | 11 | - [RabbitMQ Attributes](#rabbitmq-attributes)
|
12 | 12 | - [RocketMQ Attributes](#rocketmq-attributes)
|
| 13 | +- [Azure Event Hubs Attributes](#azure-event-hubs-attributes) |
| 14 | +- [Azure Service Bus Attributes](#azure-service-bus-attributes) |
13 | 15 |
|
14 | 16 | <!-- tocstop -->
|
15 | 17 |
|
@@ -66,9 +68,9 @@ size should be used.
|
66 | 68 | |---|---|
|
67 | 69 | | `activemq` | Apache ActiveMQ |
|
68 | 70 | | `aws_sqs` | Amazon Simple Queue Service (SQS) |
|
69 |
| -| `azure_eventgrid` | Azure Event Grid | |
70 |
| -| `azure_eventhubs` | Azure Event Hubs | |
71 |
| -| `azure_servicebus` | Azure Service Bus | |
| 71 | +| `eventgrid` | Azure Event Grid | |
| 72 | +| `eventhubs` | Azure Event Hubs | |
| 73 | +| `servicebus` | Azure Service Bus | |
72 | 74 | | `gcp_pubsub` | Google Cloud Pub/Sub |
|
73 | 75 | | `jms` | Java Message Service |
|
74 | 76 | | `kafka` | Apache Kafka |
|
@@ -137,3 +139,23 @@ size should be used.
|
137 | 139 | | `delay` | Delay message |
|
138 | 140 | | `transaction` | Transaction message |
|
139 | 141 | <!-- endsemconv -->
|
| 142 | + |
| 143 | +## Azure Event Hubs Attributes |
| 144 | + |
| 145 | +<!-- semconv registry.messaging(omit_requirement_level,tag=tech-specific-eventhubs) --> |
| 146 | +| Attribute | Type | Description | Examples | |
| 147 | +|---|---|---|---| |
| 148 | +| `messaging.eventhubs.consumer.group` | string | The name of the consumer group the event consumer is associated with. | `indexer` | |
| 149 | +| `messaging.eventhubs.destination.partition.id` | string | The identifier of the partition messages are sent to or received from, unique to the Event Hub which contains it. | `1` | |
| 150 | +| `messaging.eventhubs.message.enqueued_time` | int | The UTC epoch seconds at which the message has been accepted and stored in the entity. | `1701393730` | |
| 151 | +<!-- endsemconv --> |
| 152 | + |
| 153 | +## Azure Service Bus Attributes |
| 154 | + |
| 155 | +<!-- semconv registry.messaging(omit_requirement_level,tag=tech-specific-servicebus) --> |
| 156 | +| Attribute | Type | Description | Examples | |
| 157 | +|---|---|---|---| |
| 158 | +| `messaging.servicebus.destination.subscription_name` | string | The name of the subscription in the topic messages are received from. | `mySubscription` | |
| 159 | +| `messaging.servicebus.message.delivery_count` | int | Number of deliveries that have been attempted for this message. | `2` | |
| 160 | +| `messaging.servicebus.message.enqueued_time` | int | The UTC epoch seconds at which the message has been accepted and stored in the entity. | `1701393730` | |
| 161 | +<!-- endsemconv --> |
0 commit comments