This is an automated email from the ASF dual-hosted git repository.
wusheng pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/skywalking-java.git
The following commit(s) were added to refs/heads/main by this push:
new 35a3f5a59b Mention Virtual MQ support in the changelog (#374)
35a3f5a59b is described below
commit 35a3f5a59b8f57efb9e3679094b95b696e08ec2b
Author: pg.yang <[email protected]>
AuthorDate: Thu Nov 3 22:13:54 2022 +0800
Mention Virtual MQ support in the changelog (#374)
---
CHANGES.md | 2 +-
docs/en/setup/service-agent/java-agent/Java-Plugin-Development-Guide.md | 2 --
2 files changed, 1 insertion(+), 3 deletions(-)
diff --git a/CHANGES.md b/CHANGES.md
index bd4bd5daba..8580366fa8 100644
--- a/CHANGES.md
+++ b/CHANGES.md
@@ -5,7 +5,7 @@ Release Notes.
8.13.0
------------------
-**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/).**
+**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/)**
* Support set-type in the agent or plugin configurations
* Optimize ConfigInitializer to output warning messages when the config value
is truncated.
diff --git
a/docs/en/setup/service-agent/java-agent/Java-Plugin-Development-Guide.md
b/docs/en/setup/service-agent/java-agent/Java-Plugin-Development-Guide.md
index 29438b8564..65ae1c0abc 100644
--- a/docs/en/setup/service-agent/java-agent/Java-Plugin-Development-Guide.md
+++ b/docs/en/setup/service-agent/java-agent/Java-Plugin-Development-Guide.md
@@ -223,11 +223,9 @@ SkyWalking analysis MQ performance related metrics through
the following tags.
```java
public static final StringTag MQ_QUEUE = new StringTag(7, "mq.queue");
- public static final StringTag MQ_BROKER = new StringTag(8, "mq.broker");
public static final StringTag MQ_TOPIC = new StringTag(9, "mq.topic");
public static final StringTag TRANSMISSION_LATENCY = new StringTag(15,
"transmission.latency", false);
```
-* `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 .
* `mq.queue` indicates MQ queue name
* `mq.topic` indicates MQ topic name , It's optional as some MQ don't hava
concept of `topic`
* `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`