Skip to content
Closed
Changes from all commits
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
cb42c19
Fix #2546
ascrutae Apr 28, 2019
82c87fb
Merge branch 'master' into fix/spring-plugin-issue
ascrutae Apr 28, 2019
a4ad679
Change the stackdepth type
ascrutae Apr 28, 2019
12b6da9
Merge branch 'master' into fix/spring-plugin-issue
wu-sheng Apr 28, 2019
0782642
Fix bug
ascrutae Apr 29, 2019
53f2fc5
Merge branch 'fix/spring-plugin-issue' of https://github.com/ascrutae…
ascrutae Apr 29, 2019
6f7e27b
Fix CI failed
ascrutae Apr 29, 2019
1dff9b3
Merge pull request #1 from ascrutae/fix/spring-plugin-issue
IanCao Apr 29, 2019
285c513
fix #2599
IanCao May 6, 2019
72e54b0
Merge pull request #2 from apache/master
IanCao May 6, 2019
a2fadff
Merge branch 'master' of https://github.com/IanCao/skywalking
IanCao May 6, 2019
7f20d19
fix ci
IanCao May 6, 2019
5220451
add license
IanCao May 6, 2019
8592c29
add ActiveTag error methods
IanCao May 6, 2019
9e0c23a
Merge branch 'master' into master
ascrutae May 6, 2019
c1681c4
fix
IanCao May 7, 2019
604a6c4
Merge branch 'master' of https://github.com/IanCao/skywalking
IanCao May 7, 2019
5b6719d
Merge branch 'master' into master
wu-sheng May 7, 2019
a46bc1d
fix
IanCao May 7, 2019
961357c
fix doc
IanCao May 7, 2019
4e7fde6
Merge branch 'master' into master
wu-sheng May 9, 2019
128c472
update doc
IanCao May 10, 2019
292c10b
Merge branch 'master' into master
wu-sheng May 10, 2019
8426c0c
update dependencyManagement
IanCao May 14, 2019
ba011f9
Merge pull request #3 from apache/master
IanCao May 14, 2019
e14ce94
fix
IanCao May 14, 2019
24d66f1
Merge branch 'master' into master
peng-yongsheng May 14, 2019
1ffbf89
remove useless info
IanCao May 15, 2019
a37ec5f
Merge pull request #4 from apache/master
IanCao May 15, 2019
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -536,7 +536,7 @@ private boolean isLimitMechanismWorking() {
if (spanIdGenerator >= Config.Agent.SPAN_LIMIT_PER_SEGMENT) {
long currentTimeMillis = System.currentTimeMillis();
if (currentTimeMillis - lastWarningTimestamp > 30 * 1000) {
logger.warn(new RuntimeException("Shadow tracing context. Thread dump"), "More than {} spans required to create",
logger.warn("Shadow tracing context. Thread dump, More than {} spans required to create",
Config.Agent.SPAN_LIMIT_PER_SEGMENT);
lastWarningTimestamp = currentTimeMillis;
}
Expand Down