From fca248c48b24dad0904a1cf74ef6828c775f2c9f Mon Sep 17 00:00:00 2001 From: hengyunabc Date: Thu, 17 Oct 2024 16:32:54 +0800 Subject: [PATCH] polish #2905 --- .../arthas/core/command/monitor200/ProfilerCommand.java | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/core/src/main/java/com/taobao/arthas/core/command/monitor200/ProfilerCommand.java b/core/src/main/java/com/taobao/arthas/core/command/monitor200/ProfilerCommand.java index 85ab87efd..90e2c1460 100644 --- a/core/src/main/java/com/taobao/arthas/core/command/monitor200/ProfilerCommand.java +++ b/core/src/main/java/com/taobao/arthas/core/command/monitor200/ProfilerCommand.java @@ -361,9 +361,8 @@ public class ProfilerCommand extends AnnotatedCommand { this.jfrsync = jfrsync; } - @Option(longName = "wall", flag = true) - @Description("wall clock profiling interval") - @DefaultValue("10000000") + @Option(longName = "wall") + @Description("wall clock profiling interval in milliseconds(recommended: 200)") public void setWall(Long wall) { this.wall = wall; }