Replies: 1 comment
-
Nothing we are aware of this. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I configured skywalking to export data to kafka. By comparing the data of consuming kafka with the data on skywalking-ui, kafka received very little data, only about 20% of that on skywalking-ui. After investigation, the logs of skywalking-oap and kafka were normal, with no message backlog, and the sampling rate was 100%.
exporter: selector: ${SW_EXPORTER:default} default: # gRPC exporter enableGRPCMetrics: ${SW_EXPORTER_ENABLE_GRPC_METRICS:false} gRPCTargetHost: ${SW_EXPORTER_GRPC_HOST:127.0.0.1} gRPCTargetPort: ${SW_EXPORTER_GRPC_PORT:9870} # Kafka exporter enableKafkaTrace: ${SW_EXPORTER_ENABLE_KAFKA_TRACE:true} enableKafkaLog: ${SW_EXPORTER_ENABLE_KAFKA_LOG:true} kafkaBootstrapServers: ${SW_EXPORTER_KAFKA_SERVERS:xx.xx.xx.xx:9092} # Kafka producer config, JSON format as Properties. kafkaProducerConfig: xxxx kafkaTopicTrace: ${SW_EXPORTER_KAFKA_TOPIC_TRACE:skywalking-export-trace} kafkaTopicLog: ${SW_EXPORTER_KAFKA_TOPIC_LOG:skywalking-export-log}
Beta Was this translation helpful? Give feedback.
All reactions