-
Notifications
You must be signed in to change notification settings - Fork 377
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Support dubbo #183
Merged
Merged
Support dubbo #183
Changes from all commits
Commits
Show all changes
50 commits
Select commit
Hold shift + click to select a range
9aa096b
Merge pull request #4 from alipay/master
glmapper 3a897b4
Merge branch 'master-alipay'
d50a8a2
Merge branch 'master-alipay'
27923f4
Merge branch 'master' of https://github.com/alipay/sofa-tracer into m…
c6461b8
Merge branch 'master' of https://github.com/alipay/sofa-tracer into m…
c4652c4
Merge branch 'master' of https://github.com/alipay/sofa-tracer into m…
7758538
Merge branch 'master' of https://github.com/alipay/sofa-tracer into m…
1c94b31
Merge branch 'master-alipay'
518d87f
Merge branch 'master-alipay'
f74b0b3
Merge branch 'master-alipay'
3c09b2a
Merge branch 'master-alipay'
7747345
Merge branch 'master' of https://github.com/alipay/sofa-tracer into m…
2832112
Merge branch 'master' of https://github.com/alipay/sofa-tracer into m…
72b0467
Merge branch 'master' of https://github.com/alipay/sofa-tracer into m…
404d8a7
upgrade-2.3.4-SNAPSHOT
2e817c8
support dubbo
14ba0c5
fix test case
fe64513
fix test case
5b972e9
fix test case
04efaf9
user jdk8
ad04066
Merge branch 'master' of https://github.com/alipay/sofa-tracer into m…
17664cc
use map to store sapn and key id build by invoker's hashcode
05ad951
Merge branch 'upgrade-2.3.4-SNAPSHOT' into support-dubbo
92c2918
merge upstream
006f959
merge upstream
28fd903
code format
cf075de
add do deal with dubbo invoke timeoutexception
7fa7244
Merge branch 'master' into support-dubbo
glmapper c6e4103
codec fix
4643b3a
delete import
0cc4c87
Merge branch 'support-dubbo' of https://github.com/glmapper/sofa-trac…
824628f
Merge branch 'master' of https://github.com/alipay/sofa-tracer into m…
50d352c
Merge branch 'master' of https://github.com/alipay/sofa-tracer into m…
c6139a1
fix async callback
51fb323
clear tracer context
954d037
Merge branch 'master' of https://github.com/alipay/sofa-tracer into m…
ad9793a
Merge remote-tracking branch 'upstream/master'
989b651
Merge branch 'master' into support-dubbo
20a98cd
support dubbo
999f844
collect error tags msg to span
a7a5fcb
optimize duubo stat encoder
5f58d3c
optimize duubo stat encoder
1e706f5
solve conflic
0a3656f
Merge branch 'master' into support-dubbo
glmapper ead0008
add samples readme
f2fa51a
fix cr
9580e5f
rebuild
20ad9cd
fast json dependency management
2b38e5c
provider dubbo samples demos
2251c3a
rename demo name
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ language: java | |
sudo: false | ||
|
||
jdk: | ||
- openjdk7 | ||
- openjdk8 | ||
|
||
install: | ||
|
||
|
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<project xmlns="http://maven.apache.org/POM/4.0.0" | ||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> | ||
<parent> | ||
<artifactId>tracer-all-parent</artifactId> | ||
<groupId>com.alipay.sofa</groupId> | ||
<version>2.4.0</version> | ||
<relativePath>../../pom.xml</relativePath> | ||
</parent> | ||
<modelVersion>4.0.0</modelVersion> | ||
<artifactId>sofa-tracer-dubbo-plugin</artifactId> | ||
|
||
<dependencies> | ||
<dependency> | ||
<groupId>org.apache.dubbo</groupId> | ||
<artifactId>dubbo</artifactId> | ||
<version>2.7.0</version> | ||
<scope>provided</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>com.alipay.sofa</groupId> | ||
<artifactId>tracer-core</artifactId> | ||
</dependency> | ||
<dependency> | ||
<groupId>junit</groupId> | ||
<artifactId>junit</artifactId> | ||
<scope>test</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>commons-io</groupId> | ||
<artifactId>commons-io</artifactId> | ||
<scope>test</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>com.alibaba</groupId> | ||
<artifactId>fastjson</artifactId> | ||
</dependency> | ||
|
||
</dependencies> | ||
</project> |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
写成provided就好了吧,如果有人要用sofa-tracer-dubbo-plugin,那他肯定是dubbo环境,如果不是dubbo环境误引入,我们也有conditionOnClass保证不报错,没必要把这个依赖带出去。