codelipenghui commented on a change in pull request #3476: Add pulsar apm plugin
URL: https://github.com/apache/skywalking/pull/3476#discussion_r326095128
 
 

 ##########
 File path: 
apm-sniffer/apm-sdk-plugin/pulsar-plugin/src/main/java/org/apache/skywalking/apm/plugin/pulsar/PulsarProducerInterceptor.java
 ##########
 @@ -0,0 +1,85 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License.  You may obtain a copy of the License at
+ *
+ *     http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ *
+ */
+
+package org.apache.skywalking.apm.plugin.pulsar;
+
+import org.apache.pulsar.client.impl.MessageImpl;
+import org.apache.pulsar.common.api.proto.PulsarApi;
+import org.apache.skywalking.apm.agent.core.context.CarrierItem;
+import org.apache.skywalking.apm.agent.core.context.ContextCarrier;
+import org.apache.skywalking.apm.agent.core.context.ContextManager;
+import org.apache.skywalking.apm.agent.core.context.ContextSnapshot;
+import org.apache.skywalking.apm.agent.core.context.tag.Tags;
+import org.apache.skywalking.apm.agent.core.context.trace.AbstractSpan;
+import org.apache.skywalking.apm.agent.core.context.trace.SpanLayer;
+import 
org.apache.skywalking.apm.agent.core.plugin.interceptor.enhance.EnhancedInstance;
+import 
org.apache.skywalking.apm.agent.core.plugin.interceptor.enhance.InstanceMethodsAroundInterceptor;
+import 
org.apache.skywalking.apm.agent.core.plugin.interceptor.enhance.MethodInterceptResult;
+import org.apache.skywalking.apm.network.trace.component.ComponentsDefine;
+
+import java.lang.reflect.Method;
+
+public class PulsarProducerInterceptor implements 
InstanceMethodsAroundInterceptor {
+
+    public static final String OPERATE_NAME_PREFIX = "Pulsar/";
+    public static final String PRODUCER_OPERATE_NAME_SUFFIX = "/Producer";
+
+    @Override
+    public void beforeMethod(EnhancedInstance objInst, Method method, Object[] 
allArguments, Class<?>[] argumentsTypes,
+                             MethodInterceptResult result) throws Throwable {
+        ProducerEnhanceRequiredInfo requiredInfo = 
(ProducerEnhanceRequiredInfo) objInst.getSkyWalkingDynamicField();
+        ContextCarrier contextCarrier = new ContextCarrier();
+        String topicName = requiredInfo.getTopic();
+        AbstractSpan activeSpan = 
ContextManager.createExitSpan(OPERATE_NAME_PREFIX + topicName +
+                PRODUCER_OPERATE_NAME_SUFFIX, contextCarrier, 
requiredInfo.getServiceUrl());
+        Tags.MQ_BROKER.set(activeSpan, requiredInfo.getServiceUrl());
+        Tags.MQ_TOPIC.set(activeSpan, topicName);
+        SpanLayer.asMQ(activeSpan);
+        activeSpan.setComponent(ComponentsDefine.PULSAR_PRODUCER);
+        CarrierItem next = contextCarrier.items();
+        MessageImpl msg = (MessageImpl) allArguments[0];
+        while (next.hasNext()) {
+            next = next.next();
+            
msg.getMessageBuilder().addProperties(PulsarApi.KeyValue.newBuilder()
+                    .setKey(next.getHeadKey())
+                    .setValue(next.getHeadValue()));
+        }
+        EnhancedInstance callbackInstance = (EnhancedInstance) allArguments[1];
+        if (callbackInstance != null) {
+            ContextSnapshot snapshot = ContextManager.capture();
+            if (null != snapshot) {
+                SendCallbackEnhanceRequiredInfo callbackRequiredInfo = new 
SendCallbackEnhanceRequiredInfo();
+                callbackRequiredInfo.setTopic(topicName);
+                callbackRequiredInfo.setContextSnapshot(snapshot);
+                
callbackInstance.setSkyWalkingDynamicField(callbackRequiredInfo);
+            }
+        }
+    }
+
+    @Override
+    public Object afterMethod(EnhancedInstance objInst, Method method, 
Object[] allArguments, Class<?>[] argumentsTypes,
+                              Object ret) throws Throwable {
+        ContextManager.stopSpan();
 
 Review comment:
   As mentioned above, to catch the IllegalStateException or is their any 
method to check the span is created

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services

Reply via email to