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

wusheng pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/skywalking.git


The following commit(s) were added to refs/heads/master by this push:
     new ddd7ff5e1f Fix kafka topic name in exporter doc. (#11948)
ddd7ff5e1f is described below

commit ddd7ff5e1ff455612094d1a15da3e395d7332903
Author: Wan Kai <wankai...@foxmail.com>
AuthorDate: Wed Feb 28 10:29:43 2024 +0800

    Fix kafka topic name in exporter doc. (#11948)
---
 docs/en/changes/changes.md        | 1 +
 docs/en/setup/backend/exporter.md | 8 ++++----
 2 files changed, 5 insertions(+), 4 deletions(-)

diff --git a/docs/en/changes/changes.md b/docs/en/changes/changes.md
index f794e66a59..9d50a97255 100644
--- a/docs/en/changes/changes.md
+++ b/docs/en/changes/changes.md
@@ -106,5 +106,6 @@
 * Fix: end loading without query results.
 * Update nanoid version to 3.3.7.
 * Update postcss version to 8.4.33.
+* Fix kafka topic name in exporter doc.
 
 All issues and pull requests are 
[here](https://github.com/apache/skywalking/milestone/202?closed=1)
diff --git a/docs/en/setup/backend/exporter.md 
b/docs/en/setup/backend/exporter.md
index 936799744d..87f619053c 100644
--- a/docs/en/setup/backend/exporter.md
+++ b/docs/en/setup/backend/exporter.md
@@ -51,7 +51,7 @@ this method will be called concurrently. For metrics value, 
you need to follow `
 
 ## Kafka Exporter
 ### Trace Kafka Exporter
-Trace kafka exporter pushes messages to the Kafka Broker and Topic 
`skywalking-trace` to export the trace. Here is the message:
+Trace kafka exporter pushes messages to the Kafka Broker and Topic 
`skywalking-export-trace` to export the trace. Here is the message:
 ```
 ProducerRecord<String, Bytes>
 Key: TraceSegmentId
@@ -81,7 +81,7 @@ exporter:
     kafkaBootstrapServers: ${SW_EXPORTER_KAFKA_SERVERS:localhost:9092}
     # Kafka producer config, JSON format as Properties.
     kafkaProducerConfig: ${SW_EXPORTER_KAFKA_PRODUCER_CONFIG:""}
-    kafkaTopicTrace: ${SW_EXPORTER_KAFKA_TOPIC_TRACE:skywalking-trace}
+    kafkaTopicTrace: ${SW_EXPORTER_KAFKA_TOPIC_TRACE:skywalking-export-trace}
     exportErrorStatusTraceOnly: ${SW_EXPORTER_KAFKA_TRACE_FILTER_ERROR:false}
     ...
 ```
@@ -89,7 +89,7 @@ exporter:
 - `exportErrorStatusTraceOnly=true` represents that only export the error 
status trace segments through the Kafka channel.
 
 ### Log Kafka Exporter
-Log kafka exporter pushes messages to the Kafka Broker and Topic 
`skywalking-log` to export the log. Here is the message:
+Log kafka exporter pushes messages to the Kafka Broker and Topic 
`skywalking-export-log` to export the log. Here is the message:
 ```
 ProducerRecord<String, Bytes>
 Key: LogRecordId
@@ -120,6 +120,6 @@ exporter:
     kafkaBootstrapServers: ${SW_EXPORTER_KAFKA_SERVERS:localhost:9092}
     # Kafka producer config, JSON format as Properties.
     kafkaProducerConfig: ${SW_EXPORTER_KAFKA_PRODUCER_CONFIG:""}
-    kafkaTopicLog: ${SW_EXPORTER_KAFKA_TOPIC_LOG:skywalking-log}
+    kafkaTopicLog: ${SW_EXPORTER_KAFKA_TOPIC_LOG:skywalking-export-log}
     ...
 ```

Reply via email to