未验证 提交 cef99e86 编写于 作者: wu-sheng's avatar wu-sheng 提交者: GitHub

Merge branch 'master' into fix/support-postgresql-plugin

...@@ -30,7 +30,7 @@ Sky Walking | [中文](README_ZH.md) ...@@ -30,7 +30,7 @@ Sky Walking | [中文](README_ZH.md)
This project adheres to the Contributor Covenant [code of conduct](CODE_OF_CONDUCT.md). By participating, you are expected to uphold this code. Please report unacceptable behavior to wu.sheng@foxmail.com. This project adheres to the Contributor Covenant [code of conduct](CODE_OF_CONDUCT.md). By participating, you are expected to uphold this code. Please report unacceptable behavior to wu.sheng@foxmail.com.
# Screenshots # Screenshots
- Topological graph of application clusters based on dubbox and [motan](https://github.com/weibocom/motan). - Discovery topological graph of application clusters automatically.
<img src="https://skywalkingtest.github.io/page-resources/3.2.1/topological_graph_test_project.png"/> <img src="https://skywalkingtest.github.io/page-resources/3.2.1/topological_graph_test_project.png"/>
- Trace query. - Trace query.
......
...@@ -19,7 +19,7 @@ Sky Walking | [English](README.md) ...@@ -19,7 +19,7 @@ Sky Walking | [English](README.md)
* 使用 [**@Trace**](docs/cn/Application-toolkit-trace-CN.md) 标注追踪业务方法 * 使用 [**@Trace**](docs/cn/Application-toolkit-trace-CN.md) 标注追踪业务方法
* 将 traceId 集成到 log4j, log4j2 或 logback这些日志组件中 * 将 traceId 集成到 log4j, log4j2 或 logback这些日志组件中
* 纯Java后端Collector实现,提供RESTful和gRPC接口。兼容接受其他语言探针发送数据 * 纯Java后端Collector实现,提供RESTful和gRPC接口。兼容接受其他语言探针发送数据
* [如何将探针的Metric和Trace数据上传到Collector?]() * [如何将探针的Metric和Trace数据上传到Collector?](/docs/cn/How-to-communicate-with-the-collector-CN.md)
* UI工程请查看 [skywalking-ui](https://github.com/OpenSkywalking/skywalking-ui) * UI工程请查看 [skywalking-ui](https://github.com/OpenSkywalking/skywalking-ui)
* 中文QQ群:392443393 * 中文QQ群:392443393
...@@ -33,7 +33,7 @@ Sky Walking | [English](README.md) ...@@ -33,7 +33,7 @@ Sky Walking | [English](README.md)
This project adheres to the Contributor Covenant [code of conduct](CODE_OF_CONDUCT.md). By participating, you are expected to uphold this code. Please report unacceptable behavior to wu.sheng@foxmail.com. This project adheres to the Contributor Covenant [code of conduct](CODE_OF_CONDUCT.md). By participating, you are expected to uphold this code. Please report unacceptable behavior to wu.sheng@foxmail.com.
# Screenshots # Screenshots
- 追踪基于 dubbox 和 [motan](https://github.com/weibocom/motan)的分布式系统,生成的拓扑截图 - 分布式系统拓扑图自动发现
<img src="https://skywalkingtest.github.io/page-resources/3.2.1/topological_graph_test_project.png?forceUpdate=0"/> <img src="https://skywalkingtest.github.io/page-resources/3.2.1/topological_graph_test_project.png?forceUpdate=0"/>
- 调用链查询 - 调用链查询
......
...@@ -49,6 +49,7 @@ ...@@ -49,6 +49,7 @@
<executions> <executions>
<execution> <execution>
<id>attach-sources</id> <id>attach-sources</id>
<phase>none</phase>
<goals> <goals>
<goal>jar</goal> <goal>jar</goal>
</goals> </goals>
......
...@@ -49,6 +49,7 @@ ...@@ -49,6 +49,7 @@
<executions> <executions>
<execution> <execution>
<id>attach-sources</id> <id>attach-sources</id>
<phase>none</phase>
<goals> <goals>
<goal>jar</goal> <goal>jar</goal>
</goals> </goals>
......
...@@ -49,6 +49,7 @@ ...@@ -49,6 +49,7 @@
<executions> <executions>
<execution> <execution>
<id>attach-sources</id> <id>attach-sources</id>
<phase>none</phase>
<goals> <goals>
<goal>jar</goal> <goal>jar</goal>
</goals> </goals>
......
...@@ -41,6 +41,7 @@ ...@@ -41,6 +41,7 @@
<executions> <executions>
<execution> <execution>
<id>attach-sources</id> <id>attach-sources</id>
<phase>none</phase>
<goals> <goals>
<goal>jar</goal> <goal>jar</goal>
</goals> </goals>
......
...@@ -103,10 +103,12 @@ public class BootstrapFlow { ...@@ -103,10 +103,12 @@ public class BootstrapFlow {
if (isAllRequiredModuleStarted) { if (isAllRequiredModuleStarted) {
startupSequence.add(provider); startupSequence.add(provider);
allProviders.remove(i); allProviders.remove(i);
i--;
} }
} else { } else {
startupSequence.add(provider); startupSequence.add(provider);
allProviders.remove(i); allProviders.remove(i);
i--;
} }
} }
......
...@@ -148,6 +148,7 @@ ...@@ -148,6 +148,7 @@
<executions> <executions>
<execution> <execution>
<id>attach-sources</id> <id>attach-sources</id>
<phase>none</phase>
<goals> <goals>
<goal>jar</goal> <goal>jar</goal>
</goals> </goals>
......
...@@ -64,6 +64,7 @@ ...@@ -64,6 +64,7 @@
<executions> <executions>
<execution> <execution>
<id>attach-sources</id> <id>attach-sources</id>
<phase>none</phase>
<goals> <goals>
<goal>jar</goal> <goal>jar</goal>
</goals> </goals>
......
...@@ -58,6 +58,7 @@ ...@@ -58,6 +58,7 @@
<executions> <executions>
<execution> <execution>
<id>attach-sources</id> <id>attach-sources</id>
<phase>none</phase>
<goals> <goals>
<goal>jar</goal> <goal>jar</goal>
</goals> </goals>
......
...@@ -60,6 +60,7 @@ ...@@ -60,6 +60,7 @@
<executions> <executions>
<execution> <execution>
<id>attach-sources</id> <id>attach-sources</id>
<phase>none</phase>
<goals> <goals>
<goal>jar</goal> <goal>jar</goal>
</goals> </goals>
......
...@@ -54,6 +54,7 @@ ...@@ -54,6 +54,7 @@
<executions> <executions>
<execution> <execution>
<id>attach-sources</id> <id>attach-sources</id>
<phase>none</phase>
<goals> <goals>
<goal>jar</goal> <goal>jar</goal>
</goals> </goals>
......
...@@ -70,6 +70,7 @@ ...@@ -70,6 +70,7 @@
<executions> <executions>
<execution> <execution>
<id>attach-sources</id> <id>attach-sources</id>
<phase>none</phase>
<goals> <goals>
<goal>jar</goal> <goal>jar</goal>
</goals> </goals>
......
...@@ -64,6 +64,7 @@ ...@@ -64,6 +64,7 @@
<executions> <executions>
<execution> <execution>
<id>attach-sources</id> <id>attach-sources</id>
<phase>none</phase>
<goals> <goals>
<goal>jar</goal> <goal>jar</goal>
</goals> </goals>
......
...@@ -143,6 +143,7 @@ ...@@ -143,6 +143,7 @@
<executions> <executions>
<execution> <execution>
<id>attach-sources</id> <id>attach-sources</id>
<phase>none</phase>
<goals> <goals>
<goal>jar</goal> <goal>jar</goal>
</goals> </goals>
......
...@@ -64,6 +64,7 @@ ...@@ -64,6 +64,7 @@
<executions> <executions>
<execution> <execution>
<id>attach-sources</id> <id>attach-sources</id>
<phase>none</phase>
<goals> <goals>
<goal>jar</goal> <goal>jar</goal>
</goals> </goals>
......
...@@ -63,6 +63,7 @@ ...@@ -63,6 +63,7 @@
<executions> <executions>
<execution> <execution>
<id>attach-sources</id> <id>attach-sources</id>
<phase>none</phase>
<goals> <goals>
<goal>jar</goal> <goal>jar</goal>
</goals> </goals>
......
...@@ -63,6 +63,7 @@ ...@@ -63,6 +63,7 @@
<executions> <executions>
<execution> <execution>
<id>attach-sources</id> <id>attach-sources</id>
<phase>none</phase>
<goals> <goals>
<goal>jar</goal> <goal>jar</goal>
</goals> </goals>
......
...@@ -66,6 +66,7 @@ ...@@ -66,6 +66,7 @@
<executions> <executions>
<execution> <execution>
<id>attach-sources</id> <id>attach-sources</id>
<phase>none</phase>
<goals> <goals>
<goal>jar</goal> <goal>jar</goal>
</goals> </goals>
......
/*
* Copyright 2017, OpenSkywalking Organization All rights reserved.
*
* Licensed 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.
*
* Project repository: https://github.com/OpenSkywalking/skywalking
*/
package org.skywalking.apm.plugin.spring.mvc.v3;
import java.lang.reflect.Method;
import org.skywalking.apm.agent.core.plugin.interceptor.enhance.EnhancedInstance;
import org.skywalking.apm.agent.core.plugin.interceptor.enhance.InstanceMethodsAroundInterceptor;
import org.skywalking.apm.agent.core.plugin.interceptor.enhance.MethodInterceptResult;
import org.springframework.web.context.request.NativeWebRequest;
/**
* {@link HandlerMethodInvokerInterceptor} pass the {@link NativeWebRequest} object into the {@link
* org.springframework.stereotype.Controller} object.
*
* @author zhangxin
*/
public class HandlerMethodInvokerInterceptor implements InstanceMethodsAroundInterceptor {
@Override
public void beforeMethod(EnhancedInstance objInst, Method method, Object[] allArguments, Class<?>[] argumentsTypes,
MethodInterceptResult result) throws Throwable {
Object handler = allArguments[1];
if (handler instanceof EnhancedInstance) {
((EnhanceRequireObjectCache)((EnhancedInstance)handler).getSkyWalkingDynamicField()).setNativeWebRequest((NativeWebRequest)allArguments[2]);
}
}
@Override
public Object afterMethod(EnhancedInstance objInst, Method method, Object[] allArguments, Class<?>[] argumentsTypes,
Object ret) throws Throwable {
return ret;
}
@Override public void handleMethodException(EnhancedInstance objInst, Method method, Object[] allArguments,
Class<?>[] argumentsTypes, Throwable t) {
}
}
/*
* Copyright 2017, OpenSkywalking Organization All rights reserved.
*
* Licensed 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.
*
* Project repository: https://github.com/OpenSkywalking/skywalking
*/
package org.skywalking.apm.plugin.spring.mvc.v3.define;
import net.bytebuddy.description.method.MethodDescription;
import net.bytebuddy.matcher.ElementMatcher;
import org.skywalking.apm.agent.core.plugin.interceptor.ConstructorInterceptPoint;
import org.skywalking.apm.agent.core.plugin.interceptor.InstanceMethodsInterceptPoint;
import org.skywalking.apm.agent.core.plugin.match.ClassMatch;
import static net.bytebuddy.matcher.ElementMatchers.named;
import static org.skywalking.apm.agent.core.plugin.match.NameMatch.byName;
/**
* {@link HandlerMethodInvokerInstrumentation} intercept the <code>invokeHandlerMethod</code> method in the
* <code>org.springframework.web.bind.annotation.support.HandlerMethodInvoker</code> class.
*
* @author zhangxin
*/
public class HandlerMethodInvokerInstrumentation extends AbstractSpring3Instrumentation {
private static final String ENHANCE_CLASS = "org.springframework.web.bind.annotation.support.HandlerMethodInvoker";
private static final String ENHANCE_METHOD = "invokeHandlerMethod";
private static final String INTERCEPTOR_CLASS = "org.skywalking.apm.plugin.spring.mvc.v3.HandlerMethodInvokerInterceptor";
@Override protected ConstructorInterceptPoint[] getConstructorsInterceptPoints() {
return new ConstructorInterceptPoint[0];
}
@Override protected InstanceMethodsInterceptPoint[] getInstanceMethodsInterceptPoints() {
return new InstanceMethodsInterceptPoint[] {
new InstanceMethodsInterceptPoint() {
@Override public ElementMatcher<MethodDescription> getMethodsMatcher() {
return named(ENHANCE_METHOD);
}
@Override public String getMethodsInterceptor() {
return INTERCEPTOR_CLASS;
}
@Override public boolean isOverrideArgs() {
return false;
}
}
};
}
@Override protected ClassMatch enhanceClass() {
return byName(ENHANCE_CLASS);
}
}
spring-mvc-annotation-3.x=org.skywalking.apm.plugin.spring.mvc.v3.define.ControllerInstrumentation spring-mvc-annotation-3.x=org.skywalking.apm.plugin.spring.mvc.v3.define.ControllerInstrumentation
spring-mvc-annotation-3.x=org.skywalking.apm.plugin.spring.mvc.v3.define.HandlerMethodInstrumentation spring-mvc-annotation-3.x=org.skywalking.apm.plugin.spring.mvc.v3.define.HandlerMethodInstrumentation
spring-mvc-annotation-3.x=org.skywalking.apm.plugin.spring.mvc.v3.define.InvocableHandlerInstrumentation spring-mvc-annotation-3.x=org.skywalking.apm.plugin.spring.mvc.v3.define.InvocableHandlerInstrumentation
spring-mvc-annotation-3.x=org.skywalking.apm.plugin.spring.mvc.v3.define.HandlerMethodInvokerInstrumentation
...@@ -65,6 +65,7 @@ ...@@ -65,6 +65,7 @@
<executions> <executions>
<execution> <execution>
<id>attach-sources</id> <id>attach-sources</id>
<phase>none</phase>
<goals> <goals>
<goal>jar</goal> <goal>jar</goal>
</goals> </goals>
......
...@@ -252,6 +252,7 @@ ...@@ -252,6 +252,7 @@
<executions> <executions>
<execution> <execution>
<id>attach-sources</id> <id>attach-sources</id>
<phase>none</phase>
<goals> <goals>
<goal>jar</goal> <goal>jar</goal>
</goals> </goals>
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册