This is an automated email from the ASF dual-hosted git repository. wankai pushed a commit to branch website-docs/9.5.0 in repository https://gitbox.apache.org/repos/asf/skywalking.git
commit 8ac22a410faefb43118e25978770ddb091f11ffb Author: wankai123 <wankai...@foxmail.com> AuthorDate: Wed Feb 28 11:06:58 2024 +0800 Fix kafka topic name in exporter doc. --- docs/en/setup/backend/exporter.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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} ... ```