Skip to content

Commit 3a7dd9f

Browse files
committed
add ability to see thread stacktraces in sys/profiler
1 parent 0d87150 commit 3a7dd9f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

dslink-core/src/main/java/org/iot/dsa/profiler/ThreadNode.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ public void refreshImpl() {
9999
l.add(id);
100100
}
101101
putProp("AllThreadIds", l);
102-
ThreadInfo[] infos = mxbean.getThreadInfo(ids);
102+
ThreadInfo[] infos = mxbean.getThreadInfo(ids, false, false);
103103
for (ThreadInfo info: infos) {
104104
long id = info.getThreadId();
105105
ThreadInfoNode infoNode = infoNodes.get(id);

0 commit comments

Comments
 (0)