Skip to content
Open
Changes from all commits
Commits
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 @@ -65,6 +65,14 @@ public class ThreadCommand extends AnnotatedCommand {
}
}

private boolean hideInternalThreads;

@Option(longName = "hide-internal", shortName = "hi", flag = true)
@Description("Hide internal threads")
public void setHideInternalThreads(final boolean hideInternalThreads) {
this.hideInternalThreads = hideInternalThreads;
}

@Argument(index = 0, required = false, argName = "id")
@Description("Show thread stack")
public void setId(long id) {
Expand Down Expand Up @@ -143,7 +151,7 @@ private ExitStatus processAllThreads(CommandProcess process) {
stateCountMap.put(threadState, count + 1);
}

boolean includeInternalThreads = true;
boolean includeInternalThreads = !this.hideInternalThreads;
Collection<ThreadVO> resultThreads = new ArrayList<ThreadVO>();
if (!StringUtils.isEmpty(this.state)) {
this.state = this.state.toUpperCase();
Expand Down