diff --git a/_images/qrcode_gongzhonghao.jpg b/_images/qrcode_gongzhonghao.jpg new file mode 100644 index 000000000..9d0e54ab8 Binary files /dev/null and b/_images/qrcode_gongzhonghao.jpg differ diff --git a/_sources/cls.md.txt b/_sources/cls.md.txt new file mode 100644 index 000000000..136f4092b --- /dev/null +++ b/_sources/cls.md.txt @@ -0,0 +1,7 @@ +cls +=== + +清空当前屏幕区域。 + +> 非终端模式下使用cls指令,会提示"Command 'cls' is only support tty session."。 + diff --git a/_sources/commands.md.txt b/_sources/commands.md.txt index c51bcb949..132af9199 100644 --- a/_sources/commands.md.txt +++ b/_sources/commands.md.txt @@ -45,12 +45,12 @@ ### Arthas 基础命令 -* help——查看命令帮助信息 -* cls——清空当前屏幕区域 -* session——查看当前会话的信息 -* [reset](reset.md)——重置增强类,将被 Arthas 增强过的类全部还原,Arthas 服务端关闭时会重置所有增强过的类 -* version——输出当前目标 Java 进程所加载的 Arthas 版本号 -* history——打印命令历史 -* quit——退出当前 Arthas 客户端,其他 Arthas 客户端不受影响 -* stop——关闭 Arthas 服务端,所有 Arthas 客户端全部退出 -* [keymap](keymap.md)——Arthas快捷键列表及自定义快捷键 \ No newline at end of file +* [help](help.md) +* [cls](cls.md) +* [session](session.md) +* [reset](reset.md) +* [version](version.md) +* [history](history.md) +* [quit](quit.md) +* [stop](stop.md) +* [keymap](keymap.md) \ No newline at end of file diff --git a/_sources/contact-us.md.txt b/_sources/contact-us.md.txt index 20bcff595..57048d0ce 100644 --- a/_sources/contact-us.md.txt +++ b/_sources/contact-us.md.txt @@ -5,14 +5,18 @@ ## 招聘 -* [期待你的加入](https://mp.weixin.qq.com/s/k5jozrSgmyH0tcQfrDkxUQ) +* [期待你的加入](https://mp.weixin.qq.com/s/XQv8GnqGT3pzceVwzeiy-A) ### Issues +使用疑问,意见可以直接在Issues里提出: [https://github.com/alibaba/arthas/issues](https://github.com/alibaba/arthas/issues) -使用疑问,意见可以直接在Issues里提出: [https://github.com/alibaba/arthas/issues](https://github.com/alibaba/arthas/issues) +### 微信公众号 + +欢迎关注公众号,获取Arthas项目的信息、源码分析、案例实践。 +![](_static/qrcode_gongzhonghao.jpg) ### 钉钉群 diff --git a/_sources/faq.md.txt b/_sources/faq.md.txt index 7d8975371..1bc1ff76e 100644 --- a/_sources/faq.md.txt +++ b/_sources/faq.md.txt @@ -47,7 +47,8 @@ options json-format true ##### 能不能查看内存里某个变量的值 -不能。但可以用一些技巧,用`tt`命令拦截到对象,或者从静态函数里取到对象。 +1. 可以使用[`vmtool`](vmtool.md)命令。 +2. 可以用一些技巧,用[`tt`](tt.md)命令拦截到对象,或者从静态函数里取到对象。 ##### 方法同名过滤 diff --git a/_sources/help.md.txt b/_sources/help.md.txt new file mode 100644 index 000000000..e20034a10 --- /dev/null +++ b/_sources/help.md.txt @@ -0,0 +1,87 @@ +help +=== + +查看命令帮助信息,可以查看当前arthas版本支持的指令,或者查看具体指令的使用说明。 + +> [help 指令]的等同于[指令 -help],都是查看具体指令的使用说明。 + +### 参数说明 + +| 参数名称 | 参数说明 | +| -------: | :--------------------------------------- | +| 不接参数 | 查询当前arthas版本支持的指令以及指令描述 | +| [name:] | 查询具体指令的使用说明 | + +### 使用参考 + +``` +$ help + NAME DESCRIPTION + help Display Arthas Help + auth Authenticates the current session + keymap Display all the available keymap for the specified connection. + sc Search all the classes loaded by JVM + sm Search the method of classes loaded by JVM + classloader Show classloader info + jad Decompile class + getstatic Show the static field of a class + monitor Monitor method execution statistics, e.g. total/success/failure count, average rt, fail rate, etc. + stack Display the stack trace for the specified class and method + thread Display thread info, thread stack + trace Trace the execution time of specified method invocation. + watch Display the input/output parameter, return object, and thrown exception of specified method invocation + tt Time Tunnel + jvm Display the target JVM information + perfcounter Display the perf counter information. + ognl Execute ognl expression. + mc Memory compiler, compiles java files into bytecode and class files in memory. + redefine Redefine classes. @see Instrumentation#redefineClasses(ClassDefinition...) + retransform Retransform classes. @see Instrumentation#retransformClasses(Class...) + dashboard Overview of target jvm's thread, memory, gc, vm, tomcat info. + dump Dump class byte array from JVM + heapdump Heap dump + options View and change various Arthas options + cls Clear the screen + reset Reset all the enhanced classes + version Display Arthas version + session Display current session information + sysprop Display, and change the system properties. + sysenv Display the system env. + vmoption Display, and update the vm diagnostic options. + logger Print logger info, and update the logger level + history Display command history + cat Concatenate and print files + base64 Encode and decode using Base64 representation + echo write arguments to the standard output + pwd Return working directory name + mbean Display the mbean information + grep grep command for pipes. + tee tee command for pipes. + profiler Async Profiler. https://github.com/jvm-profiling-tools/async-profiler + stop Stop/Shutdown Arthas server and exit the console. + + +``` + +``` + $ help dashboard + USAGE: + dashboard [-h] [-i ] [-n ] + + SUMMARY: + Overview of target jvm's thread, memory, gc, vm, tomcat info. + + EXAMPLES: + dashboard + dashboard -n 10 + dashboard -i 2000 + + WIKI: + https://arthas.aliyun.com/doc/dashboard + + OPTIONS: + -h, --help this help + -i, --interval The interval (in ms) between two executions, default is 5000 ms. + -n, --number-of-execution The number of times this command will be executed. +``` + diff --git a/_sources/history.md.txt b/_sources/history.md.txt new file mode 100644 index 000000000..b555b4e96 --- /dev/null +++ b/_sources/history.md.txt @@ -0,0 +1,31 @@ +history +=== + +打印命令历史。 + +> 历史指令会通过一个名叫history的文件持久化,所以history指令可以查看当前arthas服务器的所有历史命令,而不仅只是当前次会话使用过的命令。 + +### 参数说明 + +| 参数名称 | 参数说明 | +| -------: | :-------------------- | +| [c:] | 清空历史指令 | +| [n:] | 显示最近执行的n条指令 | + +### 使用参考 + +``` +#查看最近执行的3条指令 +$ history 3 + 269 thread + 270 cls + 271 history 3 +``` + +``` + #清空指令 + $ history -c + $ history 3 + 1 history 3 +``` + diff --git a/_sources/index.md.txt b/_sources/index.md.txt index dc8e13606..5cf059fd2 100644 --- a/_sources/index.md.txt +++ b/_sources/index.md.txt @@ -18,6 +18,7 @@ Arthas 用户文档 0. 是否有一个全局视角来查看系统的运行状况? 0. 有什么办法可以监控到JVM的实时运行状态? 0. 怎么快速定位应用的热点,生成火焰图? +0. 怎样直接从JVM内查找某个类的实例? `Arthas`支持JDK 6+,支持Linux/Mac/Windows,采用命令行交互模式,同时提供丰富的 `Tab` 自动补全功能,进一步方便进行问题的定位和诊断。 diff --git a/_sources/quit.md.txt b/_sources/quit.md.txt new file mode 100644 index 000000000..10b887d91 --- /dev/null +++ b/_sources/quit.md.txt @@ -0,0 +1,7 @@ +quit +=== + +退出当前 Arthas 客户端,其他 Arthas 客户端不受影响。等同于**exit**、**logout**、**q**三个指令。 + +> 只是退出当前Arthas客户端,Arthas的服务器端并没有关闭,所做的修改也不会被重置。 + diff --git a/_sources/session.md.txt b/_sources/session.md.txt new file mode 100644 index 000000000..957faae5c --- /dev/null +++ b/_sources/session.md.txt @@ -0,0 +1,22 @@ +session +=== + +查看当前会话的信息,显示当前绑定的pid以及会话id。 + +> 如果配置了tunnel server,会追加打印 代理id、tunnel服务器的url以及连接状态。 +> +> 如果使用了staturl做统计,会追加显示statUrl地址。 + + + +### 使用参考 + +``` +$ session + Name Value +-------------------------------------------------- + JAVA_PID 14584 + SESSION_ID c2073d3b-443a-4a9b-9249-0c5d24a5756c + +``` + diff --git a/_sources/stop.md.txt b/_sources/stop.md.txt new file mode 100644 index 000000000..488d5f34e --- /dev/null +++ b/_sources/stop.md.txt @@ -0,0 +1,7 @@ +Stop +=== + +关闭 Arthas 服务端,所有 Arthas 客户端全部退出。 + +> 关闭Arthas服务器之前,会重置掉所有做过的增强类。但是用redefine重加载的类内容不会被重置。 + diff --git a/_sources/version.md.txt b/_sources/version.md.txt new file mode 100644 index 000000000..293fa6c6e --- /dev/null +++ b/_sources/version.md.txt @@ -0,0 +1,12 @@ +version +=== + +输出当前目标 Java 进程所加载的 Arthas 版本号 + +### 使用参考 + +``` +$ version + 3.5.1 +``` + diff --git a/_static/qrcode_gongzhonghao.jpg b/_static/qrcode_gongzhonghao.jpg new file mode 100644 index 000000000..9d0e54ab8 Binary files /dev/null and b/_static/qrcode_gongzhonghao.jpg differ diff --git a/cls.html b/cls.html new file mode 100644 index 000000000..7d6a19b36 --- /dev/null +++ b/cls.html @@ -0,0 +1,330 @@ + + + + + + + + + + + cls — Arthas 3.5.1 文档 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + + +
+ + + + + +
+ +
+ + + + + + + + + + + + + + + + + +
+ + + + +
+
+
+
+ +
+

cls

+

清空当前屏幕区域。

+
+

非终端模式下使用cls指令,会提示”Command ‘cls’ is only support tty session.”。

