Created
July 24, 2019 09:27
-
-
Save wu-sheng/25a8877971db089e196ada0fe4395813 to your computer and use it in GitHub Desktop.
SkyWalking bootstrap instrumentation demo
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* 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.jre.httpurlconnection; | |
import java.io.PrintStream; | |
import java.lang.reflect.Method; | |
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; | |
/** | |
* @author wusheng | |
*/ | |
public class Interceptor implements InstanceMethodsAroundInterceptor { | |
@Override | |
public void beforeMethod(EnhancedInstance objInst, Method method, Object[] allArguments, Class<?>[] argumentsTypes, | |
MethodInterceptResult result) throws Throwable { | |
allArguments[0] = "POST"; | |
} | |
@Override | |
public Object afterMethod(EnhancedInstance objInst, Method method, Object[] allArguments, Class<?>[] argumentsTypes, | |
Object ret) throws Throwable { | |
PrintStream out = System.out; | |
out.println("abc"); | |
return ret; | |
} | |
@Override public void handleMethodException(EnhancedInstance objInst, Method method, Object[] allArguments, | |
Class<?>[] argumentsTypes, Throwable t) { | |
} | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* 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. | |
* | |
*/ | |
import java.io.BufferedReader; | |
import java.io.IOException; | |
import java.io.InputStreamReader; | |
import java.net.HttpURLConnection; | |
import java.net.URL; | |
public class Main { | |
public static void main(String[] args) throws IOException { | |
URL obj = new URL("http://www.baidu.com"); | |
HttpURLConnection con = (HttpURLConnection)obj.openConnection(); | |
// optional default is GET | |
con.setRequestMethod("GET"); | |
System.out.println(con.getRequestMethod()); | |
// con.setChunkedStreamingMode(0); | |
//add request header | |
int responseCode = con.getResponseCode(); | |
System.out.println("Response Code : " + responseCode); | |
BufferedReader in = new BufferedReader( | |
new InputStreamReader(con.getInputStream())); | |
String inputLine; | |
StringBuffer response = new StringBuffer(); | |
while ((inputLine = in.readLine()) != null) { | |
response.append(inputLine); | |
} | |
in.close(); | |
//print result | |
System.out.println(response.toString()); | |
} | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* 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.jre.httpurlconnection; | |
import net.bytebuddy.description.method.MethodDescription; | |
import net.bytebuddy.matcher.ElementMatcher; | |
import org.apache.skywalking.apm.agent.core.plugin.interceptor.ConstructorInterceptPoint; | |
import org.apache.skywalking.apm.agent.core.plugin.interceptor.InstanceMethodsInterceptPoint; | |
import org.apache.skywalking.apm.agent.core.plugin.interceptor.StaticMethodsInterceptPoint; | |
import org.apache.skywalking.apm.agent.core.plugin.interceptor.enhance.ClassEnhancePluginDefine; | |
import org.apache.skywalking.apm.agent.core.plugin.match.ClassMatch; | |
import static net.bytebuddy.matcher.ElementMatchers.any; | |
import static org.apache.skywalking.apm.agent.core.plugin.match.NameMatch.byName; | |
public class URLInstrumentation extends ClassEnhancePluginDefine { | |
private static String CLASS_NAME = "java.net.URL"; | |
@Override protected ClassMatch enhanceClass() { | |
return byName(CLASS_NAME); | |
} | |
@Override public ConstructorInterceptPoint[] getConstructorsInterceptPoints() { | |
return new ConstructorInterceptPoint[] { | |
new ConstructorInterceptPoint() { | |
@Override public ElementMatcher<MethodDescription> getConstructorMatcher() { | |
return any(); | |
} | |
@Override public String getConstructorInterceptor() { | |
return "org.apache.skywalking.apm.plugin.jre.httpurlconnection.Interceptor2"; | |
} | |
} | |
}; | |
} | |
@Override public InstanceMethodsInterceptPoint[] getInstanceMethodsInterceptPoints() { | |
return new InstanceMethodsInterceptPoint[0]; | |
} | |
@Override public StaticMethodsInterceptPoint[] getStaticMethodsInterceptPoints() { | |
return new StaticMethodsInterceptPoint[0]; | |
} | |
@Override public boolean isBootstrapInstrumentation() { | |
return true; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment