You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@eventmesh.apache.org by mi...@apache.org on 2022/01/14 02:36:40 UTC

[incubator-eventmesh] branch master updated: [ISSUE #713] Fix trace bug (#712)

This is an automated email from the ASF dual-hosted git repository.

mikexue pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-eventmesh.git


The following commit(s) were added to refs/heads/master by this push:
     new 52ec3d7  [ISSUE #713] Fix trace bug (#712)
52ec3d7 is described below

commit 52ec3d76a3ecd7c4ac9b4e31e9bb928321c64b5b
Author: ZePeng Chen <84...@users.noreply.github.com>
AuthorDate: Fri Jan 14 10:36:16 2022 +0800

    [ISSUE #713] Fix trace bug (#712)
    
    * add docs
    
    * change default spanExporter to span
---
 docs/cn/instructions/eventmesh-trace-Zipkin-instruction.md | 8 ++++++--
 docs/en/instructions/eventmesh-trace-Zipkin-instruction.md | 6 +++++-
 eventmesh-runtime/conf/eventmesh.properties                | 2 +-
 3 files changed, 12 insertions(+), 4 deletions(-)

diff --git a/docs/cn/instructions/eventmesh-trace-Zipkin-instruction.md b/docs/cn/instructions/eventmesh-trace-Zipkin-instruction.md
index aeef95a..03257b6 100644
--- a/docs/cn/instructions/eventmesh-trace-Zipkin-instruction.md
+++ b/docs/cn/instructions/eventmesh-trace-Zipkin-instruction.md
@@ -18,10 +18,14 @@
 
 eventmesh-runtime/conf/eventmesh.properties中:
 
+默认的exporter是log,需要手动改成Zipkin
+
 ```properties
 #trace exporter
 eventmesh.trace.exporter.type=Zipkin
-
+```
+下面是关于Zipkin的各种配置
+```properties
 #set the maximum batch size to use
 eventmesh.trace.exporter.max.export.size=512
 #set the queue size. This must be >= the export batch size
@@ -36,7 +40,7 @@ eventmesh.trace.export.zipkin.ip=localhost
 eventmesh.trace.export.zipkin.port=9411
 ```
 
-以上都是相关的配置,如果你十分熟悉zipkin的话可以自行修改。
+以上都是相关的配置,如果你十分熟悉Zipkin的话可以自行修改。
 
 
 
diff --git a/docs/en/instructions/eventmesh-trace-Zipkin-instruction.md b/docs/en/instructions/eventmesh-trace-Zipkin-instruction.md
index 15432c1..16b2c4c 100644
--- a/docs/en/instructions/eventmesh-trace-Zipkin-instruction.md
+++ b/docs/en/instructions/eventmesh-trace-Zipkin-instruction.md
@@ -18,10 +18,14 @@ run eventmesh-example(reference [eventmesh-sdk-java-quickstart](eventmesh-sdk-ja
 
 In eventmesh-runtime/conf/eventmesh.properties:
 
+The default exporter is log, which needs to be manually changed to Zipkin
+
 ```properties
 #trace exporter
 eventmesh.trace.exporter.type=Zipkin
-
+```
+Here are various configurations of Zipkin
+```properties
 #set the maximum batch size to use
 eventmesh.trace.exporter.max.export.size=512
 #set the queue size. This must be >= the export batch size
diff --git a/eventmesh-runtime/conf/eventmesh.properties b/eventmesh-runtime/conf/eventmesh.properties
index 000cd5d..4a4b9dd 100644
--- a/eventmesh-runtime/conf/eventmesh.properties
+++ b/eventmesh-runtime/conf/eventmesh.properties
@@ -75,7 +75,7 @@ eventMesh.registry.plugin.type=namesrv
 eventmesh.metrics.plugin=opentelemetry
 
 #trace exporter
-eventmesh.trace.exporter.type=Zipkin
+eventmesh.trace.exporter.type=Log
 
 #set the maximum batch size to use
 eventmesh.trace.exporter.max.export.size=512

---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@eventmesh.apache.org
For additional commands, e-mail: commits-help@eventmesh.apache.org