+
+
+ + +
+ +
+ + +
+
+ +
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/commands.html b/commands.html index 3f75e8a12..ad61e74b9 100644 --- a/commands.html +++ b/commands.html @@ -144,7 +144,18 @@
  • pwd
  • auth
  • options
  • -
  • Arthas 基础命令
  • +
  • Arthas 基础命令 +
  • WebConsole
  • @@ -268,18 +279,20 @@

    Arthas 基础命令

    -
      -
    • help——查看命令帮助信息

    • -
    • cls——清空当前屏幕区域

    • -
    • session——查看当前会话的信息

    • -
    • reset——重置增强类,将被 Arthas 增强过的类全部还原,Arthas 服务端关闭时会重置所有增强过的类

    • -
    • version——输出当前目标 Java 进程所加载的 Arthas 版本号

    • -
    • history——打印命令历史

    • -
    • quit——退出当前 Arthas 客户端,其他 Arthas 客户端不受影响

    • -
    • stop——关闭 Arthas 服务端,所有 Arthas 客户端全部退出

    • -
    • keymap——Arthas快捷键列表及自定义快捷键

    • + +
    diff --git a/contact-us.html b/contact-us.html index 41483d5bf..b2d843223 100644 --- a/contact-us.html +++ b/contact-us.html @@ -121,9 +121,10 @@
  • Release Notes
  • QQ群/钉钉群
    • 招聘
    • @@ -201,7 +202,7 @@

      招聘

      @@ -209,7 +210,12 @@

      使用疑问,意见可以直接在Issues里提出: https://github.com/alibaba/arthas/issues

      -

      钉钉群

      +

      微信公众号

      +

      欢迎关注公众号,获取Arthas项目的信息、源码分析、案例实践。

      +

      _images/qrcode_gongzhonghao.jpg

      +
      +
      +

      钉钉群

      • Arthas开源交流钉钉群: 21965291 ,搜索群号即可加入。

      diff --git a/en/.doctrees/cls.doctree b/en/.doctrees/cls.doctree new file mode 100644 index 000000000..ce74d57f1 Binary files /dev/null and b/en/.doctrees/cls.doctree differ diff --git a/en/.doctrees/environment.pickle b/en/.doctrees/environment.pickle index 39d666fab..4650fe4e2 100644 Binary files a/en/.doctrees/environment.pickle and b/en/.doctrees/environment.pickle differ diff --git a/en/.doctrees/faq.doctree b/en/.doctrees/faq.doctree index 56953134e..bdafd24dc 100644 Binary files a/en/.doctrees/faq.doctree and b/en/.doctrees/faq.doctree differ diff --git a/en/.doctrees/help.doctree b/en/.doctrees/help.doctree new file mode 100644 index 000000000..b9640a58d Binary files /dev/null and b/en/.doctrees/help.doctree differ diff --git a/en/.doctrees/history.doctree b/en/.doctrees/history.doctree new file mode 100644 index 000000000..2ea78abe2 Binary files /dev/null and b/en/.doctrees/history.doctree differ diff --git a/en/.doctrees/index.doctree b/en/.doctrees/index.doctree index 9fc9bd64d..7af0803dd 100644 Binary files a/en/.doctrees/index.doctree and b/en/.doctrees/index.doctree differ diff --git a/en/.doctrees/quit.doctree b/en/.doctrees/quit.doctree new file mode 100644 index 000000000..2b27b2658 Binary files /dev/null and b/en/.doctrees/quit.doctree differ diff --git a/en/.doctrees/session.doctree b/en/.doctrees/session.doctree new file mode 100644 index 000000000..032da6aa9 Binary files /dev/null and b/en/.doctrees/session.doctree differ diff --git a/en/.doctrees/stop.doctree b/en/.doctrees/stop.doctree new file mode 100644 index 000000000..91fafc91c Binary files /dev/null and b/en/.doctrees/stop.doctree differ diff --git a/en/.doctrees/version.doctree b/en/.doctrees/version.doctree new file mode 100644 index 000000000..fe6a2b68a Binary files /dev/null and b/en/.doctrees/version.doctree differ diff --git a/en/_sources/cls.md.txt b/en/_sources/cls.md.txt new file mode 100644 index 000000000..575d0fb12 --- /dev/null +++ b/en/_sources/cls.md.txt @@ -0,0 +1,7 @@ +cls +=== + +clear current console. + +> if not in tty mode,it will warn "Command 'cls' is only support tty session.". + diff --git a/en/_sources/faq.md.txt b/en/_sources/faq.md.txt index fd845c486..9e53ff5e2 100644 --- a/en/_sources/faq.md.txt +++ b/en/_sources/faq.md.txt @@ -48,7 +48,8 @@ No. ##### Can arthas view the value of a variable in memory? -No. But you can use some tricks to intercept the object with the `tt` command, or fetch it from a static method. +1. You can use [`vmtool`](vmtool.md) command. +2. You can use some tricks to intercept the object with the [`tt`](tt.md) command, or fetch it from a static method. ##### How to filter method with the same name? diff --git a/en/_sources/help.md.txt b/en/_sources/help.md.txt new file mode 100644 index 000000000..bc0b48d6e --- /dev/null +++ b/en/_sources/help.md.txt @@ -0,0 +1,87 @@ +help +=== + +show help message, the command can show all the commands that current Arthas server supports,or you can use the command to show the detail usage of another command. + +> [help command] equals [command -help],both is to show the detail usage of one command. + +### Options + +| Name | Specification | +| ------: | :-------------------------------------------------------- | +| | show all the commands that current Arthas server supports | +| [name:] | show the detail usage of one command | + +### Usage + +```bash +$ help + NAME DESCRIPTION + help Display Arthas Help + auth Authenticates the current session + keymap Display all the available keymap for the specified connection. + sc Search all the classes loaded by JVM + sm Search the method of classes loaded by JVM + classloader Show classloader info + jad Decompile class + getstatic Show the static field of a class + monitor Monitor method execution statistics, e.g. total/success/failure count, average rt, fail rate, etc. + stack Display the stack trace for the specified class and method + thread Display thread info, thread stack + trace Trace the execution time of specified method invocation. + watch Display the input/output parameter, return object, and thrown exception of specified method invocation + tt Time Tunnel + jvm Display the target JVM information + perfcounter Display the perf counter information. + ognl Execute ognl expression. + mc Memory compiler, compiles java files into bytecode and class files in memory. + redefine Redefine classes. @see Instrumentation#redefineClasses(ClassDefinition...) + retransform Retransform classes. @see Instrumentation#retransformClasses(Class...) + dashboard Overview of target jvm's thread, memory, gc, vm, tomcat info. + dump Dump class byte array from JVM + heapdump Heap dump + options View and change various Arthas options + cls Clear the screen + reset Reset all the enhanced classes + version Display Arthas version + session Display current session information + sysprop Display, and change the system properties. + sysenv Display the system env. + vmoption Display, and update the vm diagnostic options. + logger Print logger info, and update the logger level + history Display command history + cat Concatenate and print files + base64 Encode and decode using Base64 representation + echo write arguments to the standard output + pwd Return working directory name + mbean Display the mbean information + grep grep command for pipes. + tee tee command for pipes. + profiler Async Profiler. https://github.com/jvm-profiling-tools/async-profiler + stop Stop/Shutdown Arthas server and exit the console. + + +``` + +```bash + $ help dashboard + USAGE: + dashboard [-h] [-i ] [-n ] + + SUMMARY: + Overview of target jvm's thread, memory, gc, vm, tomcat info. + + EXAMPLES: + dashboard + dashboard -n 10 + dashboard -i 2000 + + WIKI: + https://arthas.aliyun.com/doc/dashboard + + OPTIONS: + -h, --help this help + -i, --interval The interval (in ms) between two executions, default is 5000 ms. + -n, --number-of-execution The number of times this command will be executed. +``` + diff --git a/en/_sources/history.md.txt b/en/_sources/history.md.txt new file mode 100644 index 000000000..18a48eabe --- /dev/null +++ b/en/_sources/history.md.txt @@ -0,0 +1,31 @@ +history +=== + +view command history. + +> history of commands will persisted in a file named history, so the history command can show all the history commands of current Arthas server ,but not only history in current session. + +### Options + +| Name | Specification | +| ---: | :----------------------------- | +| [c:] | clear all the history commands | +| [n:] | view the nearest 5 commands | + +### 使用参考 + +```bash +#view the nearest 3 commands +$ history 3 + 269 thread + 270 cls + 271 history 3 +``` + +```bash + #clear all the history commands + $ history -c + $ history 3 + 1 history 3 +``` + diff --git a/en/_sources/index.md.txt b/en/_sources/index.md.txt index 5ca05b577..0d2cf3181 100644 --- a/en/_sources/index.md.txt +++ b/en/_sources/index.md.txt @@ -30,6 +30,7 @@ Arthas is built to solve these issues. A developer can troubleshoot production i * Supports command line interactive mode, with auto-complete feature enabled. * Supports telnet and WebSocket, which enables both local and remote diagnostics with command line and browsers. * Supports profiler/Flame Graph +* Support get objects in the heap that are instances of the specified class. * Supports JDK 6+ * Supports Linux/Mac/Windows diff --git a/en/_sources/quit.md.txt b/en/_sources/quit.md.txt new file mode 100644 index 000000000..2deaec083 --- /dev/null +++ b/en/_sources/quit.md.txt @@ -0,0 +1,7 @@ +quit +=== + +exit the current Arthas client without affecting other clients. equals **exit**、**logout**、**q** command. + +> just exit Arthas client,it means Arthas server is not closed,so the changes you do will not be reseted. + diff --git a/en/_sources/session.md.txt b/en/_sources/session.md.txt new file mode 100644 index 000000000..3597c76b2 --- /dev/null +++ b/en/_sources/session.md.txt @@ -0,0 +1,21 @@ +session +=== + +examines the current session,show the current binded processId and the sessionId. + +> if exits tunnel server,it will also show agentId、tunnelServerUrl、connected status. +> +> if exits statUrl,it will also show statUrl. + + + +### Usage + +```bash +$ session + Name Value +-------------------------------------------------- + JAVA_PID 14584 + SESSION_ID c2073d3b-443a-4a9b-9249-0c5d24a5756c +``` + diff --git a/en/_sources/stop.md.txt b/en/_sources/stop.md.txt new file mode 100644 index 000000000..84b3f71cc --- /dev/null +++ b/en/_sources/stop.md.txt @@ -0,0 +1,7 @@ +Stop +=== + +terminates the Arthas server, all the Arthas clients connecting to this server will be disconnected. + +> the class redefined by redefine command will not be reset. + diff --git a/en/_sources/version.md.txt b/en/_sources/version.md.txt new file mode 100644 index 000000000..6619b897d --- /dev/null +++ b/en/_sources/version.md.txt @@ -0,0 +1,12 @@ +version +=== + +prints out Arthas's version. + +### Usage + +```bash +$ version + 3.5.1 +``` + diff --git a/en/_static/qrcode_gongzhonghao.jpg b/en/_static/qrcode_gongzhonghao.jpg new file mode 100644 index 000000000..9d0e54ab8 Binary files /dev/null and b/en/_static/qrcode_gongzhonghao.jpg differ diff --git a/en/cls.html b/en/cls.html new file mode 100644 index 000000000..fa1d0cc92 --- /dev/null +++ b/en/cls.html @@ -0,0 +1,264 @@ + + + + + + + + + + + cls — Arthas 3.5.1 documentation + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      + + + +
      + + + + + +
      + +
      + + + + + + + + + + + + + + + + + +
      + + + + +
      +
      +
      +
      + +
      +

      cls

      +

      clear current console.

      +
      +

      if not in tty mode,it will warn “Command ‘cls’ is only support tty session.”.

      +
      +
      + + +
      + +
      +
      + + +
      + +
      +

      + © Copyright 2018-2020, Alibaba Middleware Group, and contributors + +

      +
      + Built with Sphinx using a theme provided by Read the Docs. + +
      + +
      +
      + +
      + +
      + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/en/faq.html b/en/faq.html index 472ad1478..90999f62e 100644 --- a/en/faq.html +++ b/en/faq.html @@ -239,7 +239,10 @@

      Can arthas view the value of a variable in memory?

      -

      No. But you can use some tricks to intercept the object with the tt command, or fetch it from a static method.

      +
        +
      1. You can use vmtool command.

      2. +
      3. You can use some tricks to intercept the object with the tt command, or fetch it from a static method.

      4. +

      How to filter method with the same name?

      diff --git a/en/help.html b/en/help.html new file mode 100644 index 000000000..a6d238eb9 --- /dev/null +++ b/en/help.html @@ -0,0 +1,354 @@ + + + + + + + + + + + help — Arthas 3.5.1 documentation + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      + + + +
      + + + + + +
      + +
      + + + + + + + + + + + + + + + + + +
      + + + + +
      +
      +
      +
      + +
      +

      help

      +

      show help message, the command can show all the commands that current Arthas server supports,or you can use the command to show the detail usage of another command.

      +
      +

      [help command] equals [command -help],both is to show the detail usage of one command.

      +
      +
      +

      Options

      + + + + + + + + + + + + + + + + + +
      NameSpecification
      show all the commands that current Arthas server supports
      [name:]show the detail usage of one command
      +
      +

      Usage

      +
      $ help
      + NAME         DESCRIPTION
      + help         Display Arthas Help
      + auth         Authenticates the current session
      + keymap       Display all the available keymap for the specified connection.
      + sc           Search all the classes loaded by JVM
      + sm           Search the method of classes loaded by JVM
      + classloader  Show classloader info
      + jad          Decompile class
      + getstatic    Show the static field of a class
      + monitor      Monitor method execution statistics, e.g. total/success/failure count, average rt, fail rate, etc.
      + stack        Display the stack trace for the specified class and method
      + thread       Display thread info, thread stack
      + trace        Trace the execution time of specified method invocation.
      + watch        Display the input/output parameter, return object, and thrown exception of specified method invocation
      + tt           Time Tunnel
      + jvm          Display the target JVM information
      + perfcounter  Display the perf counter information.
      + ognl         Execute ognl expression.
      + mc           Memory compiler, compiles java files into bytecode and class files in memory.
      + redefine     Redefine classes. @see Instrumentation#redefineClasses(ClassDefinition...)
      + retransform  Retransform classes. @see Instrumentation#retransformClasses(Class...)
      + dashboard    Overview of target jvm's thread, memory, gc, vm, tomcat info.
      + dump         Dump class byte array from JVM
      + heapdump     Heap dump
      + options      View and change various Arthas options
      + cls          Clear the screen
      + reset        Reset all the enhanced classes
      + version      Display Arthas version
      + session      Display current session information
      + sysprop      Display, and change the system properties.
      + sysenv       Display the system env.
      + vmoption     Display, and update the vm diagnostic options.
      + logger       Print logger info, and update the logger level
      + history      Display command history
      + cat          Concatenate and print files
      + base64       Encode and decode using Base64 representation
      + echo         write arguments to the standard output
      + pwd          Return working directory name
      + mbean        Display the mbean information
      + grep         grep command for pipes.
      + tee          tee command for pipes.
      + profiler     Async Profiler. https://github.com/jvm-profiling-tools/async-profiler
      + stop         Stop/Shutdown Arthas server and exit the console.
      + 
      + 
      +
      +
       $ help dashboard
      +  USAGE:
      +   dashboard [-h] [-i <value>] [-n <value>]
      +
      + SUMMARY:
      +   Overview of target jvm's thread, memory, gc, vm, tomcat info.
      +
      + EXAMPLES:
      +   dashboard
      +   dashboard -n 10
      +   dashboard -i 2000
      +
      + WIKI:
      +   https://arthas.aliyun.com/doc/dashboard
      +
      + OPTIONS:
      + -h, --help                              this help
      + -i, --interval <value>                  The interval (in ms) between two executions, default is 5000 ms.
      + -n, --number-of-execution <value>       The number of times this command will be executed.
      +
      +
      +
      + + +
      + +
      +
      + + +
      + +
      +

      + © Copyright 2018-2020, Alibaba Middleware Group, and contributors + +

      +
      + Built with Sphinx using a theme provided by Read the Docs. + +
      + +
      +
      + +
      + +
      + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/en/history.html b/en/history.html new file mode 100644 index 000000000..ad0e7a2da --- /dev/null +++ b/en/history.html @@ -0,0 +1,298 @@ + + + + + + + + + + + history — Arthas 3.5.1 documentation + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      + + + +
      + + + + + +
      + +
      + + + + + + + + + + + + + + + + + +
      + + + + +
      +
      +
      +
      + +
      +

      history

      +

      view command history.

      +
      +

      history of commands will persisted in a file named history, so the history command can show all the history commands of current Arthas server ,but not only history in current session.

      +
      +
      +

      Options

      + + + + + + + + + + + + + + + + + +
      NameSpecification
      [c:]clear all the history commands
      [n:]view the nearest 5 commands
      +
      +

      使用参考

      +
      #view the nearest 3 commands
      +$ history 3
      +  269  thread
      +  270  cls
      +  271  history 3
      +
      +
       #clear all the history commands
      + $ history -c
      + $ history 3
      +  1  history 3
      +
      +
      +
      + + +
      + +
      +
      + + +
      + +
      +

      + © Copyright 2018-2020, Alibaba Middleware Group, and contributors + +

      +
      + Built with Sphinx using a theme provided by Read the Docs. + +
      + +
      +
      + +
      + +
      + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/en/index.html b/en/index.html index 3e0282f49..93725b93d 100644 --- a/en/index.html +++ b/en/index.html @@ -208,6 +208,7 @@
    • Supports command line interactive mode, with auto-complete feature enabled.

    • Supports telnet and WebSocket, which enables both local and remote diagnostics with command line and browsers.

    • Supports profiler/Flame Graph

    • +
    • Support get objects in the heap that are instances of the specified class.

    • Supports JDK 6+

    • Supports Linux/Mac/Windows

    diff --git a/en/objects.inv b/en/objects.inv index b0994f612..1b25e33ad 100644 Binary files a/en/objects.inv and b/en/objects.inv differ diff --git a/en/quit.html b/en/quit.html new file mode 100644 index 000000000..2dd919712 --- /dev/null +++ b/en/quit.html @@ -0,0 +1,264 @@ + + + + + + + + + + + quit — Arthas 3.5.1 documentation + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    + + + + + +
    + +
    + + + + + + + + + + + + + + + + + +
    + + + + +
    +
    +
    +
    + +
    +

    quit

    +

    exit the current Arthas client without affecting other clients. equals exitlogoutq command.

    +
    +

    just exit Arthas client,it means Arthas server is not closed,so the changes you do will not be reseted.

    +
    +
    + + +
    + +
    +
    + + +
    + +
    +

    + © Copyright 2018-2020, Alibaba Middleware Group, and contributors + +

    +
    + Built with Sphinx using a theme provided by Read the Docs. + +
    + +
    +
    + +
    + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/en/searchindex.js b/en/searchindex.js index 59aa8b024..c65b810e7 100644 --- a/en/searchindex.js +++ b/en/searchindex.js @@ -1 +1 @@ -Search.setIndex({docnames:["README","advanced-use","advice-class","agent","arthas-properties","async","auth","base64","batch-support","cat","classloader","commands","contact-us","dashboard","docker","download","dump","echo","faq","getstatic","grep","groovy","heapdump","http-api","idea-plugin","index","install-detail","jad","jvm","keymap","logger","manual-install","mbean","mc","monitor","ognl","options","perfcounter","profiler","pwd","quick-start","redefine","release-notes","reset","retransform","save-log","sc","sm","spring-boot-starter","stack","start-arthas","sysenv","sysprop","tee","thread","trace","tt","tunnel","vmoption","vmtool","watch","web-console"],envversion:{"sphinx.domains.c":1,"sphinx.domains.changeset":1,"sphinx.domains.citation":1,"sphinx.domains.cpp":1,"sphinx.domains.javascript":1,"sphinx.domains.math":2,"sphinx.domains.python":1,"sphinx.domains.rst":1,"sphinx.domains.std":1,sphinx:56},filenames:["README.md","advanced-use.md","advice-class.md","agent.md","arthas-properties.md","async.md","auth.md","base64.md","batch-support.md","cat.md","classloader.md","commands.md","contact-us.md","dashboard.md","docker.md","download.md","dump.md","echo.md","faq.md","getstatic.md","grep.md","groovy.md","heapdump.md","http-api.md","idea-plugin.md","index.md","install-detail.md","jad.md","jvm.md","keymap.md","logger.md","manual-install.md","mbean.md","mc.md","monitor.md","ognl.md","options.md","perfcounter.md","profiler.md","pwd.md","quick-start.md","redefine.md","release-notes.md","reset.md","retransform.md","save-log.md","sc.md","sm.md","spring-boot-starter.md","stack.md","start-arthas.md","sysenv.md","sysprop.md","tee.md","thread.md","trace.md","tt.md","tunnel.md","vmoption.md","vmtool.md","watch.md","web-console.md"],objects:{},objnames:{},objtypes:{},terms:{"001018m":55,"004539m":55,"004935m":55,"005198m":55,"005372m":55,"005428m":55,"005778m":55,"006405m":55,"006783m":55,"008747m":55,"010317m":55,"010473m":55,"011636m":55,"012257m":55,"012416m":40,"013777m":55,"01419m":55,"015643m":55,"01696m":60,"017407m":55,"019768m":55,"020221m":55,"021911m":55,"023715m":55,"028624m":55,"030432m":55,"033735m":55,"034411m":55,"034568m":55,"0353m":60,"03752m":55,"039s":1,"045534m":55,"052877m":60,"05447m":55,"059839m":55,"060843m":60,"061462m":55,"068692m":43,"06941m":55,"076457m":55,"078946m":55,"07b":13,"084025m":55,"086622m":55,"08a":46,"094064m":55,"0_132":[27,40],"0_162":40,"0_51":52,"0_60":10,"0m0":1,"0ms":54,"0vubjprippkkuz7dyzyqoktranj4ungh":6,"0x0":51,"0x19":51,"0x1f5":51,"0x34":51,"0x4b67cf4d":56,"0x7699a589":56,"1000m":[13,54],"100m":[13,55],"100mb":30,"105228m":55,"10m":55,"1102230246251565e":[19,35,60],"113929m":55,"1170m":54,"119367m":55,"120s":34,"123934m":55,"127922m":55,"128518m":43,"1294m":55,"12m":40,"136007m":40,"1365m":40,"145825m":55,"14dad5dc":43,"14m":40,"152743m":55,"155m":40,"167786m":55,"168897m":60,"173966m":60,"178583m":55,"1820m":40,"182813m":55,"185203m":40,"18m":13,"19469ea2":59,"1b6d3586":10,"1ms":54,"200m":[54,60],"202c":23,"2048k":13,"20m":40,"232204a1":[27,55],"232606m":55,"232887m":55,"234537m":55,"23m":40,"240m":40,"241735m":23,"256color":51,"25s":36,"272s":13,"276874m":55,"277392m":60,"280502m":60,"281s":1,"28ea5898":35,"29fafb28":54,"2a139a55":30,"2b085b5d":23,"2bdd9114":27,"2eaa1027":[19,60],"2gb":30,"301ec38b":35,"303498m":60,"30m":13,"311395m":40,"31a6493":54,"327a647b":[33,41,44],"32m":40,"357742m":55,"3648e874":5,"36m":13,"389634m":55,"3d4eac69":[10,16,19,40,46,49,55],"3fe55d741882":57,"3ms":54,"401m":54,"407b":23,"409446m":55,"4096m":13,"414993m":60,"41cf53f9":60,"42ac":51,"42d3":23,"43de":23,"45df64fc":21,"46m":13,"472067c7":35,"473f":5,"477882m":60,"47m":13,"48f4":57,"491k":13,"492551m":55,"4a00":57,"4b85612c":35,"4c0df5f8":27,"4de6":24,"4f023edb":59,"4rel":30,"50m":13,"522b4":46,"522b408a":60,"530255m":60,"546aeec1":54,"549379m":55,"572s":1,"584m":54,"587833m":60,"58ef25a97948":24,"590102m":43,"5ae4e5fbab8b4e529ac404f260d4e2d1_1":23,"5b0e2d00":21,"5e69":5,"5level":30,"60bc264d":51,"617465m":55,"6367e55a78a2":57,"65m":40,"66350f69":[10,16,40,46],"66m":13,"672m":40,"6849794470754667710l":27,"68b31f0a":10,"6951a712":27,"69dcaba4":27,"69m":13,"6e51ad67":27,"6fafc4c2":27,"701b744f971e":23,"705196m":55,"70m":13,"7127ee12":54,"715367m":40,"716391m":55,"725be470":54,"75b84c92":59,"7f31245a":27,"7f89660b079b":5,"7f9a81e8":35,"810591m":55,"838077m":55,"849713m":55,"852594m":55,"85m":40,"883b":23,"8b39":23,"8ecb9cb7c7804d5d92e258b23d5245cc_1":23,"8f7f6ad7bc2d4cb5aa57a530927a95cc_2":23,"94766d3c":23,"955dbd1325334a84972b0f3ac19de4f7_2":23,"961441m":60,"969732m":40,"98aee3ccbefb":23,"9eed":5,"9fa3":24,"\u4e2d\u6587\u6587\u6863":25,"boolean":[2,19,35,60],"break":[21,23],"byte":[1,27,28,42],"case":[2,4,5,20,25,42,48,57],"catch":[40,41,44],"char":[27,29],"class":[0,2,11,13,14,16,19,21,23,25,27,28,30,33,34,35,42,46,47,48,49,52,56,59],"default":[1,3,4,6,8,13,16,18,20,21,23,27,29,30,32,34,35,36,38,42,43,45,46,47,49,50,51,54,55,56,57,58,59,60,61],"enum":19,"export":[14,37],"final":[2,8,27,40,54],"function":[23,36,40,41,44,55,60],"import":[25,27,40,48],"instanceof":[18,56],"int":[27,40,41,44,46],"long":[19,23,27,30,35,49,54,55,60],"new":[23,27,38,40,41,44,48,54,55],"null":[2,5,10,16,23,27,30,35,40,44,60],"public":[2,10,21,27,40,41,44,46,47,48],"return":[0,1,2,18,21,23,25,34,35,39,40,41,44,47,56],"static":[1,18,19,21,27,35,40,41,42,44,46,48,56],"super":[10,27,46],"switch":[18,21,31,32,38],"throw":[2,21,27,40,41,42,44,55,56],"true":[2,4,6,13,14,18,23,27,30,40,41,44,45,46,52,54,55,56,58,60],"try":[0,1,6,14,18,23,25,31,40,41,44,54],"var":[8,22,51,52],"void":[2,21,27,40,41,44,48],"while":[16,19,21,23,27,30,32,34,40,41,42,44,47,54,60],And:25,But:[18,60],For:[1,3,5,6,10,13,16,18,19,23,27,30,31,35,36,38,44,48,55,57],IDE:25,Its:34,Jps:1,Pls:[26,31,40,45,49,55],QPS:[13,25],Such:23,The:[1,2,3,4,5,6,10,13,16,19,21,23,26,27,29,30,31,33,35,36,40,41,44,45,46,47,49,50,54,55,56,59,60,61],Then:[50,59],There:[1,2,21,41,49,55,60],These:[13,43],Use:[6,8,23,29,31,36,40,51,52,55],Useful:25,Using:[6,56,57,60],With:[0,8,27,56,60],Yes:18,_162:40,__cf_user_text_encod:51,a577:57,a7e4:51,aaa:[19,46],ab35:23,abc:7,abl:[5,8,36,40],abort:[21,34,36,40,43,49,55,56,60],about:[2,12,30],abov:[2,5,18,23,25,26,31,40,41,45,55,57],absolut:21,abstractconnectionhandl:54,abstracthttp11processor:54,abstractprotocol:54,abstractqueuedsynchron:54,accept:[8,23,29],access:[19,31,50,54,57,61],accompani:23,accord:[5,23,54],account:50,accur:55,achiev:[5,19,29,55],acquir:54,acquiresharedinterrupt:54,action:[6,59],actionarg:38,activ:[13,28,36],actuat:[48,57],add:[6,31,37,40,41,42,48,55,57],added:[41,44],addend:[19,35,60],adding:[25,55],addit:[25,30,55],address:[50,57],admin:[1,6,16,27,31,40,50,51],adopt:25,advanc:[25,40,49,50,55,56,60],advantag:1,advic:[2,49,55,56],advisor:56,af24:23,af85b69f93f8:51,affect:[10,11,16,19,21,23,27,28,33,34,36,40,43,45,46,47,49,55,56,60],after:[1,6,12,13,20,21,23,26,33,36,38,41,44,45,50,55,57,61],afterreturn:21,afterthrow:21,afterward:56,again:[44,56],agent:[10,18,31,35,42,48,57],agent_id:57,agentid:[4,57],aggreg:55,aitmilli:58,ali:51,alibaba:[12,13,15,18,19,21,25,26,30,38,42,49,55,57,61],aliti:36,aliyun:[1,14,20,23,26,31,40,51,52,53,57],all:[0,1,2,5,10,14,18,21,23,25,29,31,32,37,40,42,46,47,48,49,50,55,57,60],alloc:[23,38],allow:[1,21,23,41,44,50],allow_input:23,allow_interrupt:23,alpin:14,alreadi:1,also:[1,5,6,8,13,23,33,43,46,48,49,55,57],altern:[21,45,57],alwai:25,amd64:[14,28],among:25,amount:56,analysi:[36,45,54],analyz:[0,10,18],andrei:38,angl:[49,55],ani:[8,26,29,31,60],annot:[10,46,47],annotatedcommandimpl:54,annotationconfigembeddedwebapplicationcontext:59,anoth:[54,56],ansform:36,ansi:1,ant:14,anywai:45,apach:[8,13,27,35,49,50,54,55],apart:0,api:[1,3,25,52],app:[23,27,30,51,57],appclassload:[10,16,19,27,30,35,40,41,43,44,46,49,55,59],appear:[18,54,55],append:[40,53,55],appenderref:30,appl:51,apple_pubsub_socket_ren:51,applic:[3,4,14,25,30,36,37,38,51,54,57],applicationcontext:59,applicationfilterchain:54,appnam:[4,48,57],approach:25,apt:14,arch:[28,52],arg:[27,40,41,44,48],argument:[0,1,17,23,28,31,38],arrai:[2,23,42,56,59],arrang:54,arraylist:[19,23,27,35,40,56,60],arrow:29,artha:[0,3,6,7,8,10,12,13,16,19,20,21,22,23,24,27,28,30,33,34,35,36,41,42,43,44,45,49,51,52,53,54,55,56,58,59,60],arthasag:48,arthasattachexampl:48,arthasclassload:[10,35],arthasconfigmap:48,arthasmethod:2,artifactid:48,asia:52,asm:36,aspect:[1,2,60],ass:36,assembl:31,assign:23,assist:[0,27],assum:48,async:[8,30,38,42],async_exec:23,asyncappend:[30,40],asynchron:[5,8,30,42],atomiclong:[19,35,60],attach:[1,3,6,14,31,40,42,48,50,54,57,61],attachnotsupportedexcept:18,attempt:44,attent:[1,23],attribut:[23,32,38],auth:[1,11,23],authent:54,authenticatorbas:54,auto:[25,29,42,51,52],autojump:51,autojump_error_path:51,autojump_sourc:51,automat:[4,5,23,38,56],aux:31,avail:[2,57],averag:[13,28,34],avg:34,avoid:[5,23,42,54,56,59],await:54,awk:23,awt:52,b03:52,b09:28,b09f1353:23,b16:52,b2c5c1d5aa2a:23,b69d6db7a869:23,bac0:23,bacaus:1,back:5,background:[1,8,34,36,45],backward:29,badbound:[19,35,60],badrang:[19,35,60],badsiz:[19,35,60],ball:42,bar:23,base64:[1,6,11,41,44],base:[18,23,25,31,37,54,56],bash:[14,15,23,51],basic:[6,38,54],bat:50,batch:[1,23,31,36,42],bbb:[7,19],bc5b:57,bean:56,beauti:42,becaus:[13,14,41,44,54,55,57],becom:[13,23],been:[5,23,41,43,55],befor:[0,20,21,23,31,36,42,45],begin:[18,29],behavior:[16,23,45,46,49,55],behind:27,being:[23,56,60],below:[18,36,38,40,41,44,45],beta:42,better:[1,27,31,42,56,60],between:[1,13,38],bin:[14,31,50,51],binari:[1,22],bio:54,bit:[28,37,52],block:[42,54,55,60],blockpol:13,bodi:23,bool:36,boom:42,boot:[4,6,14,23,25,28,30,31,33,35,40,42,52,57,59],bootstrap:[26,31,50],bootstrapclassload:[10,35,42],borrow:5,both:[4,23,25,38,41,42,48],bottleneck:55,bound:[19,35,59,60],branch:38,breakpoint:38,brief:40,bring:1,browser:[1,6,23,25,57],btrace:21,bug:[36,42,52],buglevel:52,bugreport:52,built:[25,38],bus:38,busi:[0,34,54],busiest:42,byarrai:27,bypass:[41,44],bytecod:[13,16,18,41,44],c016:24,cach:[5,23,28,36,38,45],calcul:[1,23,55],call:[2,23,35,41,42,44,49,54,55],caller:25,callsiteform:36,camel:[4,48],can:[0,1,2,4,5,6,8,10,12,13,14,16,19,23,25,26,27,28,29,30,31,32,33,35,36,38,40,41,42,44,46,47,48,49,50,54,55,56,57,59,60,61],candid:51,cannot:[5,8,18,23,25,40,41,42,60],card:16,case_insensitive_ord:27,caseinsensitivecompar:27,cat:[1,7,8,11],catalina:[13,50,54],categori:[27,42],caus:42,caution:[10,36],certain:42,certif:14,ces:52,cfr:[27,40],cgraphicsenviron:52,chanc:41,chang:[1,5,10,16,19,23,25,30,35,52],charact:[1,29,42],charat:[40,47],charsequ:27,charset:[27,28,30,52],check:[0,1,10,16,18,19,25,28,30,35,37,42,54],checkbound:[27,47],child:36,chines:[25,42],choos:50,chrome:[23,38],cla:36,class_nam:19,class_path:23,classa:[33,55],classb:[33,55],classcount:23,classdump:16,classfiletransform:44,classic:30,classload:[2,11,16,19,25,33,35,40,41,42,46,47,56,60],classloaderclass:[10,16,19,27,30,33,35,41,44,46,47,59],classloaderhash:[10,30,46,59],classloadernam:23,classnam:[19,23,43,44,59],classpattern:44,clazz:2,clean:[14,45],cleaner:54,clear:[1,11,13,29,44],click:[15,26,31,38],client:[11,14,23,40,57],clientpol:13,close:[1,11],close_sess:23,cls:[1,11,37],cmsabortableprecleanw:58,cmstriggerinterv:58,cmswaitdur:58,cnt:[10,16,19,21,27,28,33,34,40,43,45,46,47,49,55,56,60],code:[0,1,10,23,25,27,28,34,40,41,44,46,47,49,51,55,56,59],code_cach:40,codecachemanag:28,codeheap_:13,codepointat:47,codepointbefor:47,codepointcount:47,codesourc:30,collect:54,collectioncount:28,collectiontim:28,collector:28,color:[1,42],colorfgbg:51,colorterm:51,com:[1,3,5,10,12,14,15,18,19,20,21,23,24,26,30,31,33,34,35,38,40,41,42,44,46,48,49,51,52,53,54,55,56,57,59,60,61],combin:[6,18],come:[49,54,55,56],comm:36,command:[1,2,4,6,8,13,14,15,16,19,20,21,25,26,27,29,30,32,33,34,36,42,46,47,49,50,52,53,54,55,56,57,59,60],commandlin:14,commandprocesstask:54,commerci:55,commit:28,common:[8,14,35,49,54,55],commun:[1,24],compar:[21,23,27,54,55,60],compareto:47,comparetoignorecas:47,compat:23,compil:[1,13,25,28,33,36,41,42,44,52],compilerthread0:[13,54],complet:[4,23,25,29,31,40,41,42,44,51,52],complex:[19,23,56],complic:60,compress:28,comput:[54,57],concat:47,concaten:[1,9],concret:29,concurr:[27,40,54,59],concurrenthashmap:59,condit:[1,18,23,55,56],conf:29,confetti:42,config:4,configmap:48,configur:[3,18,29,30,57],confirm:60,conflict:[4,5,25,41,42,57],connect:[1,5,6,11,14,31,40,50,55],connector:54,consid:[8,55],consist:[18,41,44,54],consol:[5,27,30,36,45,57],consoleappend:30,constructor:34,consum:[23,54,55],consumerid:23,consumpt:55,cont:52,contact:25,contain:[5,21,23,47],containerid:14,content:[10,13,23,38,40,41,44,51,52,53],contentequ:47,context:[20,38,42,59],contextloadfiltervalv:54,contin:27,continu:[5,23,40,45],contribut:25,control:[1,23,36,38,45],conveni:[1,10,16,19,27,30,35,46,57],convert:[41,44],copi:[1,14,23,26,28,29,31,41,44,46],copyright:38,copyvalueof:47,core:[21,30,31,42,49,54,55,56,59],corpor:[28,52],correctli:23,correspond:[10,16,19,21,23,27,30,35,44],cost:[0,10,16,19,21,23,27,28,33,34,36,40,42,43,45,46,47,56],could:[25,31],count:[1,5,13,20,28,32,34,36,40,42,44,54,55,56,60],countdownlatch:54,counter:[1,37],countri:52,coyot:54,coyoteadapt:54,cpp:38,cprinterjob:52,cpu:[13,25,38,40,52],cpuusag:54,crash:36,creat:[5,21,22,28,41,44,56],criteria:1,critic:[56,60],cst:5,ctrl:[5,13,21,23,29,34,36,40,43,49,55,56,60],curl:[6,23,26,31,40],current:[1,2,5,6,10,11,13,16,18,19,23,26,28,29,30,31,35,37,40,45,46,49,50,51,54,55,60],currentthread:60,cursor:29,custom:[11,42],cycl:[34,38],dae:40,daemon:[13,28,40,54],daemonthreadcount:32,dai:[1,36,45],dal:21,dao:21,darwin:51,dashb:40,dashboard:[1,8,11,42,54],data:[6,13,32,49,52,53,54,55,59,60],date:5,dcach:38,deadlock:28,deal:23,deb:26,debug:[25,30,36],declar:47,decod:[1,27],decompil:[1,25,41,42,44],decompress:[3,4],deduc:55,deeper:55,defa:36,defin:[1,33,41,56],delai:42,delegatingclassload:[10,42],delet:[14,23,26,29,41,42],deleteal:44,deletecharat:40,delimit:[23,57],delta:13,delta_tim:[13,54],deltatim:54,demo:[10,16,18,19,23,27,28,33,34,35,38,40,41,44,46,48,51,59],demoapp:[4,57],demoapp_urjz5l48rpbr2ali5k4v:57,depend:48,depth:[46,60],der:51,descend:54,describ:25,descript:[2,23,29,33,36,54,61],design:34,desir:[23,36,46],destin:16,destroi:[1,21,23],detail:[18,21,25,33,46,47,49,55,56],determin:60,devel:14,develop:[6,8,24,25,41,50],devic:53,diagnos:[31,54,57],diagnosi:14,diagnost:[0,1,23,25,55,58],differ:[4,13,23,25,32,38,41,48,49,54,55,56,57,60],difficult:[49,55,57],difficulti:56,dir:[36,52],direct:[41,42,44],directli:[2,3,5,6,12,42,46],directori:[1,3,4,5,15,16,26,29,31,33,38,39,57],disabl:[23,36,42,46,60],disappear:25,disconnect:[1,11,40,45],discov:55,discuss:[12,38],disk:45,dispatch:[40,54],displai:[1,13,29,51,52,54,58],doacquiresharedinterrupt:54,doc:[1,3,6,14,20,23,24,40,51,52,53,57],docker:25,document:[23,38,41,42],doe:[14,23,44,54,57],doesn:[41,44,55],dofilt:54,doget:54,doing:[5,45],don:60,done:23,doubl:[19,23,35,60],double_unit:[19,35,60],down:[29,55],download:[3,4,12,18,25,26,31,42],downtim:25,dpkg:26,drill:55,dtlb:38,due:[36,41,56],dump:[1,11,36,38,42],dumpcollaps:38,dumpflat:38,dumpthreads0:54,dumptrac:38,duplic:42,durat:38,dure:[23,54,55],dwmmjsqsll:51,dynam:[3,16,19,27,30],e7b0:57,each:[8,23,36,50,54,55,56],eagleey:54,eagleeyefilt:54,ean:36,easi:[14,60],easier:0,easili:[0,25,60],echo:[1,7,11,23],ect:36,eden:28,edit:[13,41,44],editor:[41,44],ee3bc004:23,effect:[1,5,23,29,32,34,38,41,44,50,55,56],effectivelevel:30,either:60,element:23,embed:59,empti:2,enabl:[20,21,25,29,36,43,45,55],enclos:42,encod:[1,30,42,52],encount:[25,38,42,60],end:[2,8,20,23,29,38,41,44,54],endian:52,endor:52,endors:52,endpoint:57,endswith:47,enhanc:[1,11,21,42,43,55],ensur:[8,23,25],enter:[6,23,26,29,31,40,50,55],entri:31,entryset:19,env:[4,14,51],environ:[1,25,35,41,50,52],eof:23,equal:[47,55],equalsignorecas:47,equival:[29,46,50],error:[6,13,18,23,27,42,51,58],errorreportvalv:54,escap:[1,23,42],etc:[13,25,38,55],evalu:60,even:[0,1,19,23,25,42,45,56],event:[5,37],ever:0,everi:[40,41,44],exact:[36,46,55,56,60],examin:[1,5,11,52],exampl:[1,3,5,6,8,13,18,20,21,23,30,33,36,38,40,41,42,43,44,48,49,50,51,52,53,54,55,57,60],exce:[5,49,55],except:[0,1,2,21,23,25,40,41,42,44,46,47,55,56],exec:[6,14,23,54],exectimeout:23,execut:[1,2,5,6,8,10,13,16,21,26,27,30,31,32,35,36,40,41,42,44,45,46,47,49,50,54,55,56,60],executor:54,exist:[14,50],exit:[1,2,5,11,13,23,41,42,44,49,55,56,60],exp:56,expand:[23,35,42,60],expans:59,expect:25,expens:55,experi:54,experss:23,expert:31,explain:23,explicitli:[1,8,38],expos:48,express:[1,10,16,18,20,21,23,27,35,41,42,43,46,47,55],ext:52,extclassload:[10,16,27,40,46,59],extend:27,extens:[10,52],extent:55,extern:[1,36,41,44],extra:56,extract:[10,16,19,23,30,35,57],f1dca050:57,f7273eb5:57,fa77c7b4:24,facilit:[16,19,27,30],fact:8,factor:40,fail:[23,31,33,34,41,42,44,56,60],failur:[34,42],fals:[2,10,13,19,23,27,28,35,36,40,43,45,46,49,52,54,55,56,58,60],faq:25,fat:[30,57],fault:38,feasibl:56,featur:[42,55],feedback:25,fetch:18,ff267334bb65:28,field:[18,19,23,35,36,41,44,46,56],field_nam:[19,60],file:[1,3,4,5,6,8,9,10,16,25,26,29,30,31,33,36,38,42,45,52,53,55,59],filenam:[8,23],filenamepattern:30,filepath:21,fill:61,filter:[1,2,19,23,42,54],filterchainadapt:54,find:[4,15,25,26,31,40,54],finish:21,first:[10,16,19,29,30,35,41,42,44,55,60],fix:[14,25,42,55],flag:[2,36],flame:[25,38],flaw:55,flexibl:19,flow:42,fly:[3,25],focu:[38,55],folder:[22,51,52],follow:[5,13,23,25,26,30,31,37,40,48,50,55,57],foo:23,forcegc:[1,59],forcibl:[1,23],forefullgc:58,foreground:[1,23],format:[1,13,21,22,36,40,41,42,44,46,47,52,55],forward:[29,57],found:[27,49,50,55,57,59],four:60,fqcn:[27,35],fragment:56,frame_buffer_overflow:38,framework:27,freez:18,frequent:13,fri:5,friendli:42,from:[0,1,2,3,4,8,10,12,13,14,18,21,25,26,27,29,31,32,34,40,45,46,47,48,49,52,53,55,61],full:[3,18,46,49],fundament:[18,56],further:[1,34,36,40],furthermor:34,futur:41,futuretask:54,g1_eden_spac:13,g1_old_gen:13,g1_old_gener:13,g1_survivor_spac:13,g1_young_gener:13,game:[1,3,10,14,18,27,41,44,46,49,55,56,60],garbag:28,gehui:5,gen:28,gener:[1,6,16,19,23,27,28,30,40,57],get:[1,8,14,26,35,49,54,56],getbeandefinitionnam:59,getbyt:47,getchar:47,getclazz:21,getcontextclassload:60,getfield:55,getinst:1,getinternalthreadcputim:54,getload:56,getmessag:[40,41,44,55],getmethod:21,getnam:[21,55],getparam:21,getproductbyid:21,getproperti:35,getsampl:38,getsimplenam:21,getstat:[1,11,42],getter:2,getthreadcputim:54,getthreadinfo:54,gib:28,git:[8,50],github:[12,18,24,25,26,38,42,49,55,57,61],given:[1,5],global:[1,36,42,45],gmt:56,gopherproxyset:52,grammar:[2,27,49,55],grant:50,graph:[25,38],graphicsenv:52,grasp:0,great:10,greater:[13,19,35,60],grep:[1,11,23,31,40,53],group2:12,group:[13,40,54],groupid:48,guarante:57,guid:[2,19,35,49,55,56,60],handi:[1,10,55],handl:54,handler:[40,54],hang:[23,36],happen:[1,23],hard:56,hardli:1,has:[5,21,23,26,50,55],hash:[10,27,46,47],hashcod:[10,16,19,27,30,35,41,47,56],hashmap:48,hasnext:40,have:[0,4,5,13,16,19,25,27,30,34,40,41,43,49,55,57,61],havenextnextgaussian:[19,35,60],heap:[1,13,22,28,40],heapdump2019:22,heapdump:[1,11,18],heapdumpafterfullgc:58,heapdumpbeforefullgc:58,heapdumponoutofmemori:58,heapdumppath:58,heart:31,hello:[17,35],help:[0,1,6,8,11,20,23,25,27,31,42,43,51,52,53,54,55,56,60,61],hengyunabc:[10,14,30],here:[1,8,14,16,19,30,49,54,55,56,60,61],hierarchi:25,higher:[6,13,55],highest:4,highlight:27,histori:[1,11,23,29,56],hit:[23,40,50],hold:54,hom:40,home:[1,10,13,14,25,26,29,31,35,36,40,45,51,52],hot:[13,41],hotspot:[28,38,52],hotspotthreadmbean:54,hour:36,how:[1,2,12],howev:[16,19,25,27,30],hprof:[1,22],hsehdfsfghhwertyfad:48,html:[1,3,23,49,55,57],http11:54,http:[1,3,12,13,14,15,18,20,24,25,26,31,38,40,42,48,49,51,52,53,54,55,57,61],httpport:4,httpservlet:54,hub:14,huge:10,ibatisproductdao:21,idea:[5,25,49,50],ignor:[5,20,42,55],illeg:2,illegalargumentcount:[27,40,41,44,46,56,60],illegalargumentexcept:[23,40,55,56,60],imag:38,immedi:[23,34],impact:[34,44],impl:54,implement:[1,5,21,27],imposs:25,improv:[23,42],inaccess:25,inaccur:[54,55],includ:[8,13,30,36,41,42,46,54,60],inconsist:18,incorrect:42,increas:[38,54,55],increment:[13,54],index:[1,56],indexof:47,indexofsupplementari:47,indic:[2,5,23,54,55],ineffici:25,inf:[10,59],info:[1,10,14,28,30,37,40,42,46,52,57,59],inform:[1,10,11,13,16,18,19,21,26,27,31,32,34,35,37,40,46,47,49,55,57,61],inherit:[1,42],init:[18,28,47,55],init_sess:23,initi:[23,42],inject:[1,42],inner:[19,41,42,44],innocuousthrea:54,input:[1,7,16,19,23,27,28,30,34,36,50,53,57],inputrc:29,inputstatu:23,insensit:20,insid:[1,25,40,49,55],instal:[25,42],instanc:[2,10,16,19,27,30,35,40,59],instead:[45,50],instruct:[38,55],instrument:[3,41,44,55],insuffici:13,integ:[18,23,34,40,41,42,44,55,56,60],interact:[25,26,31,42],intercept:18,interest:55,interf:50,interfac:[10,21,23,26,31,36,46,59],intern:[16,19,30,35,37,42,47,54],internaldofilt:54,interpret:27,interru:40,interrupt:[13,54],interrupt_job:23,interruptedexcept:[27,40,41,44],interv:[13,32,38,42,56],introduc:[36,41,42],introduct:54,invert:20,investig:42,invis:47,invoc:[1,25,34],invocati:36,invok:[34,36,42,54,55,56,60],involv:36,irreproduc:25,is_daemon:[43,49,55],isalist:52,isannot:[10,46],isanonymousclass:[10,46],isarrai:[10,46],isbefor:2,isblank:55,isempti:[19,35,47,60],isenum:[10,46],isinterfac:[10,46],islocalclass:[10,46],ismemberclass:[10,46],isprimit:[10,46],isreturn:2,issu:[0,14,18,23,25,38,42,49,54,55,56,61],issuecom:18,issynthet:[10,46],isthrow:2,iter:[19,27,40],iterm:51,iterm_profil:51,itim:38,its:[5,19,23,26,30,31,40,46,47,48,53,56],itself:[4,38,55,60],jad:[1,11,23,42],jar:[1,3,6,10,14,23,25,26,27,28,30,31,40,46,52,57,59],java:[6,10,13,15,16,19,20,21,22,25,26,28,30,31,32,33,34,35,37,38,40,41,42,44,46,47,49,50,51,52,53,54,55,56,57,59,60],java_hom:[1,14,51],java_main_class_65244:51,java_pid:57,javaag:[3,18],javas:3,javavir:40,javavirtualmachin:[10,13,52],javax:[32,54,55,60],jce:[28,52],jdk1:[10,31,40,52],jdk:[10,13,16,19,25,30,31,35,37,38,40,41,42,52],jetbrain:[24,50],jfr:[28,52],jioendpoint:54,jit:13,jmap:[1,18,22],jmc:38,jnu:52,job:[8,23,34,36,40],jobid:[23,45],jobstatu:23,join:[12,47],join_sess:23,jprofil:[38,55],jps:1,jre:[10,14,28,35,40,52],json:[23,36],json_data:23,json_pp:23,jsse:[28,52],jstack:[13,18],just:[5,18],jvm:[5,11,14,18,25,27,31,33,34,36,38,41,44,46,51,52,54,55,59],jvmti:59,k561bkk917gg972stqclbz9h0000gn:51,katacoda:[16,19],keep:[1,34,41,44],kei:[19,23,51,52,58],keyboard:[1,5,11],keymap:[1,11],keystrok:5,keyword:1,kill:[1,5,29],know:[2,25,49],kubectl:14,lang:[1,3,8,10,16,21,23,32,35,36,46,47,51,54,55,56,59,60],languag:[2,49,52,55],larg:59,larger:54,largest:44,lass:36,last:[13,38,41,44,54],lastindexof:47,lastindexofsupplementari:47,later:45,latest:[14,15,26,31,48],launchd:51,launchedurlclassload:[33,35,59],launcher:[10,16,19,27,30,40,41,43,44,46,49,52,55,59],layer:55,lead:[5,20,25,55],leak:25,leakag:42,leav:61,left:29,leftov:[31,42],legal:[49,55],length:[18,21,23,40,47,56],less:[36,54,60],let:[25,31],level:[1,35,36,42,52,55,59,60],lib64:28,lib:[1,4,10,14,28,31,52,59],libra:52,librari:[10,13,14,28,40,51,52],lifecycl:[1,25],lik:42,like:[1,8,21,22,23,36,49,50,55],limit:[41,49,56,59],line:[1,4,6,8,14,20,21,23,25,26,29,35,38,40,42,52,55],linenumb:[23,27],link:42,linkedhashmap:23,linux:[5,25,26,28,38,54],list:[1,2,10,11,18,27,35,38,40,41,43,44,50],listen:[4,21,40,50,54,61],listenerid:[23,34,36,55,56,60],littl:52,live:[1,28,40],ljava:21,llc:38,load:[0,1,16,25,27,28,33,38,41,42,44,46,47,59,60],loadedclass:37,loadedcount:10,loadedcounttot:10,loader:[2,16,19,27,30,33,35,41,42,46,59],loaderclassnam:44,loaderhash:44,local:[5,25,31,33,41,44,51],localhost:[1,6,23,38,48,55],localizedmessag:23,locat:[1,5,16,26,27,31,40,42,45,55,56],lock:[38,54,59],locksupport:[54,59],log4j:27,log:[1,4,5,6,8,16,25,26,30,31,35,36,40,42,51,57],logadapt:35,logback:30,logfil:53,logger:[1,11,21,27,35],logic:[21,27,34],login:[41,44,57],lognam:51,loop:[41,42,44],loss:56,lost:56,lot:[38,55],low:50,lwawt:52,lwctoolkit:52,mac:[13,25,26,52],machin:[4,5,28,52,57,61],maco:[38,51],macosx:52,mai:[1,5,18,23,25,29,33,36,38,41,44,55,56],main:[13,27,31,41,43,44,48,49,54,55,56,57,60],major:21,make:[1,31,42,50,60],manag:[23,28,32,36,40,48,52,54,58],mani:[5,14,49,55,56],manifest:10,manual:[16,19,30],map:[19,29],marksweep:28,marksweepcompact:28,mask:[19,35,60],match:[16,19,20,21,23,27,30,32,34,36,43,46,47,49,55],matcher:32,matchin:36,math:[1,3,10,14,18,27,46,49,55,56,60],mathgam:[10,16,18,19,23,27,34,35,40,41,44,46,49,51,55,56,60],matter:45,maven:[48,50],max:[13,20,28,40,55],maxfiles:30,maxheapfreeratio:58,maxhistori:30,maximum:[28,46,47,55],mbean:[1,11],md5:[41,44],mean:[1,18,23,30,31,44,54,55],meaning:42,mechan:[18,41],mem:38,memori:[0,1,13,28,33,40,42],mention:41,merg:42,messag:[23,36,42,45,61],meta:[10,32],metaspac:[13,28],method1:55,method2:55,method3:55,method:[0,1,2,21,23,25,35,36,40,41,42,43,44,46,47,49,54],methodcount:23,methodnam:23,metric:25,mib:28,middlewar:[21,25],might:[25,57],min:55,minheapfreeratio:58,minimum:55,minut:[13,23,36],misc:[10,16,19,27,30,35,40,41,43,44,46,49,54,55,59,60],miss:[14,38],mission:38,mix:[37,52],mmand:36,mmmmmmyiddddd:4,mobil:56,mode:[8,23,25,32,36,37,42,47,52],model:52,modifi:[0,1,10,18,25,41,44,46,47,56,60],modifierpriv:46,moduleclassload:27,monei:25,monitor200:54,monitor:[0,2,8,11,21,25,27,31,32,36,41,42,55,60],monoton:37,more:[1,8,10,13,16,18,19,21,23,26,27,30,31,35,37,40,42,46,49,54,55,61],most:49,move:[26,29,31],mozilla:6,mrjtoolkit:10,msg:30,much:[0,42],multi:[23,35,55],multipl:[4,8,23,27,38,44,50,57],multipli:[19,35,60],must:[4,8,19,21,23,35,40,44,46,48,57,60],mylog:30,name:[1,2,5,6,10,13,14,16,19,21,23,27,28,29,32,34,35,36,37,38,39,40,41,42,44,45,46,47,49,51,52,54,55,56,57,60],nativ:54,nativeid:13,nativemethod:23,necessari:[14,21,49,54,55],need:[1,10,13,16,19,23,30,35,38,40,41,44,48,55,56,60],neg:[5,19,35,42,60],net:[27,54],nettyhttptelnetbootstra:[13,54],nettywebsocketttybootst:54,network:[25,52],never:25,next:[29,40],nextint:[40,41,44,55,56,60],nextnextgaussian:[19,35,60],nginx:57,nio:[13,52],nioeventloopgroup:40,nit:36,nmethod:13,node:[19,42,55],non:[13,19,20,23,34,35,60],nonheap:[13,40],nonsynccontentequ:47,normal:[1,2,32,56,60],note:[4,8,10,16,19,21,23,25,30,31,32,33,35,38,41,44,45,48,49,54,55,56,57,60],noth:60,notif:[21,49,55],now:[0,5,31,42,50,54,55],npe:42,nts:52,nullpointerexcept:27,num:20,number:[5,12,13,18,20,23,25,40,41,42,44,46,47,50,54,56,60],numberofinst:10,obj:[36,56],object:[1,2,10,18,21,35,36,40,46,54,56],objectnam:32,objectstreamfield:[19,27,35,60],observ:[13,21,25,49,54,55],obtain:[13,23,54,57,59],occas:54,off:[36,42,45,60],offer:55,offici:[19,35,49,55,56,60],offsetbycodepoint:47,often:49,oftentim:25,ognl:[1,2,11,19,23,42,49,55,56,60],old:31,ome:52,onc:[1,25,31,34,36,56,57],one:[1,5,8,10,16,18,19,21,23,26,27,29,30,31,36,42,44,46,49,50,54,55],ones:23,onli:[1,2,4,5,6,10,13,14,16,18,19,21,30,31,32,35,38,41,44,47,48,50,54,55,61],onlin:[0,1,5,9,10,13,16,17,19,20,22,23,25,27,28,29,30,32,33,34,35,36,37,38,39,41,43,44,45,46,47,49,50,51,52,53,54,55,56,58,59,60,61],onward:3,oom:13,open:[5,6,12,18,23,25,28,31,37,38,55],openjdk:[14,35,37,38,42],oper:[23,28,50,54],opinion:12,opt:[14,31,35],optim:42,optimis:42,option:[6,8,11,18,20,23,29,31,33,37,42,43,45,49,50,51,52,53,55,56],oracl:[3,28,52],order:[5,23,42,54,60],org:[6,8,27,30,33,35,49,50,54,55,59],origin:[11,19,21,35,41,58,60],oss:38,other:[2,6,11,13,18,23,26,31,41,44,50,55,56,60,61],otherwis:[8,57],out:[5,8,10,11,18,23,30,35,36,40,41,42,44,49,55],outdat:31,output:[1,10,16,17,20,27,30,33,34,36,40,42,46,53,54,55,60],over:55,overal:13,overflow:56,overhead:42,overrid:[4,21],overrideal:4,overview:0,overwrit:4,own:[1,48],owner:[31,40],packag:[3,4,18,27,28,31,40,42,48],page:[23,26,38],pai:23,pandora:27,pangin:38,param:[2,5,18,21,23,34,49,55,56,60],paramet:[1,2,3,4,18,23,25,30,37,38,41,47,56,57,59,61],paramslen:21,paren:36,parent:[10,36,47],park:[38,54],parkandcheckinterrupt:54,pars:[23,44],part:38,particular:[10,16,54,55],pass:6,password:57,past:[26,31,41,44],patch:52,path:[5,18,21,23,26,28,31,36,38,43,45,49,51,52,53,55],patten:46,pattern:[1,16,20,21,23,27,30,32,34,38,43,46,47,49,55,60],paus:55,peak:28,peakthreadcount:32,pend:23,peopl:23,per:25,perceiv:13,perf:[1,37,38],perfcount:[1,11],perform:[5,20,34,42,44,55],period:[13,23,54,55],permiss:[38,50],permit:6,person:23,petstor:21,pick:19,pid:[1,5,14,23,31,40,45,50,54,57],pipe:[20,42,53],pkg:52,place:[26,31],plai:56,plain:42,plaintext:1,platform:[38,52],platformclassload:35,pleas:[18,23,25,27,40,50,55,61],pls:[13,40,41,46,55],plugin:25,pod:14,point:60,poll:23,pool:[13,40],pop:6,popular:25,port:[4,23,31,38,40,42,48,50,57],posit:[19,35,60],possibl:[21,23,25,27,36,46,49,50,54,55,60],post:23,potenti:5,power:56,ppp:6,prefix:57,present:[13,41,42],press:[13,21,26,29,31,34,36,40,43,49,55,56,60],pressur:59,pretti:23,prevent:4,previou:[29,60],prime:[23,40],primefactor:[18,23,34,40,41,44,49,55,56,60],principl:54,print:[1,6,9,10,11,15,20,21,23,26,29,36,37,40,41,42,44,46,47,49,54,55,56,57],printclasshistogram:58,printclasshistogramaf:58,printclasshistogramb:58,printconcurrentlock:58,printerjob:52,printgc:58,printgcdatestamp:58,printgcdetail:58,printgcid:58,printgctimestamp:58,println:[21,35,40,41,44,55],printout:55,printstream:[27,40,55],priori:40,prioriti:[6,13,43,49,54,55],privat:[2,10,27,40,46,51,52,59],privileg:[40,50],problem:[1,14,41],problemat:54,process:[1,5,23,28,31,34,38,41,48,50,54,57],processhandl:54,processimpl:54,processor:[13,28],processtopbusythread:54,produc:42,product:[0,1,25,52],productdao:21,profession:55,profil:[0,11,23,25],program:[23,40],prohibit:21,prompt:[6,23,29],proper:[49,55],properli:[14,57],properti:[3,6,19,23,37,56,57,60],protect:27,provid:[1,23,24,31,42,55],proxi:36,ps_eden_spac:40,ps_marksweep:40,ps_old_gen:40,ps_scaveng:40,ps_survivor_spac:40,pull_result:23,purpos:[1,16,19,21,27,30],put:[1,5,8,26,31,48],pwd:[1,11,51],qos:[27,30],qualifi:46,queri:25,question:[12,18],queue:23,quick:[18,25,49,55,56,60],quicker:42,quit:[1,5,8,10,11,34,40,42,56],quot:23,rais:12,random:[4,6,19,27,35,40,41,44,46,55,56,57,60],rang:13,rate:[13,25,34],rather:60,ratio:[13,34],raw:6,reach:[23,56],read:[23,53],readabl:[23,27,42],readi:23,readm:57,real:[1,13,32,42],reason:[23,41],receiv:[5,23,55],recommend:[19,21,23,25,31,41,54],recompil:13,reconnect:[29,57],record:[1,42,44],recurs:46,redefin:[1,11,13],redefineclass:41,redi:57,redirect:[1,8],ref:30,refer:[2,3,6,18,21,23,32,33,36,38,40,41,44,48,49,54,55,56,57],reflect:[10,42],refresh:[23,32,38,42],refus:23,regex:[16,20,21,27,32,34,43,46,47,49,55,60],regionmatch:47,regist:57,regular:[20,32,34,43,55],regularli:[23,45],reimplement:41,reinstal:42,reject:23,rel:21,relat:[13,42],releas:[25,26,57,59],reli:54,remain:23,rememb:1,remot:[5,25,31,48,57],remotemavenserv:50,remov:[1,20,31],remset:[13,54],render:51,rent:36,repair:55,repeatedli:[23,42],replac:[29,46,47],replaceal:47,replacefirst:47,replai:1,report:40,repositori:30,represent:[1,7],reproduc:[1,25],req112:23,request:6,requestid:23,requir:[23,42],res:36,rescu:49,reset:[1,11,41],resour:52,resourc:[1,28,32,42],resourcenotfoundexcept:10,rest:[23,55],restart:[5,25],restor:[29,41,44],result:[1,5,6,7,8,27,30,34,36,40,41,42,44,45,54,60],ret:56,retain:38,retransform:[1,11,27,33,36,41],retransformclass:44,retriev:23,returnobj:[2,8,18,23,40,49,55,60],right:[5,29,50],risk:36,roll:30,rollingfileappend:30,rollingpolici:30,root:30,round:54,row:[10,16,19,27,28,33,40,45,46,47,56],rpm:26,rule:[32,50],run:[1,13,14,21,23,25,26,27,31,34,38,40,41,44,45,49,50,55,56,60],runnab:40,runnabl:[13,54],runnableadapt:54,runtim:[13,28,35,40,52],runwork:54,same:[5,23,25,40,44,54,55],sampl:[1,13],sat:5,save:[36,38,41,44,45,53,56],sbin:51,scaveng:28,scenario:[23,42,60],schedul:[13,23],scheduledfuturetask:54,scheduledthreadpoolexecutor:54,screen:[1,11],script:[1,23,26,31,42,50],scriptlisten:21,scriptsupportcommand:21,sdkman:51,sdkman_platform:51,sdkman_vers:51,search:[10,12,18,31,42,46,47],searcher:1,second:[4,13,25,27,34,36,38,40,41,44,54],section:[23,30],secur:[6,36,57],sed:23,see:[1,5,8,13,18,23,30,55,61],seed:[19,35,60],seedoffset:[19,35,60],seeduniquifi:[19,35,60],seen:13,selec:36,select:[1,20,40],semant:5,send:23,sensit:20,sent:23,sep:[5,38],separ:[23,52],seri:23,serial:50,serializ:27,serialpersistentfield:[19,27,35,60],serialversionuid:[19,27,35,60],seriou:36,server:[1,4,5,11,23,25,28,31,33,34,37,42,43,48,50,52,54],servic:[5,13,25,27,31,54],servlet:[54,55,60],ses:36,session:[1,5,6,8,11,45,57,59],session_id:57,sessionid:23,sessiontimeout:4,set:[1,4,16,23,38,45,49,55],setter:2,setup:14,sever:46,shanghai:52,share:[23,24],sharedloadedclass:37,sharedunloadedclass:37,shell:[23,51,54,59],shift:29,shlvl:51,shoot:25,shortcut:[1,11],should:[5,8,27,31,54],show:[1,29,32,46,47],shown:[5,40,55],shutdown:42,side:34,signal:[18,40,54],significantli:13,similar:[4,20,23,53,54,55],simpl:[10,40,46],simpli:5,simultan:50,sinc:[2,5,10,25,28,35,36,49,50,55,56,59,60],singl:[1,26,31,54,55],site:[49,55],situat:[49,54,60],size:[18,19,35,44,60],sizeandtimebasedrollingpolici:30,sizelimit:23,skip:55,skipjdkmethod:55,sleep:[23,27,40,41,44,54],slf4jlocationawarelog:35,slow:25,smaller:23,socket:18,socketprocessor:54,socketwrapp:54,softwar:55,solv:[25,41],some:[1,18,25,38,41,42,44,54,55],sometim:54,sourc:[10,12,25,40,41,44,46,55,59],space:[13,28,45],spec:28,special:[19,35,46,47,56,60],specif:[2,10,13,16,19,23,27,28,32,34,35,36,38,41,46,47,49,52,54,55,56,57],specifi:[1,3,5,6,8,10,14,16,19,23,25,29,30,31,32,33,35,42,46,50,56,57,61],speed:42,spi:27,split:47,spring:[4,23,25,28,30,56,57,59],springappl:35,springframework:[30,33,35,59],spy:42,ssage:36,stack:[1,8,11,25,40,42,46,55,60],stacktrac:23,stage:[21,25],stand:[34,46,47,60],standard:[1,6,8,17,53],standardcontextvalv:54,standardenginevalv:54,standardhostvalv:54,standardwrappervalv:54,standbi:40,star:25,start:[5,15,18,23,25,26,28,31,37,42,48],starter:[25,57],startswith:47,startup:[1,50,57],stat:1,statcontrol:1,state:[11,13,23,25,40],statist:[1,13,25,34,42],statu:[5,13],statuscod:23,step:31,still:[25,44,55],stop:[1,11,14,19,20,31,40,43,44,56],store:[56,57],stream:57,stri:36,string:[1,6,10,16,19,21,23,35,40,41,44,47,48,55,59,60],stringbuff:40,stringbuild:55,stringcod:27,stringutil:[8,55],structur:[1,23,42,49,55],stuck:54,style:[4,48],sub:[21,25,36,42,46,55,60],subcal:55,submit:23,subsequ:47,substr:47,succe:[31,42,57,60],succeed:23,success:[1,6,10,14,21,23,25,30,34,40,44,61],successfulli:[23,45,52,56,58],sudo:[26,31,40],suffici:50,suffix:8,suggest:[8,61],suitabl:23,sum:55,summari:[3,20,36,43,51,52,53],sun:[10,16,18,19,20,27,30,35,40,41,42,43,44,46,49,52,54,55,59,60],sun_standard:52,sunrsasign:[28,52],support:[1,3,5,6,13,21,23,25,32,36,42,48,49,54,55,59,60,61],suppos:[19,31],sure:[31,50],survivor:28,suspend:[1,25,29],sweeper:54,sync:54,synchron:[23,54,55],synchronzi:54,syntax:[23,27],sys:1,sysenv:[1,11,20],sysprop:[1,8,11,20,23,53],system:[1,4,10,13,23,25,28,30,35,36,40,41,44,51,52,54,55],systemclassload:[30,35,42],systemload:13,tab:[29,51,52],tag:[14,42],take:[1,8,29,30,31,34,38,41,44,50,55,60],taobao:[5,10,21,35,42,46,48,54,56,59],target:[2,5,16,23,27,30,31,34,40,41,46,47,49,50,52,56,61],task:[5,13,54],taskthread:54,tbxwzs4s4sbcvh7frbcc7n000000gn:52,tccl:[43,49,55],team:25,ted:36,tee:[1,11],tell:60,telnet:[1,4,23,25,31,50,55],telnetport:4,temp:42,templat:23,temporari:23,tenur:28,terfullgc:58,term:51,term_program:51,term_program_vers:51,term_session_id:51,termd:42,termin:[1,5,8,11,23,29,34,36,54,55],test:[3,5,7,8,19,21,25,33,34,38,41,43,44,45,46,52,54,55,56,57],testclass:42,testdurexfilt:54,testfilt:[55,60],testthreadblock:54,text:[21,23,42],than:[0,6,13,19,27,35,42,46,54,55,60],thank:[49,55],thei:[18,49,54,55,56,60],them:[26,57,60],therefor:[1,5,34,54,55],thi:[5,8,11,13,18,19,20,21,23,25,27,29,31,32,36,40,41,43,44,45,46,47,49,50,51,52,53,54,55,57,60],thing:[49,55],think:25,third:21,those:0,thread0:13,thread:[0,1,8,11,20,25,30,32,42,55,56,60],thread_nam:[43,49,55],threadcommand:54,threadcount:32,threadimpl:54,threadloc:56,threadmxbean:54,threadpoolexecutor:54,three:[21,55,60],threshold:60,through:[4,13,23,25,50,57,59],throwabl:2,throwexp:[2,18,23,60],thrown:[1,2,55,60],tick:37,tier:[28,52],time:[0,1,5,8,13,14,25,28,29,32,34,36,40,41,42,44,46,49,54,56,57],timed_:40,timed_wai:[13,54],timed_wait:[20,54],timeexpir:23,timefactor:55,timeout:[5,23,36,40,45],timer:[13,40,54],timestamp:[1,5,34,38,56],timetunnel:56,timeunit:[27,40,41,44],timezon:52,tip:[19,56],tmp:[1,3,7,8,9,10,16,21,27,31,33,38,40,41,44,46,51,52,59],tmpdir:[51,52],tochararrai:47,togeth:[5,46],tolowercas:47,tomcat:[13,54],too:[5,11,42,46,54,55,56],tool:[1,14,18,23,25,31,38,59],toolkit:52,topn:42,tostr:[46,47,55],total:[13,28,34,40,42,54,55],totalsizecap:30,totaltim:37,touppercas:47,trace:[2,5,8,11,13,23,25,36,38,41,42,43,45,46,60],tracepoint:38,track:55,tradit:[20,30,53],trail:20,transfer:5,transform:[36,44],transformcount:44,travers:[19,46],trick:18,tricki:25,triger:44,trigger:60,trim:[20,47],troubl:25,troubleshoot:[0,1,25,40,55,56],truecolor:51,tualmachin:40,tunnel:[1,4,25,48],tunnel_serv:57,tunnelserv:[4,48],turn:[16,18,27,32,34,36,42,45,46,47,49,60],tutori:[1,5,9,10,13,16,17,19,20,22,23,25,27,28,29,30,32,33,34,35,36,37,38,39,41,43,44,45,46,47,49,51,52,53,54,55,56,57,58,59,60,61],twist:42,two:[13,14,41,54,60],txt:[7,9,30,41,44],type:[16,18,19,23,30,32,36,40,46,56],typic:2,ult:36,ultim:55,unabl:18,unaccept:25,under:[4,18,26,30,40,42,55],understand:27,undo:29,unexpect:2,unicod:52,unicodebig:52,uniqu:[10,16,19,23,27,30,35,57],unit:[37,56],unix:26,unknown:52,unload:28,unloadedclass:37,unnam:37,unnecessari:31,unsaf:[18,19,35,38,54,60],unstructur:23,until:[23,34],unzip:[15,18,26,31,57],updat:[1,13,14,41,42],upload:33,uppercas:42,uptim:13,urjz5l48rpbr2ali5k4v:57,url:[1,23,48,52],urlclassload:27,usag:[15,19,20,25,38,40,53],use:[1,2,4,5,6,8,10,12,14,16,19,21,23,25,27,30,33,35,38,41,44,45,46,50,55,56,57,59,60,61],used:[2,5,13,18,21,23,27,28,40,41,42,46,48,53,56,57],useful:[14,25],user:[5,6,10,16,18,21,23,25,26,27,29,30,31,33,34,36,40,41,44,45,50,51,52,57,60,61],user_hom:29,usercontrol:[33,41,44],userdetailsserviceautoconfigur:57,userstat:54,uses:[6,38,59],using:[1,5,7,10,16,19,23,25,27,30,31,32,38,42,60],usr:[14,28,51,52],usual:[3,18,23,30,40,50,57],utf8:30,utf:[30,51,52],util:[13,18,21,27,40,46,54,55,59,60],valid:[41,60],valu:[0,1,2,4,6,16,19,20,23,25,27,30,32,34,37,38,41,42,45,46,50,51,52,54,55,56,57,58,59],value1:35,value2:35,valueiter:59,valueof:[47,55],valv:54,variabl:[1,2,37,38,56,59,60],varieti:[49,55],vendor:[28,52],verbos:28,veri:[1,2,25,30,55],verifi:[38,41,44],version:[1,3,6,11,13,14,15,23,26,28,30,31,37,40,41,48,52,55,57],via:[0,1,5,8,48,57],view:[1,5,11,14,25,40,46,47,57],vim:[29,41,44],virtual:[28,52],visit:23,visualvm:51,vmoption:[1,11],vmtool:[1,11],w0t4p0:51,wai:[2,14,23,31,48,54],wait:[13,20,23,54],waitin:40,wall:38,wangji92:24,wangtao:52,want:[4,5,14,19,25,26,29,30,31,38,41,44,57,60,61],war:30,watch:[5,8,11,13,21,36,41,42,55],wathc:36,weav:34,web:[30,57],webconsol:[23,25],websocket:[1,25,54],welcom:[23,31],well:0,wget:14,what:[25,55],when:[1,2,5,6,10,11,13,16,18,19,21,23,25,27,30,36,37,41,42,43,44,48,49,55,59,60],where:[5,25,55],whether:[18,23,25,36,56],which:[0,1,2,4,5,10,16,19,23,25,27,30,31,35,36,38,40,48,49,50,54,55,57,59,60],whitespac:20,whole:[54,55],wide:25,wiki:[1,14,20,23,40,42,51,52,53,57],wild:16,wildcard:[21,27,32,34,43,46,47,49,55,60],window:[6,25,26],wireshark:51,within:60,without:[0,1,2,11,13,21,25,46,50,54],won:55,word:29,work:[1,14,16,18,19,25,27,30,38,39,41,44,54],worker:[40,54],wors:25,worthi:[49,55],wrappingrunn:54,write:[1,17,45],writeabl:58,written:23,wrong:42,wsfilter:54,www:[12,24],wy7c9w9j5732xbkcyt1mb4g40000gp:22,x86_64:52,xbootclasspath:31,xml:30,xpc_flag:51,xpc_service_nam:51,xpost:23,xterm:51,xxx:42,yet:[5,23,54],you:[0,1,4,5,6,8,10,12,13,14,16,18,19,23,25,26,27,29,30,31,33,35,36,38,40,41,44,48,49,54,55,56,57,59,60,61],young:[13,54],your:[1,6,14,25,27,55],yourclassnam:30,yum:14,yuqu:24,ywjjcg:7,ywrtaw46ywrtaw4:6,yyyi:30,zero:[1,23],zh_cn:51,zhuyong:[21,45],zip:[3,31],zulu:[1,35]},titles:["<no title>","Advanced Usage","Fundamental Fields in Expressions","Start as a Java Agent","Arthas Properties","Arthas Async Jobs","auth","base64","Batch Processing","cat","classloader","All Commands","Contact Us","dashboard","Docker","Download","dump","echo","FAQ","getstatic","grep","groovy","heapdump","Http API","IDEA Plugin","Arthas Documentation","Install Arthas","jad","jvm","Arthas Console Keymap","logger","Manually Install Arthas","mbean","mc","monitor","ognl","options","perfcounter","profiler","pwd","Quick Start","redefine","Release Notes","reset","retransform","Log command outputs","sc","sm","Arthas Spring Boot Starter","stack","Start Arthas","sysenv","sysprop","tee","thread","trace","tt","Arthas Tunnel","vmoption","vmtool","watch","Web Console"],titleterms:{"case":23,"class":[1,10,18,36,40,41,43,44,55,60],"import":21,"null":18,"public":14,"return":[59,60],"static":60,"switch":5,"true":36,One:[23,52],The:38,Use:[5,10,14,15,26,38,41,44,45,60],abov:37,access:23,action:[23,38],address:23,advanc:1,advic:21,after:[34,60],agent:[1,3],all:[11,36,38,43,44,51,52,54,56,58],api:[6,23],append:30,applic:[23,48],artha:[1,4,5,11,14,15,18,25,26,29,31,38,40,48,50,57,61],ask:41,async:[1,5],asynchron:[23,45],attach:18,auth:6,authent:[1,6,23],author:6,background:[5,25],base64:7,base:[14,26],basic:[1,11],bat:31,batch:8,befor:[34,60],best:57,bock:54,boot:[1,15,26,48],browser:[38,61],busiest:54,calcul:54,call:[34,56,60],callback:21,can:18,cancel:5,cat:9,categor:10,central:15,check:[8,40,52,56,60],classformaterror:18,classload:[1,10,27,30,59],classpath:23,close:23,cluster:57,collect:38,column:13,command:[5,11,18,23,31,38,40,41,44,45],compat:18,complex:38,condit:[34,49,60],configur:[4,6,38,48],connect:[57,61],consol:[1,6,29,61],constructor:18,contact:12,contain:14,content:25,context:56,cost:[49,55,60],cpu:54,creat:[8,23],custom:29,dashboard:[13,40],data:[1,23,38],debian:26,decod:7,decompil:[27,40],delet:44,demo:[49,55,56,60],deploi:57,descript:50,descriptor:28,detail:[54,60],diagnos:14,diagnosi:50,dingd:12,dingtalk:12,docker:[14,18],document:[15,25,26],doe:[18,60],download:[15,57],dump:[16,22],dynam:55,echo:17,elimin:44,encod:7,endpoint:48,enhanc:[18,23,36],entri:44,environ:51,evalu:34,event:38,except:60,exclud:[38,55,60],execut:[23,38,59],exit:40,expand:59,explan:21,explicitli:44,express:[2,34,49,56,59,60],fail:18,faq:18,featur:[1,25],fedora:26,field:[2,60],file:[7,18,22,28,41,44],filter:[18,34,38,49,55,60],first:54,flame:1,forc:59,foreground:5,format:[18,23,38],framebuf:38,frequent:41,from:[5,7,15],full:[15,26],fundament:2,game:40,gener:38,get:[23,36,38,40,60],getinst:59,getstat:19,github:15,graph:1,grep:20,groovi:21,group:12,hash:59,have:18,header:[6,13],heapdump:22,help:[15,26],hierarchi:10,hotspot:18,how:[18,54,57],html:38,http:[6,23],idea:24,imag:14,impact:18,inaccuraci:55,includ:[38,55],individu:[51,58],influenc:44,info:54,inform:[30,48,60],input_statu:23,instal:[12,14,26,31],instruct:[12,26],interact:[23,50],intern:13,interrupt:23,interv:54,issu:12,item:[4,34],jad:[27,40,41,44],jar:15,java:[1,3,14,18,23,27,36],jdk9:37,jdk:[14,18,55],jfr:38,job:[1,5,29,45],join:23,json:18,jvm:[1,13,28,37],k8s:[14,18],kei:25,keymap:29,lang:[18,27],layer:59,level:30,limit:[21,55],line:[27,31],linux:[31,40],list:[5,54,56],live:22,load:[10,18],loader:10,locat:[54,60],log:[18,21,45],logger:30,mac:[31,40],main:40,make:23,manag:[14,57],manual:[26,31],map:23,match:[54,60],math:40,maven:15,mbean:32,memori:18,method:[18,27,34,55,56,60],mode:50,modifi:52,monitor:[1,34],more:60,much:18,multipl:55,name:[18,30,59],nativ:18,non:[48,50],note:[13,42],notic:55,number:[10,27,38,59],object:[22,23,60],offlin:[15,18,26],ognl:35,onli:[22,27],option:[1,10,13,16,27,36,38,41,46,47,54,58,60],order:4,origin:18,other:[1,5,54],out:60,output:[5,7,8,21,23,38,45],overview:23,packag:[14,15,26,36],page:54,paramet:[6,21,32,34,35,49,50,54,55,60],password:6,perfcount:37,perform:18,pid:18,pipe:1,plugin:24,practic:57,print:[27,30,60],problem:55,process:[8,14,18,40],profil:[1,38],properti:[1,4,48,52],provid:54,pull:23,pwd:39,question:41,quick:[14,26,40],ratio:54,recommend:[6,26],record:56,redefin:41,redirect:5,relat:[1,28],releas:[15,42],remot:[50,61],replai:56,report:1,request:23,reset:43,resourc:10,respond:18,respons:23,restrict:[41,44],result:[18,23,38,55,59],resum:38,retransform:44,run:[5,8,54],same:[18,60],sampl:[21,38,50,54],save:7,screenshot:13,script:[8,21],search:56,server:[41,44,57,61],session:23,set:36,shortcut:29,show:[10,54],singl:52,skywalk:18,softwar:14,sourc:27,special:[23,30,36,54],specif:60,specifi:[27,38,43,44,54,55,59,60],speecifi:30,spring:48,stack:[49,54],start:[1,3,14,38,40,49,50,55,56,57,60],starter:48,startup:31,state:54,statist:10,statu:[23,38],step:8,stop:[5,38],string:27,subclass:60,sudo:50,support:[4,38,46,50],suspend:5,svg:38,sysenv:51,sysprop:52,system:26,target:[18,54,60],tee:53,telnet:6,thead:54,thread:[13,28,40,54],through:61,time:[23,38,55,60],tip:[1,41,44],tmp:22,top:54,trace:[1,18,54,55],trigger:44,tunnel:[57,61],type:10,under:[36,38],uninstal:26,unix:[31,40],unknown:38,unsaf:36,updat:[30,58],upload:[41,44],url:[6,10],urlclassload:10,usag:[1,8,10,13,16,22,26,27,28,30,32,34,35,37,41,43,44,46,47,48,49,51,52,54,55,56,58,60],use:18,user:1,usernam:6,v2015:42,v2016:42,v2017:42,valu:[18,36,60],variabl:[18,51],vers:5,version:38,via:[14,26,38],view:[10,18,30,36,38,44,48,51,54,58],vise:5,vmoption:58,vmtool:59,watch:[1,18,23,40,56,60],web:[1,6,23,61],when:[54,57],where:18,window:[31,50],without:30,work:57}}) \ No newline at end of file +Search.setIndex({docnames:["README","advanced-use","advice-class","agent","arthas-properties","async","auth","base64","batch-support","cat","classloader","cls","commands","contact-us","dashboard","docker","download","dump","echo","faq","getstatic","grep","groovy","heapdump","help","history","http-api","idea-plugin","index","install-detail","jad","jvm","keymap","logger","manual-install","mbean","mc","monitor","ognl","options","perfcounter","profiler","pwd","quick-start","quit","redefine","release-notes","reset","retransform","save-log","sc","session","sm","spring-boot-starter","stack","start-arthas","stop","sysenv","sysprop","tee","thread","trace","tt","tunnel","version","vmoption","vmtool","watch","web-console"],envversion:{"sphinx.domains.c":1,"sphinx.domains.changeset":1,"sphinx.domains.citation":1,"sphinx.domains.cpp":1,"sphinx.domains.javascript":1,"sphinx.domains.math":2,"sphinx.domains.python":1,"sphinx.domains.rst":1,"sphinx.domains.std":1,sphinx:56},filenames:["README.md","advanced-use.md","advice-class.md","agent.md","arthas-properties.md","async.md","auth.md","base64.md","batch-support.md","cat.md","classloader.md","cls.md","commands.md","contact-us.md","dashboard.md","docker.md","download.md","dump.md","echo.md","faq.md","getstatic.md","grep.md","groovy.md","heapdump.md","help.md","history.md","http-api.md","idea-plugin.md","index.md","install-detail.md","jad.md","jvm.md","keymap.md","logger.md","manual-install.md","mbean.md","mc.md","monitor.md","ognl.md","options.md","perfcounter.md","profiler.md","pwd.md","quick-start.md","quit.md","redefine.md","release-notes.md","reset.md","retransform.md","save-log.md","sc.md","session.md","sm.md","spring-boot-starter.md","stack.md","start-arthas.md","stop.md","sysenv.md","sysprop.md","tee.md","thread.md","trace.md","tt.md","tunnel.md","version.md","vmoption.md","vmtool.md","watch.md","web-console.md"],objects:{},objnames:{},objtypes:{},terms:{"001018m":61,"004539m":61,"004935m":61,"005198m":61,"005372m":61,"005428m":61,"005778m":61,"006405m":61,"006783m":61,"008747m":61,"010317m":61,"010473m":61,"011636m":61,"012257m":61,"012416m":43,"013777m":61,"01419m":61,"015643m":61,"01696m":67,"017407m":61,"019768m":61,"020221m":61,"021911m":61,"023715m":61,"028624m":61,"030432m":61,"033735m":61,"034411m":61,"034568m":61,"0353m":67,"03752m":61,"039s":1,"045534m":61,"052877m":67,"05447m":61,"059839m":61,"060843m":67,"061462m":61,"068692m":47,"06941m":61,"076457m":61,"078946m":61,"07b":14,"084025m":61,"086622m":61,"08a":50,"094064m":61,"0_132":[30,43],"0_162":43,"0_51":58,"0_60":10,"0c5d24a5756c":51,"0m0":1,"0ms":60,"0vubjprippkkuz7dyzyqoktranj4ungh":6,"0x0":57,"0x19":57,"0x1f5":57,"0x34":57,"0x4b67cf4d":62,"0x7699a589":62,"1000m":[14,60],"100m":[14,61],"100mb":33,"105228m":61,"10m":61,"1102230246251565e":[20,38,67],"113929m":61,"1170m":60,"119367m":61,"120s":37,"123934m":61,"127922m":61,"128518m":47,"1294m":61,"12m":43,"136007m":43,"1365m":43,"145825m":61,"14dad5dc":47,"14m":43,"152743m":61,"155m":43,"167786m":61,"168897m":67,"173966m":67,"178583m":61,"1820m":43,"182813m":61,"185203m":43,"18m":14,"19469ea2":66,"1b6d3586":10,"1ms":60,"200m":[60,67],"202c":26,"2048k":14,"20m":43,"232204a1":[30,61],"232606m":61,"232887m":61,"234537m":61,"23m":43,"240m":43,"241735m":26,"256color":57,"25s":39,"272s":14,"276874m":61,"277392m":67,"280502m":67,"281s":1,"28ea5898":38,"29fafb28":60,"2a139a55":33,"2b085b5d":26,"2bdd9114":30,"2eaa1027":[20,67],"2gb":33,"301ec38b":38,"303498m":67,"30m":14,"311395m":43,"31a6493":60,"327a647b":[36,45,48],"32m":43,"357742m":61,"3648e874":5,"36m":14,"389634m":61,"3d4eac69":[10,17,20,43,50,54,61],"3fe55d741882":63,"3ms":60,"401m":60,"407b":26,"409446m":61,"4096m":14,"414993m":67,"41cf53f9":67,"42ac":57,"42d3":26,"43de":26,"443a":51,"45df64fc":22,"46m":14,"472067c7":38,"473f":5,"477882m":67,"47m":14,"48f4":63,"491k":14,"492551m":61,"4a00":63,"4a9b":51,"4b85612c":38,"4c0df5f8":30,"4de6":27,"4f023edb":66,"4rel":33,"50m":14,"522b4":50,"522b408a":67,"530255m":67,"546aeec1":60,"549379m":61,"572s":1,"584m":60,"587833m":67,"58ef25a97948":27,"590102m":47,"5ae4e5fbab8b4e529ac404f260d4e2d1_1":26,"5b0e2d00":22,"5e69":5,"5level":33,"60bc264d":57,"617465m":61,"6367e55a78a2":63,"65m":43,"66350f69":[10,17,43,50],"66m":14,"672m":43,"6849794470754667710l":30,"68b31f0a":10,"6951a712":30,"69dcaba4":30,"69m":14,"6e51ad67":30,"6fafc4c2":30,"701b744f971e":26,"705196m":61,"70m":14,"7127ee12":60,"715367m":43,"716391m":61,"725be470":60,"75b84c92":66,"7f31245a":30,"7f89660b079b":5,"7f9a81e8":38,"810591m":61,"838077m":61,"849713m":61,"852594m":61,"85m":43,"883b":26,"8b39":26,"8ecb9cb7c7804d5d92e258b23d5245cc_1":26,"8f7f6ad7bc2d4cb5aa57a530927a95cc_2":26,"94766d3c":26,"955dbd1325334a84972b0f3ac19de4f7_2":26,"961441m":67,"969732m":43,"98aee3ccbefb":26,"9eed":5,"9fa3":27,"\u4e2d\u6587\u6587\u6863":28,"boolean":[2,20,38,67],"break":[22,26],"byte":[1,24,30,31,46],"case":[2,4,5,21,28,46,53,63],"catch":[43,45,48],"char":[30,32],"class":[0,2,12,14,15,17,20,22,24,26,28,30,31,33,36,37,38,46,50,52,53,54,56,58,62,66],"default":[1,3,4,6,8,14,17,19,21,22,24,26,30,32,33,35,37,38,39,41,46,47,49,50,52,54,55,57,60,61,62,63,65,66,67,68],"enum":20,"export":[15,40],"final":[2,8,30,43,60],"function":[26,39,43,45,48,61,67],"import":[28,30,43,53],"instanceof":[19,62],"int":[30,43,45,48,50],"long":[20,26,30,33,38,54,60,61,67],"new":[26,30,41,43,45,48,53,60,61],"null":[2,5,10,17,26,30,33,38,43,48,67],"public":[2,10,22,30,43,45,48,50,52,53],"return":[0,1,2,19,22,24,26,28,37,38,42,43,45,48,52,62],"static":[1,19,20,22,24,30,38,43,45,46,48,50,53,62],"super":[10,30,50],"switch":[19,22,34,35,41],"throw":[2,22,30,43,45,46,48,61,62],"true":[2,4,6,14,15,19,26,30,33,43,45,48,49,50,58,60,61,62,65,67],"try":[0,1,6,15,19,26,28,34,43,45,48,60],"var":[8,23,57,58],"void":[2,22,30,43,45,48,53],"while":[17,20,22,26,30,33,35,37,43,45,46,48,52,60,67],And:28,But:67,For:[1,3,5,6,10,14,17,19,20,26,30,33,34,38,39,41,48,53,61,63],IDE:28,Its:37,Jps:1,Pls:[29,34,43,49,54,61],QPS:[14,28],Such:26,The:[1,2,3,4,5,6,10,14,17,20,22,24,26,29,30,32,33,34,36,38,39,43,45,48,49,50,52,54,55,60,61,62,66,67,68],Then:[55,66],There:[1,2,22,45,54,61,67],These:[14,47],Use:[6,8,26,32,34,39,43,57,58,61],Useful:28,Using:[6,62,63,67],With:[0,8,30,62,67],Yes:19,_162:43,__cf_user_text_encod:57,a577:63,a7e4:57,aaa:[20,50],ab35:26,abc:7,abl:[5,8,39,43],abort:[22,37,39,43,47,54,61,62,67],about:[2,13,33],abov:[2,5,19,26,28,29,34,43,45,49,61,63],absolut:22,abstractconnectionhandl:60,abstracthttp11processor:60,abstractprotocol:60,abstractqueuedsynchron:60,accept:[8,26,32],access:[20,34,55,60,63,68],accompani:26,accord:[5,26,60],account:55,accur:61,achiev:[5,20,32,61],acquir:60,acquiresharedinterrupt:60,action:[6,66],actionarg:41,activ:[14,31,39],actuat:[53,63],add:[6,34,40,43,45,46,53,61,63],added:[45,48],addend:[20,38,67],adding:[28,61],addit:[28,33,61],address:[55,63],admin:[1,6,17,30,34,43,55,57],adopt:28,advanc:[28,43,54,55,61,62,67],advantag:1,advic:[2,54,61,62],advisor:62,af24:26,af85b69f93f8:57,affect:[10,12,17,20,22,26,30,31,36,37,39,43,44,47,49,50,52,54,61,62,67],after:[1,6,13,14,21,22,26,29,36,39,41,45,48,49,55,61,63,68],afterreturn:22,afterthrow:22,afterward:62,again:[48,62],agent:[10,19,34,38,46,53,63],agent_id:63,agentid:[4,51,63],aggreg:61,aitmilli:65,ali:57,alibaba:[13,14,16,19,20,22,28,29,33,41,46,54,61,63,68],aliti:39,aliyun:[1,15,21,24,26,29,34,43,57,58,59,63],all:[0,1,2,5,10,15,19,22,24,25,26,28,32,34,35,40,43,46,50,52,53,54,55,56,61,63,67],alloc:[26,41],allow:[1,22,26,45,48,55],allow_input:26,allow_interrupt:26,alpin:15,alreadi:1,also:[1,5,6,8,14,26,36,47,50,51,53,54,61,63],altern:[22,49,63],alwai:28,amd64:[15,31],among:28,amount:62,analysi:[39,49,60],analyz:[0,10,19],andrei:41,angl:[54,61],ani:[8,29,32,34,67],annot:[10,50,52],annotatedcommandimpl:60,annotationconfigembeddedwebapplicationcontext:66,anoth:[24,60,62],ansform:39,ansi:1,ant:15,anywai:49,apach:[8,14,30,38,54,55,60,61],apart:0,api:[1,3,28,58],app:[26,30,33,57,63],appclassload:[10,17,20,30,33,38,43,45,47,48,50,54,61,66],appear:[19,60,61],append:[43,59,61],appenderref:33,appl:57,apple_pubsub_socket_ren:57,applic:[3,4,15,28,33,39,40,41,57,60,63],applicationcontext:66,applicationfilterchain:60,appnam:[4,53,63],approach:28,apt:15,arch:[31,58],arg:[30,43,45,48,53],argument:[0,1,18,24,26,31,34,41],arrai:[2,24,26,46,62,66],arrang:60,arraylist:[20,26,30,38,43,62,67],arrow:32,artha:[0,3,6,7,8,10,13,14,17,20,21,22,23,24,25,26,27,30,31,33,36,37,38,39,44,45,46,47,48,49,54,56,57,58,59,60,61,62,64,65,66,67],arthasag:53,arthasattachexampl:53,arthasclassload:[10,38],arthasconfigmap:53,arthasmethod:2,artifactid:53,asia:58,asm:39,aspect:[1,2,67],ass:39,assembl:34,assign:26,assist:[0,30],assum:53,async:[8,24,33,41,46],async_exec:26,asyncappend:[33,43],asynchron:[5,8,33,46],atomiclong:[20,38,67],attach:[1,3,6,15,34,43,46,53,55,60,63,68],attachnotsupportedexcept:19,attempt:48,attent:[1,26],attribut:[26,35,41],auth:[1,12,24,26],authent:[24,60],authenticatorbas:60,auto:[28,32,46,57,58],autojump:57,autojump_error_path:57,autojump_sourc:57,automat:[4,5,26,41,62],aux:34,avail:[2,24,63],averag:[14,24,31,37],avg:37,avoid:[5,26,46,60,62,66],await:60,awk:26,awt:58,b03:58,b09:31,b09f1353:26,b16:58,b2c5c1d5aa2a:26,b69d6db7a869:26,bac0:26,bacaus:1,back:5,background:[1,8,37,39,49],backward:32,badbound:[20,38,67],badrang:[20,38,67],badsiz:[20,38,67],ball:46,bar:26,base64:[1,6,12,24,45,48],base:[19,26,28,34,40,60,62],bash:[15,16,26,57],basic:[6,41,60],bat:55,batch:[1,26,34,39,46],bbb:[7,20],bc5b:63,bean:62,beauti:46,becaus:[14,15,45,48,60,61,63],becom:[14,26],been:[5,26,45,47,61],befor:[0,21,22,26,34,39,46,49],begin:[19,32],behavior:[17,26,49,50,54,61],behind:30,being:[26,62,67],below:[19,39,41,43,45,48,49],beta:46,better:[1,30,34,46,62,67],between:[1,14,24,41],bin:[15,34,55,57],binari:[1,23],bind:51,bio:60,bit:[31,40,58],block:[46,60,61,67],blockpol:14,bodi:26,bool:39,boom:46,boot:[4,6,15,26,28,31,33,34,36,38,43,46,58,63,66],bootstrap:[29,34,55],bootstrapclassload:[10,38,46],borrow:5,both:[4,24,26,28,41,45,46,53],bottleneck:61,bound:[20,38,66,67],branch:41,breakpoint:41,brief:43,bring:1,browser:[1,6,26,28,63],btrace:22,bug:[39,46,58],buglevel:58,bugreport:58,built:[28,41],bus:41,busi:[0,37,60],busiest:46,byarrai:30,bypass:[45,48],bytecod:[14,17,19,24,45,48],c016:27,c2073d3b:51,cach:[5,26,31,39,41,49],calcul:[1,26,61],call:[2,26,38,45,46,48,54,60,61],caller:28,callsiteform:39,camel:[4,53],can:[0,1,2,4,5,6,8,10,13,14,15,17,20,24,25,26,28,29,30,31,32,33,34,35,36,38,39,41,43,45,46,48,50,52,53,54,55,60,61,62,63,66,67,68],candid:57,cannot:[5,8,19,26,28,43,45,46,67],card:17,case_insensitive_ord:30,caseinsensitivecompar:30,cat:[1,7,8,12,24],catalina:[14,55,60],categori:[30,46],caus:46,caution:[10,39],certain:46,certif:15,ces:58,cfr:[30,43],cgraphicsenviron:58,chanc:45,chang:[1,5,10,17,20,24,26,28,33,38,44,58],charact:[1,32,46],charat:[43,52],charsequ:30,charset:[30,31,33,58],check:[0,1,10,17,19,20,28,31,33,38,40,46,60],checkbound:[30,52],child:39,chines:[28,46],choos:55,chrome:[26,41],cla:39,class_nam:20,class_path:26,classa:[36,61],classb:[36,61],classcount:26,classdefinit:24,classdump:17,classfiletransform:48,classic:33,classload:[2,12,17,20,24,28,36,38,43,45,46,50,52,62,67],classloaderclass:[10,17,20,30,33,36,38,45,48,50,52,66],classloaderhash:[10,33,50,66],classloadernam:26,classnam:[20,26,47,48,66],classpattern:48,clazz:2,clean:[15,49],cleaner:60,clear:[1,11,12,14,24,25,32,48],click:[16,29,34,41],client:[12,15,26,43,44,56,63],clientpol:14,close:[1,12,44],close_sess:26,cls:[1,12,24,25,40],cmsabortableprecleanw:65,cmstriggerinterv:65,cmswaitdur:65,cnt:[10,17,20,22,30,31,36,37,43,47,49,50,52,54,61,62,67],code:[0,1,10,26,28,30,31,37,43,45,48,50,52,54,57,61,62,66],code_cach:43,codecachemanag:31,codeheap_:14,codepointat:52,codepointbefor:52,codepointcount:52,codesourc:33,collect:60,collectioncount:31,collectiontim:31,collector:31,color:[1,46],colorfgbg:57,colorterm:57,com:[1,3,5,10,13,15,16,19,20,21,22,24,26,27,29,33,34,36,37,38,41,43,45,46,48,50,53,54,57,58,59,60,61,62,63,66,67,68],combin:[6,19],come:[54,60,61,62],comm:39,command:[1,2,4,6,8,11,14,15,16,17,20,21,22,24,25,28,29,30,32,33,35,36,37,39,44,46,50,52,54,55,56,58,59,60,61,62,63,66,67],commandlin:15,commandprocesstask:60,commerci:61,commit:31,common:[8,15,38,54,60,61],commun:[1,27],compar:[22,26,30,60,61,67],compareto:52,comparetoignorecas:52,compat:26,compil:[1,14,24,28,31,36,39,45,46,48,58],compilerthread0:[14,60],complet:[4,26,28,32,34,43,45,46,48,57,58],complex:[20,26,62],complic:67,compress:31,comput:[60,63],concat:52,concaten:[1,9,24],concret:32,concurr:[30,43,60,66],concurrenthashmap:66,condit:[1,19,26,61,62],conf:32,confetti:46,config:4,configmap:53,configur:[3,19,32,33,63],confirm:67,conflict:[4,5,28,45,46,63],connect:[1,5,6,12,15,24,34,43,51,55,56,61],connector:60,consid:[8,61],consist:[19,45,48,60],consol:[5,11,24,30,33,39,49,63],consoleappend:33,constructor:37,consum:[26,60,61],consumerid:26,consumpt:61,cont:58,contact:28,contain:[5,22,26,52],containerid:15,content:[10,14,26,41,43,45,48,57,58,59],contentequ:52,context:[21,41,46,66],contextloadfiltervalv:60,contin:30,continu:[5,26,43,49],contribut:28,control:[1,26,39,41,49],conveni:[1,10,17,20,30,33,38,50,63],convert:[45,48],copi:[1,15,26,29,31,32,34,45,48,50],copyright:41,copyvalueof:52,core:[22,33,34,46,54,60,61,62,66],corpor:[31,58],correctli:26,correspond:[10,17,20,22,26,30,33,38,48],cost:[0,10,17,20,22,26,30,31,36,37,39,43,46,47,49,50,52,62],could:[28,34],count:[1,5,14,21,24,31,35,37,39,43,46,48,60,61,62,67],countdownlatch:60,counter:[1,24,40],countri:58,coyot:60,coyoteadapt:60,cpp:41,cprinterjob:58,cpu:[14,28,41,43,58],cpuusag:60,crash:39,creat:[5,22,23,31,45,48,62],criteria:1,critic:[62,67],cst:5,ctrl:[5,14,22,26,32,37,39,43,47,54,61,62,67],curl:[6,26,29,34,43],current:[1,2,5,6,10,11,12,14,17,19,20,24,25,26,29,31,32,33,34,38,40,43,44,49,50,51,54,55,57,60,61,67],currentthread:67,cursor:32,custom:[12,46],cycl:[37,41],dae:43,daemon:[14,31,43,60],daemonthreadcount:35,dai:[1,39,49],dal:22,dao:22,darwin:57,dashb:43,dashboard:[1,8,12,24,46,60],data:[6,14,35,54,58,59,60,61,66,67],date:5,dcach:41,deadlock:31,deal:26,deb:29,debug:[28,33,39],declar:52,decod:[1,24,30],decompil:[1,24,28,45,46,48],decompress:[3,4],deduc:61,deeper:61,defa:39,defin:[1,36,45,62],delai:46,delegatingclassload:[10,46],delet:[15,26,29,32,45,46],deleteal:48,deletecharat:43,delimit:[26,63],delta:14,delta_tim:[14,60],deltatim:60,demo:[10,17,19,20,26,30,31,36,37,38,41,43,45,48,50,53,57,66],demoapp:[4,63],demoapp_urjz5l48rpbr2ali5k4v:63,depend:53,depth:[50,67],der:57,descend:60,describ:28,descript:[2,24,26,32,36,39,60,68],design:37,desir:[26,39,50],destin:17,destroi:[1,22,26],detail:[19,22,24,28,36,50,52,54,61,62],determin:67,devel:15,develop:[6,8,27,28,45,55],devic:59,diagnos:[34,60,63],diagnosi:15,diagnost:[0,1,24,26,28,61,65],differ:[4,14,26,28,35,41,45,53,54,60,61,62,63,67],difficult:[54,61,63],difficulti:62,dir:[39,58],direct:[45,46,48],directli:[2,3,5,6,13,46,50],directori:[1,3,4,5,16,17,24,29,32,34,36,41,42,63],disabl:[26,39,46,50,67],disappear:28,disconnect:[1,12,43,49,56],discov:61,discuss:[13,41],disk:49,dispatch:[43,60],displai:[1,14,24,32,57,58,60,65],doacquiresharedinterrupt:60,doc:[1,3,6,15,21,24,26,27,43,57,58,59,63],docker:28,document:[26,41,45,46],doe:[15,26,48,60,63],doesn:[45,48,61],dofilt:60,doget:60,doing:[5,49],don:67,done:26,doubl:[20,26,38,67],double_unit:[20,38,67],down:[32,61],download:[3,4,13,19,28,29,34,46],downtim:28,dpkg:29,drill:61,dtlb:41,due:[39,45,62],dump:[1,12,24,39,41,46],dumpcollaps:41,dumpflat:41,dumpthreads0:60,dumptrac:41,duplic:46,durat:41,dure:[26,60,61],dwmmjsqsll:57,dynam:[3,17,20,30,33],e7b0:63,each:[8,26,39,55,60,61,62],eagleey:60,eagleeyefilt:60,ean:39,easi:[15,67],easier:0,easili:[0,28,67],echo:[1,7,12,24,26],ect:39,eden:31,edit:[14,45,48],editor:[45,48],ee3bc004:26,effect:[1,5,26,32,35,37,41,45,48,55,61,62],effectivelevel:33,either:67,element:26,embed:66,empti:2,enabl:[21,22,28,32,39,47,49,61],enclos:46,encod:[1,24,33,46,58],encount:[28,41,46,67],end:[2,8,21,26,32,41,45,48,60],endian:58,endor:58,endors:58,endpoint:63,endswith:52,enhanc:[1,12,22,24,46,47,61],ensur:[8,26,28],enter:[6,26,29,32,34,43,55,61],entri:34,entryset:20,env:[4,15,24,57],environ:[1,28,38,45,55,58],eof:26,equal:[24,44,52,61],equalsignorecas:52,equival:[32,50,55],error:[6,14,19,26,30,46,57,65],errorreportvalv:60,escap:[1,26,46],etc:[14,24,28,41,61],evalu:67,even:[0,1,20,26,28,46,49,62],event:[5,40],ever:0,everi:[43,45,48],exact:[39,50,61,62,67],examin:[1,5,12,51,58],exampl:[1,3,5,6,8,14,19,21,22,24,26,33,36,39,41,43,45,46,47,48,53,54,55,57,58,59,60,61,63,67],exce:[5,54,61],except:[0,1,2,22,24,26,28,43,45,46,48,50,52,61,62],exec:[6,15,26,60],exectimeout:26,execut:[1,2,5,6,8,10,14,17,22,24,29,30,33,34,35,38,39,43,45,46,48,49,50,52,54,55,60,61,62,67],executor:60,exist:[15,55],exit:[1,2,5,12,14,24,26,44,45,46,48,51,54,61,62,67],exp:62,expand:[26,38,46,67],expans:66,expect:28,expens:61,experi:60,experss:26,expert:34,explain:26,explicitli:[1,8,41],expos:53,express:[1,10,17,19,21,22,24,26,30,38,45,46,47,50,52,61],ext:58,extclassload:[10,17,30,43,50,66],extend:30,extens:[10,58],extent:61,extern:[1,39,45,48],extra:62,extract:[10,17,20,26,33,38,63],f1dca050:63,f7273eb5:63,fa77c7b4:27,facilit:[17,20,30,33],fact:8,factor:43,fail:[24,26,34,36,37,45,46,48,62,67],failur:[24,37,46],fals:[2,10,14,20,26,30,31,38,39,43,47,49,50,54,58,60,61,62,65,67],faq:28,fat:[33,63],fault:41,feasibl:62,featur:[46,61],feedback:28,fetch:19,ff267334bb65:31,field:[19,20,24,26,38,39,45,48,50,62],field_nam:[20,67],file:[1,3,4,5,6,8,9,10,17,24,25,28,29,32,33,34,36,39,41,46,49,58,59,61,66],filenam:[8,26],filenamepattern:33,filepath:22,fill:68,filter:[1,2,20,26,46,60],filterchainadapt:60,find:[4,16,28,29,34,43,60],finish:22,first:[10,17,20,32,33,38,45,46,48,61,67],fix:[15,28,46,61],flag:[2,39],flame:[28,41],flaw:61,flexibl:20,flow:46,fly:[3,28],focu:[41,61],folder:[23,57,58],follow:[5,14,26,28,29,33,34,40,43,53,55,61,63],foo:26,forcegc:[1,66],forcibl:[1,26],forefullgc:65,foreground:[1,26],format:[1,14,22,23,39,43,45,46,48,50,52,58,61],forward:[32,63],found:[30,54,55,61,63,66],four:67,fqcn:[30,38],fragment:62,frame_buffer_overflow:41,framework:30,freez:19,frequent:14,fri:5,friendli:46,from:[0,1,2,3,4,8,10,13,14,15,19,22,24,28,29,30,32,34,35,37,43,49,50,52,53,54,58,59,61,68],full:[3,19,50,54],fundament:[19,62],further:[1,37,39,43],furthermor:37,futur:45,futuretask:60,g1_eden_spac:14,g1_old_gen:14,g1_old_gener:14,g1_survivor_spac:14,g1_young_gener:14,game:[1,3,10,15,19,30,45,48,50,54,61,62,67],garbag:31,gehui:5,gen:31,gener:[1,6,17,20,26,30,31,33,43,63],get:[1,8,15,28,29,38,54,60,62],getbeandefinitionnam:66,getbyt:52,getchar:52,getclazz:22,getcontextclassload:67,getfield:61,getinst:1,getinternalthreadcputim:60,getload:62,getmessag:[43,45,48,61],getmethod:22,getnam:[22,61],getparam:22,getproductbyid:22,getproperti:38,getsampl:41,getsimplenam:22,getstat:[1,12,24,46],getter:2,getthreadcputim:60,getthreadinfo:60,gib:31,git:[8,55],github:[13,19,24,27,28,29,41,46,54,61,63,68],given:[1,5],global:[1,39,46,49],gmt:62,gopherproxyset:58,grammar:[2,30,54,61],grant:55,graph:[28,41],graphicsenv:58,grasp:0,great:10,greater:[14,20,38,67],grep:[1,12,24,26,34,43,59],group2:13,group:[14,43,60],groupid:53,guarante:63,guid:[2,20,38,54,61,62,67],handi:[1,10,61],handl:60,handler:[43,60],hang:[26,39],happen:[1,26],hard:62,hardli:1,has:[5,22,26,29,55,61],hash:[10,30,50,52],hashcod:[10,17,20,30,33,38,45,52,62],hashmap:53,hasnext:43,have:[0,4,5,14,17,20,28,30,33,37,43,45,47,54,61,63,68],havenextnextgaussian:[20,38,67],heap:[1,14,23,24,28,31,43],heapdump2019:23,heapdump:[1,12,19,24],heapdumpafterfullgc:65,heapdumpbeforefullgc:65,heapdumponoutofmemori:65,heapdumppath:65,heart:34,hello:[18,38],help:[0,1,6,8,12,21,26,28,30,34,46,47,57,58,59,60,61,62,67,68],hengyunabc:[10,15,33],here:[1,8,15,17,20,33,54,60,61,62,67,68],hierarchi:28,higher:[6,14,61],highest:4,highlight:30,histori:[1,12,24,26,32,62],hit:[26,43,55],hold:60,hom:43,home:[1,10,14,15,28,29,32,34,38,39,43,49,57,58],hot:[14,45],hotspot:[31,41,58],hotspotthreadmbean:60,hour:39,how:[1,2,13],howev:[17,20,28,30,33],hprof:[1,23],hsehdfsfghhwertyfad:53,html:[1,3,26,54,61,63],http11:60,http:[1,3,13,14,15,16,19,21,24,27,28,29,34,41,43,46,53,54,57,58,59,60,61,63,68],httpport:4,httpservlet:60,hub:15,huge:10,ibatisproductdao:22,idea:[5,28,54,55],ignor:[5,21,46,61],illeg:2,illegalargumentcount:[30,43,45,48,50,62,67],illegalargumentexcept:[26,43,61,62,67],imag:41,immedi:[26,37],impact:[37,48],impl:60,implement:[1,5,22,30],imposs:28,improv:[26,46],inaccess:28,inaccur:[60,61],includ:[8,14,33,39,45,46,50,60,67],inconsist:19,incorrect:46,increas:[41,60,61],increment:[14,60],index:[1,62],indexof:52,indexofsupplementari:52,indic:[2,5,26,60,61],ineffici:28,inf:[10,66],info:[1,10,15,24,31,33,40,43,46,50,58,63,66],inform:[1,10,12,14,17,19,20,22,24,29,30,34,35,37,38,40,43,50,52,54,61,63,68],inherit:[1,46],init:[19,31,52,61],init_sess:26,initi:[26,46],inject:[1,46],inner:[20,45,46,48],innocuousthrea:60,input:[1,7,17,20,24,26,30,31,33,37,39,55,59,63],inputrc:32,inputstatu:26,insensit:21,insid:[1,28,43,54,61],instal:[28,46],instanc:[2,10,17,20,28,30,33,38,43,66],instead:[49,55],instruct:[41,61],instrument:[3,24,45,48,61],insuffici:14,integ:[19,26,37,43,45,46,48,61,62,67],interact:[28,29,34,46],intercept:19,interest:61,interf:55,interfac:[10,22,26,29,34,39,50,66],intern:[17,20,33,38,40,46,52,60],internaldofilt:60,interpret:30,interru:43,interrupt:[14,60],interrupt_job:26,interruptedexcept:[30,43,45,48],interv:[14,24,35,41,46,62],introduc:[39,45,46],introduct:60,invert:21,investig:46,invis:52,invoc:[1,24,28,37],invocati:39,invok:[37,39,46,60,61,62,67],involv:39,irreproduc:28,is_daemon:[47,54,61],isalist:58,isannot:[10,50],isanonymousclass:[10,50],isarrai:[10,50],isbefor:2,isblank:61,isempti:[20,38,52,67],isenum:[10,50],isinterfac:[10,50],islocalclass:[10,50],ismemberclass:[10,50],isprimit:[10,50],isreturn:2,issu:[0,15,19,26,28,41,46,54,60,61,62,68],issuecom:19,issynthet:[10,50],isthrow:2,iter:[20,30,43],iterm:57,iterm_profil:57,itim:41,its:[5,20,26,29,33,34,43,50,52,53,59,62],itself:[4,41,61,67],jad:[1,12,24,26,46],jar:[1,3,6,10,15,26,28,29,30,31,33,34,43,50,58,63,66],java:[6,10,14,16,17,20,21,22,23,24,28,29,31,33,34,35,36,37,38,40,41,43,45,46,48,50,52,54,55,57,58,59,60,61,62,63,66,67],java_hom:[1,15,57],java_main_class_65244:57,java_pid:[51,63],javaag:[3,19],javas:3,javavir:43,javavirtualmachin:[10,14,58],javax:[35,60,61,67],jce:[31,58],jdk1:[10,34,43,58],jdk:[10,14,17,20,28,33,34,38,40,41,43,45,46,58],jetbrain:[27,55],jfr:[31,58],jioendpoint:60,jit:14,jmap:[1,19,23],jmc:41,jnu:58,job:[8,26,37,39,43],jobid:[26,49],jobstatu:26,join:[13,52],join_sess:26,jprofil:[41,61],jps:1,jre:[10,15,31,38,43,58],json:[26,39],json_data:26,json_pp:26,jsse:[31,58],jstack:[14,19],just:[5,19,44],jvm:[5,12,15,19,24,28,30,34,36,37,39,41,45,48,50,57,58,60,61,66],jvmti:66,k561bkk917gg972stqclbz9h0000gn:57,katacoda:[17,20],keep:[1,37,45,48],kei:[20,26,57,58,65],keyboard:[1,5,12],keymap:[1,12,24],keystrok:5,keyword:1,kill:[1,5,32],know:[2,28,54],kubectl:15,lang:[1,3,8,10,17,22,26,35,38,39,50,52,57,60,61,62,66,67],languag:[2,54,58,61],larg:66,larger:60,largest:48,lass:39,last:[14,41,45,48,60],lastindexof:52,lastindexofsupplementari:52,later:49,latest:[15,16,29,34,53],launchd:57,launchedurlclassload:[36,38,66],launcher:[10,17,20,30,33,43,45,47,48,50,54,58,61,66],layer:61,lead:[5,21,28,61],leak:28,leakag:46,leav:68,left:32,leftov:[34,46],legal:[54,61],length:[19,22,26,43,52,62],less:[39,60,67],let:[28,34],level:[1,24,38,39,46,58,61,66,67],lib64:31,lib:[1,4,10,15,31,34,58,66],libra:58,librari:[10,14,15,31,43,57,58],lifecycl:[1,28],lik:46,like:[1,8,22,23,26,39,54,55,61],limit:[45,54,62,66],line:[1,4,6,8,15,21,22,26,28,29,32,38,41,43,46,58,61],linenumb:[26,30],link:46,linkedhashmap:26,linux:[5,28,29,31,41,60],list:[1,2,10,12,19,30,38,41,43,45,47,48,55],listen:[4,22,43,55,60,68],listenerid:[26,37,39,61,62,67],littl:58,live:[1,31,43],ljava:22,llc:41,load:[0,1,17,24,28,30,31,36,41,45,46,48,50,52,66,67],loadedclass:40,loadedcount:10,loadedcounttot:10,loader:[2,17,20,30,33,36,38,45,46,50,66],loaderclassnam:48,loaderhash:48,local:[5,28,34,36,45,48,57],localhost:[1,6,26,41,53,61],localizedmessag:26,locat:[1,5,17,29,30,34,43,46,49,61,62],lock:[41,60,66],locksupport:[60,66],log4j:30,log:[1,4,5,6,8,17,28,29,33,34,38,39,43,46,57,63],logadapt:38,logback:33,logfil:59,logger:[1,12,22,24,30,38],logic:[22,30,37],login:[45,48,63],lognam:57,logout:44,loop:[45,46,48],loss:62,lost:62,lot:[41,61],low:55,lwawt:58,lwctoolkit:58,mac:[14,28,29,58],machin:[4,5,31,58,63,68],maco:[41,57],macosx:58,mai:[1,5,19,26,28,32,36,39,41,45,48,61,62],main:[14,30,34,45,47,48,53,54,60,61,62,63,67],major:22,make:[1,34,46,55,67],manag:[26,31,35,39,43,53,58,60,65],mani:[5,15,54,61,62],manifest:10,manual:[17,20,33],map:[20,32],marksweep:31,marksweepcompact:31,mask:[20,38,67],match:[17,20,21,22,26,30,33,35,37,39,47,50,52,54,61],matcher:35,matchin:39,math:[1,3,10,15,19,30,50,54,61,62,67],mathgam:[10,17,19,20,26,30,37,38,43,45,48,50,54,57,61,62,67],matter:49,maven:[53,55],max:[14,21,31,43,61],maxfiles:33,maxheapfreeratio:65,maxhistori:33,maximum:[31,50,52,61],mbean:[1,12,24],md5:[45,48],mean:[1,19,26,33,34,44,48,60,61],meaning:46,mechan:[19,45],mem:41,memori:[0,1,14,24,31,36,43,46],mention:45,merg:46,messag:[24,26,39,46,49,68],meta:[10,35],metaspac:[14,31],method1:61,method2:61,method3:61,method:[0,1,2,22,24,26,28,38,39,43,45,46,47,48,50,52,54,60],methodcount:26,methodnam:26,metric:28,mib:31,middlewar:[22,28],might:[28,63],min:61,minheapfreeratio:65,minimum:61,minut:[14,26,39],misc:[10,17,20,30,33,38,43,45,47,48,50,54,60,61,66,67],miss:[15,41],mission:41,mix:[40,58],mmand:39,mmmmmmyiddddd:4,mobil:62,mode:[8,11,26,28,35,39,40,46,52,58],model:58,modifi:[0,1,10,19,28,45,48,50,52,62,67],modifierpriv:50,moduleclassload:30,monei:28,monitor200:60,monitor:[0,2,8,12,22,24,28,30,34,35,39,45,46,61,67],monoton:40,more:[1,8,10,14,17,19,20,22,26,29,30,33,34,38,40,43,46,50,54,60,61,68],most:54,move:[29,32,34],mozilla:6,mrjtoolkit:10,msg:33,much:[0,46],multi:[26,38,61],multipl:[4,8,26,30,41,48,55,63],multipli:[20,38,67],must:[4,8,20,22,26,38,43,48,50,53,63,67],mylog:33,name:[1,2,5,6,10,14,15,17,20,22,24,25,26,30,31,32,35,37,38,39,40,41,42,43,45,46,48,49,50,51,52,54,57,58,60,61,62,63,67],nativ:60,nativeid:14,nativemethod:26,nearest:25,necessari:[15,22,54,60,61],need:[1,10,14,17,20,26,33,38,41,43,45,48,53,61,62,67],neg:[5,20,38,46,67],net:[30,60],nettyhttptelnetbootstra:[14,60],nettywebsocketttybootst:60,network:[28,58],never:28,next:[32,43],nextint:[43,45,48,61,62,67],nextnextgaussian:[20,38,67],nginx:63,nio:[14,58],nioeventloopgroup:43,nit:39,nmethod:14,node:[20,46,61],non:[14,20,21,26,37,38,67],nonheap:[14,43],nonsynccontentequ:52,normal:[1,2,35,62,67],note:[4,8,10,17,20,22,26,28,33,34,35,36,38,41,45,48,49,53,54,60,61,62,63,67],noth:67,notif:[22,54,61],now:[0,5,34,46,55,60,61],npe:46,nts:58,nullpointerexcept:30,num:21,number:[5,13,14,19,21,24,26,28,43,45,46,48,50,52,55,60,62,67],numberofinst:10,obj:[39,62],object:[1,2,10,19,22,24,28,38,39,43,50,60,62],objectnam:35,objectstreamfield:[20,30,38,67],observ:[14,22,28,54,60,61],obtain:[14,26,60,63,66],occas:60,off:[39,46,49,67],offer:61,offici:[20,38,54,61,62,67],offsetbycodepoint:52,often:54,oftentim:28,ognl:[1,2,12,20,24,26,46,54,61,62,67],old:34,ome:58,onc:[1,28,34,37,39,62,63],one:[1,5,8,10,17,19,20,22,24,26,29,30,32,33,34,39,46,48,50,54,55,60,61],ones:26,onli:[1,2,4,5,6,10,11,14,15,17,19,20,22,25,33,34,35,38,41,45,48,52,53,55,60,61,68],onlin:[0,1,5,9,10,14,17,18,20,21,23,26,28,30,31,32,33,35,36,37,38,39,40,41,42,45,47,48,49,50,52,54,55,57,58,59,60,61,62,65,66,67,68],onward:3,oom:14,open:[5,6,13,19,26,28,31,34,40,41,61],openjdk:[15,38,40,41,46],oper:[26,31,55,60],opinion:13,opt:[15,34,38],optim:46,optimis:46,option:[6,8,12,19,21,26,32,34,36,40,46,47,49,54,55,57,58,59,61,62],oracl:[3,31,58],order:[5,26,46,60,67],org:[6,8,30,33,36,38,54,55,60,61,66],origin:[12,20,22,38,45,65,67],oss:41,other:[2,6,12,14,19,26,29,34,44,45,48,55,61,62,67,68],otherwis:[8,63],out:[5,8,10,12,19,26,33,38,39,43,45,46,48,54,61,64],outdat:34,output:[1,10,17,18,21,24,30,33,36,37,39,43,46,50,59,60,61,67],over:61,overal:14,overflow:62,overhead:46,overrid:[4,22],overrideal:4,overview:[0,24],overwrit:4,own:[1,53],owner:[34,43],packag:[3,4,19,30,31,34,43,46,53],page:[26,29,41],pai:26,pandora:30,pangin:41,param:[2,5,19,22,26,37,54,61,62,67],paramet:[1,2,3,4,19,24,26,28,33,40,41,45,52,62,63,66,68],paramslen:22,paren:39,parent:[10,39,52],park:[41,60],parkandcheckinterrupt:60,pars:[26,48],part:41,particular:[10,17,60,61],pass:6,password:63,past:[29,34,45,48],patch:58,path:[5,19,22,26,29,31,34,39,41,47,49,54,57,58,59,61],patten:50,pattern:[1,17,21,22,26,30,33,35,37,41,47,50,52,54,61,67],paus:61,peak:31,peakthreadcount:35,pend:26,peopl:26,per:28,perceiv:14,perf:[1,24,40,41],perfcount:[1,12,24],perform:[5,21,37,46,48,61],period:[14,26,60,61],permiss:[41,55],permit:6,persist:25,person:26,petstor:22,pick:20,pid:[1,5,15,26,34,43,49,55,60,63],pipe:[21,24,46,59],pkg:58,place:[29,34],plai:62,plain:46,plaintext:1,platform:[41,58],platformclassload:38,pleas:[19,26,28,30,43,55,61,68],pls:[14,43,45,50,61],plugin:28,pod:15,point:67,poll:26,pool:[14,43],pop:6,popular:28,port:[4,26,34,41,43,46,53,55,63],posit:[20,38,67],possibl:[22,26,28,30,39,50,54,55,60,61,67],post:26,potenti:5,power:62,ppp:6,prefix:63,present:[14,45,46],press:[14,22,29,32,34,37,39,43,47,54,61,62,67],pressur:66,pretti:26,prevent:4,previou:[32,67],prime:[26,43],primefactor:[19,26,37,43,45,48,54,61,62,67],principl:60,print:[1,6,9,10,12,16,21,22,24,26,29,32,39,40,43,45,46,48,50,52,54,60,61,62,63,64],printclasshistogram:65,printclasshistogramaf:65,printclasshistogramb:65,printconcurrentlock:65,printerjob:58,printgc:65,printgcdatestamp:65,printgcdetail:65,printgcid:65,printgctimestamp:65,println:[22,38,43,45,48,61],printout:61,printstream:[30,43,61],priori:43,prioriti:[6,14,47,54,60,61],privat:[2,10,30,43,50,57,58,66],privileg:[43,55],problem:[1,15,45],problemat:60,process:[1,5,26,31,34,37,41,45,53,55,60,63],processhandl:60,processid:51,processimpl:60,processor:[14,31],processtopbusythread:60,produc:46,product:[0,1,28,58],productdao:22,profession:61,profil:[0,12,24,26,28],program:[26,43],prohibit:22,prompt:[6,26,32],proper:[54,61],properli:[15,63],properti:[3,6,20,24,26,40,62,63,67],protect:30,provid:[1,26,27,34,46,61],proxi:39,ps_eden_spac:43,ps_marksweep:43,ps_old_gen:43,ps_scaveng:43,ps_survivor_spac:43,pull_result:26,purpos:[1,17,20,22,30,33],put:[1,5,8,29,34,53],pwd:[1,12,24,57],qos:[30,33],qualifi:50,queri:28,question:[13,19],queue:26,quick:[19,28,54,61,62,67],quicker:46,quit:[1,5,8,10,12,37,43,46,62],quot:26,rais:13,random:[4,6,20,30,38,43,45,48,50,61,62,63,67],rang:14,rate:[14,24,28,37],rather:67,ratio:[14,37],raw:6,reach:[26,62],read:[26,59],readabl:[26,30,46],readi:26,readm:63,real:[1,14,35,46],reason:[26,45],receiv:[5,26,61],recommend:[20,22,26,28,34,45,60],recompil:14,reconnect:[32,63],record:[1,46,48],recurs:50,redefin:[1,12,14,24,56],redefineclass:[24,45],redi:63,redirect:[1,8],ref:33,refer:[2,3,6,19,22,26,35,36,39,41,43,45,48,53,54,60,61,62,63],reflect:[10,46],refresh:[26,35,41,46],refus:26,regex:[17,21,22,30,35,37,47,50,52,54,61,67],regionmatch:52,regist:63,regular:[21,35,37,47,61],regularli:[26,49],reimplement:45,reinstal:46,reject:26,rel:22,relat:[14,46],releas:[28,29,63,66],reli:60,remain:26,rememb:1,remot:[5,28,34,53,63],remotemavenserv:55,remov:[1,21,34],remset:[14,60],render:57,rent:39,repair:61,repeatedli:[26,46],replac:[32,50,52],replaceal:52,replacefirst:52,replai:1,report:43,repositori:33,represent:[1,7,24],reproduc:[1,28],req112:26,request:6,requestid:26,requir:[26,46],res:39,rescu:54,reset:[1,12,24,44,45,56],resour:58,resourc:[1,31,35,46],resourcenotfoundexcept:10,rest:[26,61],restart:[5,28],restor:[32,45,48],result:[1,5,6,7,8,30,33,37,39,43,45,46,48,49,60,67],ret:62,retain:41,retransform:[1,12,24,30,36,39,45],retransformclass:[24,48],retriev:26,returnobj:[2,8,19,26,43,54,61,67],right:[5,32,55],risk:39,roll:33,rollingfileappend:33,rollingpolici:33,root:33,round:60,row:[10,17,20,30,31,36,43,49,50,52,62],rpm:29,rule:[35,55],run:[1,14,15,22,26,28,29,30,34,37,41,43,45,48,49,54,55,61,62,67],runnab:43,runnabl:[14,60],runnableadapt:60,runtim:[14,31,38,43,58],runwork:60,same:[5,26,28,43,48,60,61],sampl:[1,14],sat:5,save:[39,41,45,48,49,59,62],sbin:57,scaveng:31,scenario:[26,46,67],schedul:[14,26],scheduledfuturetask:60,scheduledthreadpoolexecutor:60,screen:[1,12,24],script:[1,26,29,34,46,55],scriptlisten:22,scriptsupportcommand:22,sdkman:57,sdkman_platform:57,sdkman_vers:57,search:[10,13,19,24,34,46,50,52],searcher:1,second:[4,14,28,30,37,39,41,43,45,48,60],section:[26,33],secur:[6,39,63],sed:26,see:[1,5,8,14,19,24,26,33,61,68],seed:[20,38,67],seedoffset:[20,38,67],seeduniquifi:[20,38,67],seen:14,selec:39,select:[1,21,43],semant:5,send:26,sensit:21,sent:26,sep:[5,41],separ:[26,58],seri:26,serial:55,serializ:30,serialpersistentfield:[20,30,38,67],serialversionuid:[20,30,38,67],seriou:39,server:[1,4,5,12,24,25,26,28,31,34,36,37,40,44,46,47,51,53,55,56,58,60],servic:[5,14,28,30,34,60],servlet:[60,61,67],ses:39,session:[1,5,6,8,11,12,24,25,49,63,66],session_id:[51,63],sessionid:[26,51],sessiontimeout:4,set:[1,4,17,26,41,49,54,61],setter:2,setup:15,sever:50,shanghai:58,share:[26,27],sharedloadedclass:40,sharedunloadedclass:40,shell:[26,57,60,66],shift:32,shlvl:57,shoot:28,shortcut:[1,12],should:[5,8,30,34,60],show:[1,24,25,32,35,50,51,52],shown:[5,43,61],shutdown:[24,46],side:37,signal:[19,43,60],significantli:14,similar:[4,21,26,59,60,61],simpl:[10,43,50],simpli:5,simultan:55,sinc:[2,5,10,28,31,38,39,54,55,61,62,66,67],singl:[1,29,34,60,61],site:[54,61],situat:[54,60,67],size:[19,20,38,48,67],sizeandtimebasedrollingpolici:33,sizelimit:26,skip:61,skipjdkmethod:61,sleep:[26,30,43,45,48,60],slf4jlocationawarelog:38,slow:28,smaller:26,socket:19,socketprocessor:60,socketwrapp:60,softwar:61,solv:[28,45],some:[1,19,28,41,45,46,48,60,61],sometim:60,sourc:[10,13,28,43,45,48,50,61,66],space:[14,31,49],spec:31,special:[20,38,50,52,62,67],specif:[2,10,14,17,20,24,25,26,30,31,35,37,38,39,41,45,50,52,54,58,60,61,62,63],specifi:[1,3,5,6,8,10,15,17,20,24,26,28,32,33,34,35,36,38,46,50,55,62,63,68],speed:46,spi:30,split:52,spring:[4,26,28,31,33,62,63,66],springappl:38,springframework:[33,36,38,66],spy:46,ssage:39,stack:[1,8,12,24,28,43,46,50,61,67],stacktrac:26,stage:[22,28],stand:[37,50,52,67],standard:[1,6,8,18,24,59],standardcontextvalv:60,standardenginevalv:60,standardhostvalv:60,standardwrappervalv:60,standbi:43,star:28,start:[5,16,19,26,28,29,31,34,40,46,53],starter:[28,63],startswith:52,startup:[1,55,63],stat:1,statcontrol:1,state:[12,14,26,28,43],statist:[1,14,24,28,37,46],statu:[5,14,51],staturl:51,statuscod:26,step:34,still:[28,48,61],stop:[1,12,15,20,21,24,34,43,47,48,62],store:[62,63],stream:63,stri:39,string:[1,6,10,17,20,22,26,38,43,45,48,52,53,61,66,67],stringbuff:43,stringbuild:61,stringcod:30,stringutil:[8,61],structur:[1,26,46,54,61],stuck:60,style:[4,53],sub:[22,28,39,46,50,61,67],subcal:61,submit:26,subsequ:52,substr:52,succe:[34,46,63,67],succeed:26,success:[1,6,10,15,22,24,26,28,33,37,43,48,68],successfulli:[26,49,58,62,65],sudo:[29,34,43],suffici:55,suffix:8,suggest:[8,68],suitabl:26,sum:61,summari:[3,21,24,39,47,57,58,59],sun:[10,17,19,20,21,30,33,38,43,45,46,47,48,50,54,58,60,61,66,67],sun_standard:58,sunrsasign:[31,58],support:[1,3,5,6,11,14,22,24,26,28,35,39,46,53,54,60,61,66,67,68],suppos:[20,34],sure:[34,55],survivor:31,suspend:[1,28,32],sweeper:60,sync:60,synchron:[26,60,61],synchronzi:60,syntax:[26,30],sys:1,sysenv:[1,12,21,24],sysprop:[1,8,12,21,24,26,59],system:[1,4,10,14,24,26,28,31,33,38,39,43,45,48,57,58,60,61],systemclassload:[33,38,46],systemload:14,tab:[32,57,58],tag:[15,46],take:[1,8,32,33,34,37,41,45,48,55,61,67],taobao:[5,10,22,38,46,50,53,60,62,66],target:[2,5,17,24,26,30,33,34,37,43,45,50,52,54,55,58,62,68],task:[5,14,60],taskthread:60,tbxwzs4s4sbcvh7frbcc7n000000gn:58,tccl:[47,54,61],team:28,ted:39,tee:[1,12,24],tell:67,telnet:[1,4,26,28,34,55,61],telnetport:4,temp:46,templat:26,temporari:26,tenur:31,terfullgc:65,term:57,term_program:57,term_program_vers:57,term_session_id:57,termd:46,termin:[1,5,8,12,26,32,37,39,56,60,61],test:[3,5,7,8,20,22,28,36,37,41,45,47,48,49,50,58,60,61,62,63],testclass:46,testdurexfilt:60,testfilt:[61,67],testthreadblock:60,text:[22,26,46],than:[0,6,14,20,30,38,46,50,60,61,67],thank:[54,61],thei:[19,54,60,61,62,67],them:[29,63,67],therefor:[1,5,37,60,61],thi:[5,8,12,14,19,20,21,22,24,26,28,30,32,34,35,39,43,45,47,48,49,50,52,54,55,56,57,58,59,60,61,63,67],thing:[54,61],think:28,third:22,those:0,thread0:14,thread:[0,1,8,12,21,24,25,28,33,35,46,61,62,67],thread_nam:[47,54,61],threadcommand:60,threadcount:35,threadimpl:60,threadloc:62,threadmxbean:60,threadpoolexecutor:60,three:[22,61,67],threshold:67,through:[4,14,26,28,55,63,66],throwabl:2,throwexp:[2,19,26,67],thrown:[1,2,24,61,67],tick:40,tier:[31,58],time:[0,1,5,8,14,15,24,28,31,32,35,37,39,43,45,46,48,50,54,60,62,63],timed_:43,timed_wai:[14,60],timed_wait:[21,60],timeexpir:26,timefactor:61,timeout:[5,26,39,43,49],timer:[14,43,60],timestamp:[1,5,37,41,62],timetunnel:62,timeunit:[30,43,45,48],timezon:58,tip:[20,62],tmp:[1,3,7,8,9,10,17,22,30,34,36,41,43,45,48,50,57,58,66],tmpdir:[57,58],tochararrai:52,togeth:[5,50],tolowercas:52,tomcat:[14,24,60],too:[5,12,46,50,60,61,62],tool:[1,15,19,24,26,28,34,41,66],toolkit:58,topn:46,tostr:[50,52,61],total:[14,24,31,37,43,46,60,61],totalsizecap:33,totaltim:40,touppercas:52,trace:[2,5,8,12,14,24,26,28,39,41,45,46,47,49,50,67],tracepoint:41,track:61,tradit:[21,33,59],trail:21,transfer:5,transform:[39,48],transformcount:48,travers:[20,50],trick:19,tricki:28,triger:48,trigger:67,trim:[21,52],troubl:28,troubleshoot:[0,1,28,43,61,62],truecolor:57,tty:11,tualmachin:43,tunnel:[1,4,24,28,51,53],tunnel_serv:63,tunnelserv:[4,53],tunnelserverurl:51,turn:[17,19,30,35,37,39,46,49,50,52,54,67],tutori:[1,5,9,10,14,17,18,20,21,23,26,28,30,31,32,33,35,36,37,38,39,40,41,42,45,47,48,49,50,52,54,57,58,59,60,61,62,63,65,66,67,68],twist:46,two:[14,15,24,45,60,67],txt:[7,9,33,45,48],type:[17,19,20,26,33,35,39,43,50,62],typic:2,ult:39,ultim:61,unabl:19,unaccept:28,under:[4,19,29,33,43,46,61],understand:30,undo:32,unexpect:2,unicod:58,unicodebig:58,uniqu:[10,17,20,26,30,33,38,63],unit:[40,62],unix:29,unknown:58,unload:31,unloadedclass:40,unnam:40,unnecessari:34,unsaf:[19,20,38,41,60,67],unstructur:26,until:[26,37],unzip:[16,19,29,34,63],updat:[1,14,15,24,45,46],upload:36,uppercas:46,uptim:14,urjz5l48rpbr2ali5k4v:63,url:[1,26,53,58],urlclassload:30,usag:[16,20,21,28,41,43,59],use:[1,2,4,5,6,8,10,13,15,17,20,22,24,26,28,30,33,36,38,41,45,48,49,50,55,61,62,63,66,67,68],used:[2,5,14,19,22,26,30,31,43,45,46,50,53,59,62,63],useful:[15,28],user:[5,6,10,17,19,22,26,28,29,30,32,33,34,36,37,39,43,45,48,49,55,57,58,63,67,68],user_hom:32,usercontrol:[36,45,48],userdetailsserviceautoconfigur:63,userstat:60,uses:[6,41,66],using:[1,5,7,10,17,20,24,26,28,30,33,34,35,41,46,67],usr:[15,31,57,58],usual:[3,19,26,33,43,55,63],utf8:33,utf:[33,57,58],util:[14,19,22,30,43,50,60,61,66,67],valid:[45,67],valu:[0,1,2,4,6,17,20,21,24,26,28,30,33,35,37,40,41,45,46,49,50,51,55,57,58,60,61,62,63,65,66],value1:38,value2:38,valueiter:66,valueof:[52,61],valv:60,variabl:[1,2,40,41,62,66,67],varieti:[54,61],variou:24,vendor:[31,58],verbos:31,veri:[1,2,28,33,61],verifi:[41,45,48],version:[1,3,6,12,14,15,16,24,26,29,31,33,34,40,43,45,53,58,61,63],via:[0,1,5,8,53,63],view:[1,5,12,15,24,25,28,43,50,52,63],vim:[32,45,48],virtual:[31,58],visit:26,visualvm:57,vmoption:[1,12,24],vmtool:[1,12,19],w0t4p0:57,wai:[2,15,26,34,53,60],wait:[14,21,26,60],waitin:43,wall:41,wangji92:27,wangtao:58,want:[4,5,15,20,28,29,32,33,34,41,45,48,63,67,68],war:33,warn:11,watch:[5,8,12,14,22,24,39,45,46,61],wathc:39,weav:37,web:[33,63],webconsol:[26,28],websocket:[1,28,60],welcom:[26,34],well:0,wget:15,what:[28,61],when:[1,2,5,6,10,12,14,17,19,20,22,26,28,30,33,39,40,45,46,47,48,53,54,61,66,67],where:[5,28,61],whether:[19,26,28,39,62],which:[0,1,2,4,5,10,17,20,26,28,30,33,34,38,39,41,43,53,54,55,60,61,63,66,67],whitespac:21,whole:[60,61],wide:28,wiki:[1,15,21,24,26,43,46,57,58,59,63],wild:17,wildcard:[22,30,35,37,47,50,52,54,61,67],window:[6,28,29],wireshark:57,within:67,without:[0,1,2,12,14,22,28,44,50,55,60],won:61,word:32,work:[1,15,17,19,20,24,28,30,33,41,42,45,48,60],worker:[43,60],wors:28,worthi:[54,61],wrappingrunn:60,write:[1,18,24,49],writeabl:65,written:26,wrong:46,wsfilter:60,www:[13,27],wy7c9w9j5732xbkcyt1mb4g40000gp:23,x86_64:58,xbootclasspath:34,xml:33,xpc_flag:57,xpc_service_nam:57,xpost:26,xterm:57,xxx:46,yet:[5,26,60],you:[0,1,4,5,6,8,10,13,14,15,17,19,20,24,26,28,29,30,32,33,34,36,38,39,41,43,44,45,48,53,54,60,61,62,63,66,67,68],young:[14,60],your:[1,6,15,28,30,61],yourclassnam:33,yum:15,yuqu:27,ywjjcg:7,ywrtaw46ywrtaw4:6,yyyi:33,zero:[1,26],zh_cn:57,zhuyong:[22,49],zip:[3,34],zulu:[1,38]},titles:["<no title>","Advanced Usage","Fundamental Fields in Expressions","Start as a Java Agent","Arthas Properties","Arthas Async Jobs","auth","base64","Batch Processing","cat","classloader","cls","All Commands","Contact Us","dashboard","Docker","Download","dump","echo","FAQ","getstatic","grep","groovy","heapdump","help","history","Http API","IDEA Plugin","Arthas Documentation","Install Arthas","jad","jvm","Arthas Console Keymap","logger","Manually Install Arthas","mbean","mc","monitor","ognl","options","perfcounter","profiler","pwd","Quick Start","quit","redefine","Release Notes","reset","retransform","Log command outputs","sc","session","sm","Arthas Spring Boot Starter","stack","Start Arthas","Stop","sysenv","sysprop","tee","thread","trace","tt","Arthas Tunnel","version","vmoption","vmtool","watch","Web Console"],titleterms:{"\u4f7f\u7528\u53c2\u8003":25,"case":26,"class":[1,10,19,39,43,45,47,48,61,67],"import":22,"null":19,"public":15,"return":[66,67],"static":67,"switch":5,"true":39,One:[26,58],The:41,Use:[5,10,15,16,29,41,45,48,49,67],abov:40,access:26,action:[26,41],address:26,advanc:1,advic:22,after:[37,67],agent:[1,3],all:[12,39,41,47,48,57,58,60,62,65],api:[6,26],append:33,applic:[26,53],artha:[1,4,5,12,15,16,19,28,29,32,34,41,43,53,55,63,68],ask:45,async:[1,5],asynchron:[26,49],attach:19,auth:6,authent:[1,6,26],author:6,background:[5,28],base64:7,base:[15,29],basic:[1,12],bat:34,batch:8,befor:[37,67],best:63,bock:60,boot:[1,16,29,53],browser:[41,68],busiest:60,calcul:60,call:[37,62,67],callback:22,can:19,cancel:5,cat:9,categor:10,central:16,check:[8,43,58,62,67],classformaterror:19,classload:[1,10,30,33,66],classpath:26,close:26,cls:11,cluster:63,collect:41,column:14,command:[5,12,19,26,34,41,43,45,48,49],compat:19,complex:41,condit:[37,54,67],configur:[4,6,41,53],connect:[63,68],consol:[1,6,32,68],constructor:19,contact:13,contain:15,content:28,context:62,cost:[54,61,67],cpu:60,creat:[8,26],custom:32,dashboard:[14,43],data:[1,26,41],debian:29,decod:7,decompil:[30,43],delet:48,demo:[54,61,62,67],deploi:63,descript:55,descriptor:31,detail:[60,67],diagnos:15,diagnosi:55,dingd:13,dingtalk:13,docker:[15,19],document:[16,28,29],doe:[19,67],download:[16,63],dump:[17,23],dynam:61,echo:18,elimin:48,encod:7,endpoint:53,enhanc:[19,26,39],entri:48,environ:57,evalu:37,event:41,except:67,exclud:[41,61,67],execut:[26,41,66],exit:43,expand:66,explan:22,explicitli:48,express:[2,37,54,62,66,67],fail:19,faq:19,featur:[1,28],fedora:29,field:[2,67],file:[7,19,23,31,45,48],filter:[19,37,41,54,61,67],first:60,flame:1,forc:66,foreground:5,format:[19,26,41],framebuf:41,frequent:45,from:[5,7,16],full:[16,29],fundament:2,game:43,gener:41,get:[26,39,41,43,67],getinst:66,getstat:20,github:16,graph:1,grep:21,groovi:22,group:13,hash:66,have:19,header:[6,14],heapdump:23,help:[16,24,29],hierarchi:10,histori:25,hotspot:19,how:[19,60,63],html:41,http:[6,26],idea:27,imag:15,impact:19,inaccuraci:61,includ:[41,61],individu:[57,65],influenc:48,info:60,inform:[33,53,67],input_statu:26,instal:[13,15,29,34],instruct:[13,29],interact:[26,55],intern:14,interrupt:26,interv:60,issu:13,item:[4,37],jad:[30,43,45,48],jar:16,java:[1,3,15,19,26,30,39],jdk9:40,jdk:[15,19,61],jfr:41,job:[1,5,32,49],join:26,json:19,jvm:[1,14,31,40],k8s:[15,19],kei:28,keymap:32,lang:[19,30],layer:66,level:33,limit:[22,61],line:[30,34],linux:[34,43],list:[5,60,62],live:23,load:[10,19],loader:10,locat:[60,67],log:[19,22,49],logger:33,mac:[34,43],main:43,make:26,manag:[15,63],manual:[29,34],map:26,match:[60,67],math:43,maven:16,mbean:35,memori:19,method:[19,30,37,61,62,67],mode:55,modifi:58,monitor:[1,37],more:67,much:19,multipl:61,name:[19,33,66],nativ:19,non:[53,55],note:[14,46],notic:61,number:[10,30,41,66],object:[23,26,67],offlin:[16,19,29],ognl:38,onli:[23,30],option:[1,10,14,17,24,25,30,39,41,45,50,52,60,65,67],order:4,origin:19,other:[1,5,60],out:67,output:[5,7,8,22,26,41,49],overview:26,packag:[15,16,29,39],page:60,paramet:[6,22,35,37,38,54,55,60,61,67],password:6,perfcount:40,perform:19,pid:19,pipe:1,plugin:27,practic:63,print:[30,33,67],problem:61,process:[8,15,19,43],profil:[1,41],properti:[1,4,53,58],provid:60,pull:26,pwd:42,question:45,quick:[15,29,43],quit:44,ratio:60,recommend:[6,29],record:62,redefin:45,redirect:5,relat:[1,31],releas:[16,46],remot:[55,68],replai:62,report:1,request:26,reset:47,resourc:10,respond:19,respons:26,restrict:[45,48],result:[19,26,41,61,66],resum:41,retransform:48,run:[5,8,60],same:[19,67],sampl:[22,41,55,60],save:7,screenshot:14,script:[8,22],search:62,server:[45,48,63,68],session:[26,51],set:39,shortcut:32,show:[10,60],singl:58,skywalk:19,softwar:15,sourc:30,special:[26,33,39,60],specif:67,specifi:[30,41,47,48,60,61,66,67],speecifi:33,spring:53,stack:[54,60],start:[1,3,15,41,43,54,55,61,62,63,67],starter:53,startup:34,state:60,statist:10,statu:[26,41],step:8,stop:[5,41,56],string:30,subclass:67,sudo:55,support:[4,41,50,55],suspend:5,svg:41,sysenv:57,sysprop:58,system:29,target:[19,60,67],tee:59,telnet:6,thead:60,thread:[14,31,43,60],through:68,time:[26,41,61,67],tip:[1,45,48],tmp:23,top:60,trace:[1,19,60,61],trigger:48,tunnel:[63,68],type:10,under:[39,41],uninstal:29,unix:[34,43],unknown:41,unsaf:39,updat:[33,65],upload:[45,48],url:[6,10],urlclassload:10,usag:[1,8,10,14,17,23,24,29,30,31,33,35,37,38,40,45,47,48,50,51,52,53,54,57,58,60,61,62,64,65,67],use:19,user:1,usernam:6,v2015:46,v2016:46,v2017:46,valu:[19,39,67],variabl:[19,57],vers:5,version:[41,64],via:[15,29,41],view:[10,19,33,39,41,48,53,57,60,65],vise:5,vmoption:65,vmtool:66,watch:[1,19,26,43,62,67],web:[1,6,26,68],when:[60,63],where:19,window:[34,55],without:33,work:63}}) \ No newline at end of file diff --git a/en/session.html b/en/session.html new file mode 100644 index 000000000..40ad89e97 --- /dev/null +++ b/en/session.html @@ -0,0 +1,274 @@ + + + + + + + + + + + session — Arthas 3.5.1 documentation + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    + + + + + +
    + +
    + + + + + + + + + + + + + + + + + +
    + + + + +
    +
    +
    +
    + +
    +

    session

    +

    examines the current session,show the current binded processId and the sessionId.

    +
    +

    if exits tunnel server,it will also show agentId、tunnelServerUrl、connected status.

    +

    if exits statUrl,it will also show statUrl.

    +
    +
    +

    Usage

    +
    $ session
    +  Name        Value
    +--------------------------------------------------
    + JAVA_PID    14584
    + SESSION_ID  c2073d3b-443a-4a9b-9249-0c5d24a5756c
    +
    +
    +
    + + +
    + +
    +
    + + +
    + +
    +

    + © Copyright 2018-2020, Alibaba Middleware Group, and contributors + +

    +
    + Built with Sphinx using a theme provided by Read the Docs. + +
    + +
    +
    + +
    + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/en/stop.html b/en/stop.html new file mode 100644 index 000000000..bf8ee25cc --- /dev/null +++ b/en/stop.html @@ -0,0 +1,264 @@ + + + + + + + + + + + Stop — Arthas 3.5.1 documentation + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    + + + + + +
    + +
    + + + + + + + + + + + + + + + + + +
    + + + + +
    +
    +
    +
    + +
    +

    Stop

    +

    terminates the Arthas server, all the Arthas clients connecting to this server will be disconnected.

    +
    +

    the class redefined by redefine command will not be reset.

    +
    +
    + + +
    + +
    +
    + + +
    + +
    +

    + © Copyright 2018-2020, Alibaba Middleware Group, and contributors + +

    +
    + Built with Sphinx using a theme provided by Read the Docs. + +
    + +
    +
    + +
    + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/en/version.html b/en/version.html new file mode 100644 index 000000000..cb72ce470 --- /dev/null +++ b/en/version.html @@ -0,0 +1,267 @@ + + + + + + + + + + + version — Arthas 3.5.1 documentation + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    + + + + + +
    + +
    + + + + + + + + + + + + + + + + + +
    + + + + +
    +
    +
    +
    + +
    +

    version

    +

    prints out Arthas’s version.

    +
    +

    Usage

    +
    $ version
    + 3.5.1
    +
    +
    +
    + + +
    + +
    +
    + + +
    + +
    +

    + © Copyright 2018-2020, Alibaba Middleware Group, and contributors + +

    +
    + Built with Sphinx using a theme provided by Read the Docs. + +
    + +
    +
    + +
    + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/faq.html b/faq.html index 2bf66ac9a..447964381 100644 --- a/faq.html +++ b/faq.html @@ -243,7 +243,10 @@

    能不能查看内存里某个变量的值

    -

    不能。但可以用一些技巧,用tt命令拦截到对象,或者从静态函数里取到对象。

    +
      +
    1. 可以使用vmtool命令。

    2. +
    3. 可以用一些技巧,用tt命令拦截到对象,或者从静态函数里取到对象。

    4. +

    方法同名过滤

    diff --git a/help.html b/help.html new file mode 100644 index 000000000..d0478e7bc --- /dev/null +++ b/help.html @@ -0,0 +1,424 @@ + + + + + + + + + + + help — Arthas 3.5.1 文档 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    + + + + + +
    + +
    + + + + + + + + + + + + + + + + + +
    + + + + +
    +
    +
    +
    + +
    +

    help

    +

    查看命令帮助信息,可以查看当前arthas版本支持的指令,或者查看具体指令的使用说明。

    +
    +

    [help 指令]的等同于[指令 -help],都是查看具体指令的使用说明。

    +
    +
    +

    参数说明

    + + + + + + + + + + + + + + + + + +
    参数名称参数说明
    不接参数查询当前arthas版本支持的指令以及指令描述
    [name:]查询具体指令的使用说明
    +
    +

    使用参考

    +
    $ help
    + NAME         DESCRIPTION
    + help         Display Arthas Help
    + auth         Authenticates the current session
    + keymap       Display all the available keymap for the specified connection.
    + sc           Search all the classes loaded by JVM
    + sm           Search the method of classes loaded by JVM
    + classloader  Show classloader info
    + jad          Decompile class
    + getstatic    Show the static field of a class
    + monitor      Monitor method execution statistics, e.g. total/success/failure count, average rt, fail rate, etc.
    + stack        Display the stack trace for the specified class and method
    + thread       Display thread info, thread stack
    + trace        Trace the execution time of specified method invocation.
    + watch        Display the input/output parameter, return object, and thrown exception of specified method invocation
    + tt           Time Tunnel
    + jvm          Display the target JVM information
    + perfcounter  Display the perf counter information.
    + ognl         Execute ognl expression.
    + mc           Memory compiler, compiles java files into bytecode and class files in memory.
    + redefine     Redefine classes. @see Instrumentation#redefineClasses(ClassDefinition...)
    + retransform  Retransform classes. @see Instrumentation#retransformClasses(Class...)
    + dashboard    Overview of target jvm's thread, memory, gc, vm, tomcat info.
    + dump         Dump class byte array from JVM
    + heapdump     Heap dump
    + options      View and change various Arthas options
    + cls          Clear the screen
    + reset        Reset all the enhanced classes
    + version      Display Arthas version
    + session      Display current session information
    + sysprop      Display, and change the system properties.
    + sysenv       Display the system env.
    + vmoption     Display, and update the vm diagnostic options.
    + logger       Print logger info, and update the logger level
    + history      Display command history
    + cat          Concatenate and print files
    + base64       Encode and decode using Base64 representation
    + echo         write arguments to the standard output
    + pwd          Return working directory name
    + mbean        Display the mbean information
    + grep         grep command for pipes.
    + tee          tee command for pipes.
    + profiler     Async Profiler. https://github.com/jvm-profiling-tools/async-profiler
    + stop         Stop/Shutdown Arthas server and exit the console.
    + 
    + 
    +
    +
     $ help dashboard
    +  USAGE:
    +   dashboard [-h] [-i <value>] [-n <value>]
    +
    + SUMMARY:
    +   Overview of target jvm's thread, memory, gc, vm, tomcat info.
    +
    + EXAMPLES:
    +   dashboard
    +   dashboard -n 10
    +   dashboard -i 2000
    +
    + WIKI:
    +   https://arthas.aliyun.com/doc/dashboard
    +
    + OPTIONS:
    + -h, --help                              this help
    + -i, --interval <value>                  The interval (in ms) between two executions, default is 5000 ms.
    + -n, --number-of-execution <value>       The number of times this command will be executed.
    +
    +
    +
    + + +
    + +
    + + +
    +
    + +
    + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/history.html b/history.html new file mode 100644 index 000000000..00826e513 --- /dev/null +++ b/history.html @@ -0,0 +1,368 @@ + + + + + + + + + + + history — Arthas 3.5.1 文档 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    + + + + + +
    + +
    + + + + + + + + + + + + + + + + + +
    + + + + +
    +
    +
    +
    + +
    +

    history

    +

    打印命令历史。

    +
    +

    历史指令会通过一个名叫history的文件持久化,所以history指令可以查看当前arthas服务器的所有历史命令,而不仅只是当前次会话使用过的命令。

    +
    +
    +

    参数说明

    + + + + + + + + + + + + + + + + + +
    参数名称参数说明
    [c:]清空历史指令
    [n:]显示最近执行的n条指令
    +
    +

    使用参考

    +
    #查看最近执行的3条指令
    +$ history 3
    +  269  thread
    +  270  cls
    +  271  history 3
    +
    +
     #清空指令
    + $ history -c
    + $ history 3
    +  1  history 3
    +
    +
    +
    + + +
    + +
    + + +
    +
    + +
    + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/index.html b/index.html index d8d118c36..a71e0d273 100644 --- a/index.html +++ b/index.html @@ -202,6 +202,7 @@
  • 是否有一个全局视角来查看系统的运行状况?

  • 有什么办法可以监控到JVM的实时运行状态?

  • 怎么快速定位应用的热点,生成火焰图?

  • +
  • 怎样直接从JVM内查找某个类的实例?

  • Arthas支持JDK 6+,支持Linux/Mac/Windows,采用命令行交互模式,同时提供丰富的 Tab 自动补全功能,进一步方便进行问题的定位和诊断。

    如果您在使用Arthas,请让我们知道,您的使用对我们非常重要:查看

    diff --git a/keymap.html b/keymap.html index 5b40eebc0..430d71a05 100644 --- a/keymap.html +++ b/keymap.html @@ -39,6 +39,8 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    + + + + + +
    + +
    + + + + + + + + + + + + + + + + + +
    + + + + +
    +
    +
    +
    + +
    +

    quit

    +

    退出当前 Arthas 客户端,其他 Arthas 客户端不受影响。等同于exitlogoutq三个指令。

    +
    +

    只是退出当前Arthas客户端,Arthas的服务器端并没有关闭,所做的修改也不会被重置。

    +
    +
    + + +
    + +
    + + +
    +
    + +
    + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/reset.html b/reset.html index 14e040687..179376834 100644 --- a/reset.html +++ b/reset.html @@ -39,6 +39,8 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    + + + + + +
    + +
    + + + + + + + + + + + + + + + + + +
    + + + + +
    +
    +
    +
    + +
    +

    session

    +

    查看当前会话的信息,显示当前绑定的pid以及会话id。

    +
    +

    如果配置了tunnel server,会追加打印 代理id、tunnel服务器的url以及连接状态。

    +

    如果使用了staturl做统计,会追加显示statUrl地址。

    +
    +
    +

    使用参考

    +
    $ session
    +  Name        Value
    +--------------------------------------------------
    + JAVA_PID    14584
    + SESSION_ID  c2073d3b-443a-4a9b-9249-0c5d24a5756c
    + 
    +
    +
    +
    + + +
    + +
    + + +
    +
    + +
    + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/stop.html b/stop.html new file mode 100644 index 000000000..77adcf9e1 --- /dev/null +++ b/stop.html @@ -0,0 +1,330 @@ + + + + + + + + + + + Stop — Arthas 3.5.1 文档 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    + + + + + +
    + +
    + + + + + + + + + + + + + + + + + +
    + + + + +
    +
    +
    +
    + +
    +

    Stop

    +

    关闭 Arthas 服务端,所有 Arthas 客户端全部退出。

    +
    +

    关闭Arthas服务器之前,会重置掉所有做过的增强类。但是用redefine重加载的类内容不会被重置。

    +
    +
    + + +
    + +
    + + +
    +
    + +
    + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/tunnel.html b/tunnel.html index 938bc2696..06b982fdd 100644 --- a/tunnel.html +++ b/tunnel.html @@ -40,7 +40,7 @@ - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    + + + + + +
    + +
    + + + + + + + + + + + + + + + + + +
    + + + + +
    +
    +
    +
    + +
    +

    version

    +

    输出当前目标 Java 进程所加载的 Arthas 版本号

    +
    +

    使用参考

    +
    $ version
    + 3.5.1
    +
    +
    +
    + + +
    + +
    + + +
    +
    + +
    + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file