Skip to content

Commit 35a3f5a

Browse files
authored
Mention Virtual MQ support in the changelog (#374)
1 parent 64a33b2 commit 35a3f5a

2 files changed

Lines changed: 1 addition & 3 deletions

File tree

CHANGES.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Release Notes.
55
8.13.0
66
------------------
77

8-
**This release begins to adopt SkyWalking 9.3.0+ [Virtual Cache Analysis](https://skywalking.apache.org/docs/main/next/en/setup/service-agent/virtual-cache/).**
8+
**This release begins to adopt SkyWalking 9.3.0+ [Virtual Cache Analysis](https://skywalking.apache.org/docs/main/next/en/setup/service-agent/virtual-cache/),[Virtual MQ Analysis](https://skywalking.apache.org/docs/main/next/en/setup/service-agent/virtual-mq/)**
99

1010
* Support set-type in the agent or plugin configurations
1111
* Optimize ConfigInitializer to output warning messages when the config value is truncated.

docs/en/setup/service-agent/java-agent/Java-Plugin-Development-Guide.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -223,11 +223,9 @@ SkyWalking analysis MQ performance related metrics through the following tags.
223223

224224
```java
225225
public static final StringTag MQ_QUEUE = new StringTag(7, "mq.queue");
226-
public static final StringTag MQ_BROKER = new StringTag(8, "mq.broker");
227226
public static final StringTag MQ_TOPIC = new StringTag(9, "mq.topic");
228227
public static final StringTag TRANSMISSION_LATENCY = new StringTag(15, "transmission.latency", false);
229228
```
230-
* `mq.brokers` indicates MQ address ,SkyWalking organize the value as service . Both of consumer , producer must record the tag , and ensure the value is consistent .
231229
* `mq.queue` indicates MQ queue name
232230
* `mq.topic` indicates MQ topic name , It's optional as some MQ don't hava concept of `topic`
233231
* `transmission.latency` The transmission latency from consumer to producer. Usually you needn't to record this tag manually, instead to call `contextCarrier.extensionInjector().injectSendingTimestamp();` to record tag `sendingTimestamp` on producer side , and SkyWalking would record this tag on consumer side if `sw8-x` context carrier(from producer side) contains `sendingTimestamp`

0 commit comments

Comments
 (0)