diff --git a/docs/en/FAQ/kafka-plugin.md b/docs/en/FAQ/kafka-plugin.md index 31db6423ce3bdbc9093f25649282b9f5ae8e675f..7fea78807070be2bca4e5d936ae2af0f7d5237b2 100644 --- a/docs/en/FAQ/kafka-plugin.md +++ b/docs/en/FAQ/kafka-plugin.md @@ -1,8 +1,8 @@ -**Problem**:
-The Kafka plug-in can't track how applications handle messages +**Problem**: +The trace doesn't continue in kafka consumer side. **Reason**: -The Kafka consumer actively takes a message from Kafka Cluster and the agent can not see if the consuming thread is being monitored. +The kafka client is pulling message from server, the plugin also just traces the pull action. As that, you need to do the manual instrument before the pull action, and include the further data process. **Resolve**: -Add the `@Trace` annotation to the method of handle message and the method of poll message , see the [document](https://github.com/apache/incubator-skywalking/blob/master/docs/en/Application-toolkit-trace.md) \ No newline at end of file +Use Application Toolkit libraries to do manual instrumentation. such as `@Trace` annotaion or OpenTracing API.