Skip to content

Commit 20be9c8

Browse files
committed
Fix yaml files
1 parent cd9d5db commit 20be9c8

File tree

4 files changed

+16
-12
lines changed

4 files changed

+16
-12
lines changed

docs/attributes-registry/messaging.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,8 @@ size should be used.
6060
| `publish` | One or more messages are provided for publishing to an intermediary. If a single message is published, the context of the "Publish" span can be used as the creation context and no "Create" span needs to be created. |
6161
| `create` | A message is created. "Create" spans always refer to a single message and are used to provide a unique creation context for messages in batch publishing scenarios. |
6262
| `receive` | One or more messages are requested by a consumer. This operation refers to pull-based scenarios, where consumers explicitly call methods of messaging SDKs to receive messages. |
63-
| `deliver` | One or more messages are passed to a consumer. This operation refers to push-based scenarios, where consumer register callbacks which get called by messaging SDKs. |
63+
| `process` | One or more messages are delivered to or processed by a consumer. |
64+
| `settle` | One or more messages are settled. |
6465

6566
`messaging.system` has the following list of well-known values. If one of them applies, then the respective value MUST be used, otherwise a custom value MAY be used.
6667

docs/messaging/messaging-metrics.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,7 @@ of `[ 0.005, 0.01, 0.025, 0.05, 0.075, 0.1, 0.25, 0.5, 0.75, 1, 2.5, 5, 7.5, 10
164164
<!-- semconv metric.messaging.process.duration(metric_table) -->
165165
| Name | Instrument Type | Unit (UCUM) | Description |
166166
| -------- | --------------- | ----------- | -------------- |
167-
| `messaging.process.duration` | Histogram | `s` | Measures the duration of the process operation. |
167+
| `messaging.process.duration` | Histogram | `s` | Measures the duration of process operation. |
168168
<!-- endsemconv -->
169169

170170
### Metric: `messaging.process.messages`

docs/messaging/messaging-spans.md

+7-7
Original file line numberDiff line numberDiff line change
@@ -390,13 +390,13 @@ different processes could be listening on TCP port 12345 and UDP port 12345.
390390

391391
`messaging.operation` has the following list of well-known values. If one of them applies, then the respective value MUST be used, otherwise a custom value MAY be used.
392392

393-
| Operation name | Description |
394-
| -------------- | ----------- |
395-
| `publish` | One or more messages are provided for publishing to an intermediary. If a single message is published, the context of the "Publish" span can be used as the creation context and no "Create" span needs to be created. |
396-
| `create` | A message is created. "Create" spans always refer to a single message and are used to provide a unique creation context for messages in batch publishing scenarios. |
397-
| `receive` | One or more messages are requested by a consumer. This operation refers to pull-based scenarios, where consumers explicitly call methods of messaging SDKs to receive messages. |
398-
| `process` | One or more messages are delivered to or processed by a consumer. |
399-
| `settle` | One or more messages are settled. |
393+
| Value | Description |
394+
|---|---|
395+
| `publish` | One or more messages are provided for publishing to an intermediary. If a single message is published, the context of the "Publish" span can be used as the creation context and no "Create" span needs to be created. |
396+
| `create` | A message is created. "Create" spans always refer to a single message and are used to provide a unique creation context for messages in batch publishing scenarios. |
397+
| `receive` | One or more messages are requested by a consumer. This operation refers to pull-based scenarios, where consumers explicitly call methods of messaging SDKs to receive messages. |
398+
| `process` | One or more messages are delivered to or processed by a consumer. |
399+
| `settle` | One or more messages are settled. |
400400

401401
`messaging.system` has the following list of well-known values. If one of them applies, then the respective value MUST be used, otherwise a custom value MAY be used.
402402

model/registry/messaging.yaml

+6-3
Original file line numberDiff line numberDiff line change
@@ -142,10 +142,13 @@ groups:
142142
One or more messages are requested by a consumer.
143143
This operation refers to pull-based scenarios, where consumers explicitly call methods of messaging SDKs to receive messages.
144144
- id: deliver
145-
value: "deliver"
145+
value: "process"
146146
brief: >
147-
One or more messages are passed to a consumer.
148-
This operation refers to push-based scenarios, where consumer register callbacks which get called by messaging SDKs.
147+
One or more messages are delivered to or processed by a consumer.
148+
- id: settle
149+
value: "settle"
150+
brief: >
151+
One or more messages are settled.
149152
brief: >
150153
A string identifying the kind of messaging operation.
151154
note: If a custom value is used, it MUST be of low cardinality.

0 commit comments

Comments
 (0)