Skip to content

Commit 3a45092

Browse files
committed
Resolve build
1 parent afa3e76 commit 3a45092

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

docs/messaging/messaging-spans.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -73,10 +73,10 @@ linkTitle: Spans
7373

7474
Although messaging systems are not as standardized as, e.g., HTTP, it is assumed that the following definitions are applicable to most of them that have similar concepts at all (names borrowed mostly from JMS):
7575

76-
A *message* is an envelope with a potentially empty body.
76+
A _message_ is an envelope with a potentially empty body.
7777
This envelope may offer the possibility to convey additional metadata, often in key/value form.
7878

79-
A message is sent by a message *producer* to:
79+
A message is sent by a message _producer_ to:
8080

8181
- Physically: some message _broker_ (which can be e.g., a single server, or a cluster, or a local process reached via IPC). The broker handles the actual delivery, re-delivery, persistence, etc. In some messaging systems the broker may be identical or co-located with (some) message consumers.
8282
With Apache Kafka, the physical broker a message is written to depends on the number of partitions, and which broker is the _leader_ of the partition the record is written to.
@@ -143,13 +143,13 @@ for similar scenarios such as load-balancing or broadcasting.
143143

144144
### Conversations
145145

146-
In some messaging systems, a message can receive one or more reply messages that answers a particular other message that was sent earlier. All messages that are grouped together by such a reply-relationship are called a *conversation*.
147-
The grouping usually happens through some sort of "In-Reply-To:" meta information or an explicit *conversation ID* (sometimes called *correlation ID*).
146+
In some messaging systems, a message can receive one or more reply messages that answers a particular other message that was sent earlier. All messages that are grouped together by such a reply-relationship are called a _conversation_.
147+
The grouping usually happens through some sort of "In-Reply-To:" meta information or an explicit _conversation ID_ (sometimes called _correlation ID_).
148148
Sometimes a conversation can span multiple message destinations (e.g. initiated via a topic, continued on a temporary one-to-one queue).
149149

150150
### Temporary and anonymous destinations
151151

152-
Some messaging systems support the concept of *temporary destination* (often only temporary queues) that are established just for a particular set of communication partners (often one to one) or conversation.
152+
Some messaging systems support the concept of _temporary destination_ (often only temporary queues) that are established just for a particular set of communication partners (often one to one) or conversation.
153153
Often such destinations are also unnamed (anonymous) or have an auto-generated name.
154154

155155
## Conventions
@@ -169,7 +169,7 @@ not help in correlating producers with consumers. To be able to directly
169169
correlate producers with consumers, another context that is propagated with
170170
the message is required.
171171

172-
A message *creation context* allows correlating producers with consumers
172+
A message _creation context_ allows correlating producers with consumers
173173
of a message and model the dependencies between them,
174174
regardless of the underlying messaging transport mechanism and its instrumentation.
175175

docs/rpc/rpc-metrics.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ metrics can be filtered for finer grain analysis.
5757
The following metric instruments MUST be used to describe RPC operations. They
5858
MUST be of the specified type and units.
5959

60-
*Note: RPC server and client metrics are split to allow correlation across client/server boundaries, e.g. Lining up an RPC method latency to determine if the server is responsible for latency the client is seeing.*
60+
_Note: RPC server and client metrics are split to allow correlation across client/server boundaries, e.g. Lining up an RPC method latency to determine if the server is responsible for latency the client is seeing._
6161

6262
### RPC server
6363

docs/rpc/rpc-spans.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ This document defines how to describe remote procedure calls
5252

5353
### Span name
5454

55-
The *span name* MUST be the full RPC method name formatted as:
55+
The _span name_ MUST be the full RPC method name formatted as:
5656

5757
```
5858
$package.$service/$method
@@ -366,7 +366,7 @@ In the lifetime of an RPC stream, an event for each message sent/received on cli
366366

367367
HTTP calls can generally be represented using just [HTTP spans](/docs/http/http-spans.md).
368368
If they address a particular remote service and method known to the caller, i.e., when it is a remote procedure call transported over HTTP, the `rpc.*` attributes might be added additionally on that span, or in a separate RPC span that is a parent of the transporting HTTP call.
369-
Note that *method* in this context is about the called remote procedure and *not* the HTTP verb (GET, POST, etc.).
369+
Note that _method_ in this context is about the called remote procedure and _not_ the HTTP verb (GET, POST, etc.).
370370

371371
## Semantic conventions for specific RPC technologies
372372

0 commit comments

Comments
 (0)