You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .github/workflows/checks.yml
+9Lines changed: 9 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -91,6 +91,15 @@ jobs:
91
91
- name: verify semantic convention tables
92
92
run: make table-check
93
93
94
+
semantic-conventions-registry:
95
+
runs-on: ubuntu-latest
96
+
steps:
97
+
- uses: actions/checkout@v1
98
+
- name: verify registry tables
99
+
run: |
100
+
make attribute-registry-generation
101
+
git diff --exit-code './docs/attributes-registry/*.md' || (echo 'Attribute registry markdown is out of date, please run "make attribute-registry-generation" and commit the changes in this PR.' && exit 1)
|`messaging.batch.message_count`| int | The number of messages sent, received, or processed in the scope of the batching operation. [1]|`0`; `1`; `2`||
25
-
|`messaging.client_id`| string | A unique identifier for the client that consumes or produces a message. |`client-5`; `myhost@8742@s8083jm`||
25
+
|`messaging.client.id`| string | A unique identifier for the client that consumes or produces a message. |`client-5`; `myhost@8742@s8083jm`||
26
26
|`messaging.destination.anonymous`| boolean | A boolean that is true if the message destination is anonymous (could be unnamed or have auto-generated name). |||
27
27
|`messaging.destination.name`| string | The message destination name [2]|`MyQueue`; `MyTopic`||
28
28
|`messaging.destination.partition.id`| string | The identifier of the partition messages are sent to or received from, unique within the `messaging.destination.name`. |`1`||
|`messaging.kafka.destination.partition`| int | Deprecated, use `messaging.destination.partition.id` instead. |`2`|<br>Replaced by `messaging.destination.partition.id`. |
91
-
|`messaging.operation`| string | Deprecated, use `messaging.operation.type` instead. |`publish`; `create`; `process`|<br>Replaced by `messaging.operation.type`. |
|`messaging.client_id`| string | Deprecated, use `messaging.client.id` instead. |`client-5`; `myhost@8742@s8083jm`|<br>Replaced by `messaging.client.id`. |
91
+
|`messaging.kafka.destination.partition`| int | Deprecated, use `messaging.destination.partition.id` instead. |`2`|<br>Replaced by `messaging.destination.partition.id`. |
92
+
|`messaging.operation`| string | Deprecated, use `messaging.operation.type` instead. |`publish`; `create`; `process`|<br>Replaced by `messaging.operation.type`. |
92
93
93
94
## Messaging Eventhubs Attributes
94
95
@@ -183,14 +184,3 @@ This group describes attributes specific to Azure Service Bus.
183
184
|`abandon`| Message is abandoned ||
184
185
|`dead_letter`| Message is sent to dead letter queue ||
185
186
|`defer`| Message is deferred ||
|[`messaging.client_id`](/docs/attributes-registry/messaging.md)| string | Deprecated, use `messaging.client.id` instead. |`client-5`; `myhost@8742@s8083jm`|<br>Replaced by `messaging.client.id`. |
193
-
|[`messaging.kafka.destination.partition`](/docs/attributes-registry/messaging.md)| int | Deprecated, use `messaging.destination.partition.id` instead. |`2`|<br>Replaced by `messaging.destination.partition.id`. |
194
-
|[`messaging.operation`](/docs/attributes-registry/messaging.md)| string | Deprecated, use `messaging.operation.type` instead. |`publish`; `create`; `process`|<br>Replaced by `messaging.operation.type`. |
0 commit comments