diff --git a/README.html b/README.html index 25d2f41f9..179556043 100644 --- a/README.html +++ b/README.html @@ -8,7 +8,7 @@ - <no title> — Arthas 3.5.6 文档 + <no title> — Arthas 3.6.0 文档 @@ -72,7 +72,7 @@
- 3.5.6 + 3.6.0
diff --git a/_sources/options.md.txt b/_sources/options.md.txt index 5db02d86e..859a771b7 100644 --- a/_sources/options.md.txt +++ b/_sources/options.md.txt @@ -16,42 +16,51 @@ options | save-result | false | 是否打开执行结果存日志功能,打开之后所有命令的运行结果都将保存到`~/logs/arthas-cache/result.log`中 | | job-timeout | 1d | 异步后台任务的默认超时时间,超过这个时间,任务自动停止;比如设置 1d, 2h, 3m, 25s,分别代表天、小时、分、秒 | | print-parent-fields | true | 是否打印在parent class里的filed | +| verbose | false | 是否打印更多详细信息 | +| strict | true | 是否启用strict模式 | ### 查看所有的options ```bash $ options - LEVEL TYPE NAME VALUE SUMMARY DESCRIPTION --------------------------------------------------------------------------------------------- - 0 bool unsafe false Option to support This option enables to proxy function - ean system-level class ality of JVM classes. Due to serious - security risk a JVM crash is possibly - be introduced. Do not activate it un - less you are able to manage. - 1 bool dump false Option to dump the This option enables the enhanced clas - ean enhanced classes ses to be dumped to external file for - further de-compilation and analysis. - 1 bool batch-re-tr true Option to support This options enables to reTransform c - ean ansform batch reTransform lasses with batch mode. - Class - 2 bool json-format false Option to support This option enables to format object - ean JSON format of obj output with JSON when -x option selec - ect output ted. - 1 bool disable-sub false Option to control This option disable to include sub cl - ean -class include sub class ass when matching class. - when class matchin - g - 1 bool save-result false Option to print co This option enables to save each comm - ean mmand's result to and's result to log file, which path - log file is ${user.home}/logs/arthas-cache/res - ult.log. - 2 Stri job-timeout 1d Option to job time This option setting job timeout,The u - ng out nit can be d, h, m, s for day, hour, - minute, second. 1d is one day in defa - ult - 1 bool print-paren true Option to print al This option enables print files in pa - ean t-fields l fileds in parent rent class, default value true. - class + LEVEL TYPE NAME VALUE SUMMARY DESCRIPTION +------------------------------------------------------------------------------------------------------- + 0 boolea unsafe false Option to support sy This option enables to proxy functionality + n stem-level class of JVM classes. Due to serious security r + isk a JVM crash is possibly be introduced. + Do not activate it unless you are able to + manage. + 1 boolea dump false Option to dump the e This option enables the enhanced classes t + n nhanced classes o be dumped to external file for further d + e-compilation and analysis. + 1 boolea batch-re-tra true Option to support ba This options enables to reTransform classe + n nsform tch reTransform Clas s with batch mode. + s + 2 boolea json-format false Option to support JS This option enables to format object outpu + n ON format of object t with JSON when -x option selected. + output + 1 boolea disable-sub- false Option to control in This option disable to include sub class w + n class clude sub class when hen matching class. + class matching + 1 boolea support-defa true Option to control in This option disable to include default met + n ult-method clude default method hod in interface when matching class. + in interface when c + lass matching + 1 boolea save-result false Option to print comm This option enables to save each command's + n and's result to log result to log file, which path is ${user. + file home}/logs/arthas-cache/result.log. + 2 String job-timeout 1d Option to job timeou This option setting job timeout,The unit c + t an be d, h, m, s for day, hour, minute, se + cond. 1d is one day in default + 1 boolea print-parent true Option to print all This option enables print files in parent + n -fields fileds in parent cla class, default value true. + ss + 1 boolea verbose false Option to print verb This option enables print verbose informat + n ose information ion, default value false. + 1 boolea strict true Option to strict mod By default, strict mode is true, not allow + n e ed to set object properties. Want to set o + bject properties, execute `options strict + false` ``` @@ -96,3 +105,26 @@ $ watch java.lang.invoke.Invokers callSiteForm Press Q or Ctrl+C to abort. Affect(class count: 1 , method count: 1) cost in 61 ms, listenerId: 1 ``` + +### 关闭strict模式,允许在ognl表达式里设置对象属性 + +> since 3.6.0 + +对于新用户,在编写ognl表达式时,可能会出现误用。 + +比如对于`Student`,判断年龄等于18时,可能条件表达式会误写为`target.age=18`,这个表达式实际上是把当前对象的`age`设置为18了。正确的写法是`target.age==18`。 + +为了防止出现类似上面的误用,Arthas默认启用`strict`模式,在`ognl`表达式里,禁止更新对象的Property或者调用`setter`函数。 + +以`MathGame`为例,会出现以下的错误提示。 + +``` +$ watch demo.MathGame primeFactors 'target' 'target.illegalArgumentCount=1' +Press Q or Ctrl+C to abort. +Affect(class count: 1 , method count: 1) cost in 206 ms, listenerId: 1 +watch failed, condition is: target.illegalArgumentCount=1, express is: target, By default, strict mode is true, not allowed to set object properties. Want to set object properties, execute `options strict false`, visit /Users/admin/logs/arthas/arthas.log for more details. +``` + +用户如果确定要在`ognl`表达式里更新对象,可以执行`options strict false`,关闭`strict`模式。 + +* 更多信息参考: https://github.com/alibaba/arthas/issues/2128 \ No newline at end of file diff --git a/_static/documentation_options.js b/_static/documentation_options.js index f6e5bba1c..86bd834bb 100644 --- a/_static/documentation_options.js +++ b/_static/documentation_options.js @@ -1,6 +1,6 @@ var DOCUMENTATION_OPTIONS = { URL_ROOT: document.getElementById("documentation_options").getAttribute('data-url_root'), - VERSION: '3.5.6', + VERSION: '3.6.0', LANGUAGE: 'zh_CN', COLLAPSE_INDEX: false, FILE_SUFFIX: '.html', diff --git a/advanced-use.html b/advanced-use.html index ea22b6eb2..16a0ea2ae 100644 --- a/advanced-use.html +++ b/advanced-use.html @@ -8,7 +8,7 @@ - 进阶使用 — Arthas 3.5.6 文档 + 进阶使用 — Arthas 3.6.0 文档 @@ -74,7 +74,7 @@
- 3.5.6 + 3.6.0
diff --git a/advice-class.html b/advice-class.html index 51a01ce18..f85f43e55 100644 --- a/advice-class.html +++ b/advice-class.html @@ -8,7 +8,7 @@ - 表达式核心变量 — Arthas 3.5.6 文档 + 表达式核心变量 — Arthas 3.6.0 文档 @@ -72,7 +72,7 @@
- 3.5.6 + 3.6.0
diff --git a/agent.html b/agent.html index 7ed4b8716..16ea388cb 100644 --- a/agent.html +++ b/agent.html @@ -8,7 +8,7 @@ - 以Java Agent的方式启动 — Arthas 3.5.6 文档 + 以Java Agent的方式启动 — Arthas 3.6.0 文档 @@ -74,7 +74,7 @@
- 3.5.6 + 3.6.0
diff --git a/arthas-properties.html b/arthas-properties.html index b5fb6256a..3c271f416 100644 --- a/arthas-properties.html +++ b/arthas-properties.html @@ -8,7 +8,7 @@ - Arthas Properties — Arthas 3.5.6 文档 + Arthas Properties — Arthas 3.6.0 文档 @@ -74,7 +74,7 @@
- 3.5.6 + 3.6.0
diff --git a/arthas3.html b/arthas3.html index 537a0b932..684b3bcaa 100644 --- a/arthas3.html +++ b/arthas3.html @@ -8,7 +8,7 @@ - Arthas3.0的新特性 — Arthas 3.5.6 文档 + Arthas3.0的新特性 — Arthas 3.6.0 文档 @@ -72,7 +72,7 @@
- 3.5.6 + 3.6.0
diff --git a/arthas_3_0/new_feature.html b/arthas_3_0/new_feature.html index de89d1872..44ae00bbe 100644 --- a/arthas_3_0/new_feature.html +++ b/arthas_3_0/new_feature.html @@ -8,7 +8,7 @@ - Arthas 3.0新特性介绍 — Arthas 3.5.6 文档 + Arthas 3.0新特性介绍 — Arthas 3.6.0 文档 @@ -72,7 +72,7 @@
- 3.5.6 + 3.6.0
diff --git a/async.html b/async.html index b9b529d49..c9d0d738f 100644 --- a/async.html +++ b/async.html @@ -8,7 +8,7 @@ - Arthas后台异步任务 — Arthas 3.5.6 文档 + Arthas后台异步任务 — Arthas 3.6.0 文档 @@ -74,7 +74,7 @@
- 3.5.6 + 3.6.0
diff --git a/auth.html b/auth.html index 91340ddea..f6872b582 100644 --- a/auth.html +++ b/auth.html @@ -8,7 +8,7 @@ - auth — Arthas 3.5.6 文档 + auth — Arthas 3.6.0 文档 @@ -74,7 +74,7 @@
- 3.5.6 + 3.6.0
diff --git a/base64.html b/base64.html index 21833b5e4..63d238096 100644 --- a/base64.html +++ b/base64.html @@ -8,7 +8,7 @@ - base64 — Arthas 3.5.6 文档 + base64 — Arthas 3.6.0 文档 @@ -74,7 +74,7 @@
- 3.5.6 + 3.6.0
diff --git a/batch-support.html b/batch-support.html index fbad9eb00..d72140558 100644 --- a/batch-support.html +++ b/batch-support.html @@ -8,7 +8,7 @@ - 批处理功能 — Arthas 3.5.6 文档 + 批处理功能 — Arthas 3.6.0 文档 @@ -74,7 +74,7 @@
- 3.5.6 + 3.6.0
diff --git a/cat.html b/cat.html index 7767d9014..97856a2e9 100644 --- a/cat.html +++ b/cat.html @@ -8,7 +8,7 @@ - cat — Arthas 3.5.6 文档 + cat — Arthas 3.6.0 文档 @@ -74,7 +74,7 @@
- 3.5.6 + 3.6.0
diff --git a/classloader.html b/classloader.html index e46bce61e..4bfe9b1a1 100644 --- a/classloader.html +++ b/classloader.html @@ -8,7 +8,7 @@ - classloader — Arthas 3.5.6 文档 + classloader — Arthas 3.6.0 文档 @@ -74,7 +74,7 @@
- 3.5.6 + 3.6.0
diff --git a/cls.html b/cls.html index 8f1b885d9..8fedef6b8 100644 --- a/cls.html +++ b/cls.html @@ -8,7 +8,7 @@ - cls — Arthas 3.5.6 文档 + cls — Arthas 3.6.0 文档 @@ -74,7 +74,7 @@
- 3.5.6 + 3.6.0
diff --git a/commands.html b/commands.html index a58177ce6..c39d174cc 100644 --- a/commands.html +++ b/commands.html @@ -8,7 +8,7 @@ - 命令列表 — Arthas 3.5.6 文档 + 命令列表 — Arthas 3.6.0 文档 @@ -74,7 +74,7 @@
- 3.5.6 + 3.6.0
diff --git a/contact-us.html b/contact-us.html index 60aef70a0..d609831d8 100644 --- a/contact-us.html +++ b/contact-us.html @@ -8,7 +8,7 @@ - 联系我们 — Arthas 3.5.6 文档 + 联系我们 — Arthas 3.6.0 文档 @@ -73,7 +73,7 @@
- 3.5.6 + 3.6.0
diff --git a/dashboard.html b/dashboard.html index f7b5c316b..5c2697894 100644 --- a/dashboard.html +++ b/dashboard.html @@ -8,7 +8,7 @@ - dashboard — Arthas 3.5.6 文档 + dashboard — Arthas 3.6.0 文档 @@ -74,7 +74,7 @@
- 3.5.6 + 3.6.0
diff --git a/docker.html b/docker.html index 2bc5c1cea..67d430022 100644 --- a/docker.html +++ b/docker.html @@ -8,7 +8,7 @@ - Docker — Arthas 3.5.6 文档 + Docker — Arthas 3.6.0 文档 @@ -74,7 +74,7 @@
- 3.5.6 + 3.6.0
diff --git a/download.html b/download.html index 321f2fa9c..193f358ba 100644 --- a/download.html +++ b/download.html @@ -8,7 +8,7 @@ - 下载 — Arthas 3.5.6 文档 + 下载 — Arthas 3.6.0 文档 @@ -74,7 +74,7 @@
- 3.5.6 + 3.6.0
diff --git a/dump.html b/dump.html index 70dffab3d..04621d1c9 100644 --- a/dump.html +++ b/dump.html @@ -8,7 +8,7 @@ - dump — Arthas 3.5.6 文档 + dump — Arthas 3.6.0 文档 @@ -74,7 +74,7 @@
- 3.5.6 + 3.6.0
diff --git a/echo.html b/echo.html index 50715d06f..869901a73 100644 --- a/echo.html +++ b/echo.html @@ -8,7 +8,7 @@ - echo — Arthas 3.5.6 文档 + echo — Arthas 3.6.0 文档 @@ -74,7 +74,7 @@
- 3.5.6 + 3.6.0
diff --git a/en/.buildinfo b/en/.buildinfo index 44aa033e1..c6d2a82f0 100644 --- a/en/.buildinfo +++ b/en/.buildinfo @@ -1,4 +1,4 @@ # Sphinx build info version 1 # This file hashes the configuration used when building these files. When it is not found, a full rebuild will be done. -config: 20cef68d6d8ef26763caeb64247d3070 +config: 28bddd0f1f169a517644caa143d60952 tags: 645f666f9bcd5a90fca523b33c5a78b7 diff --git a/en/.doctrees/README.doctree b/en/.doctrees/README.doctree index bc69afbb6..bf446bfae 100644 Binary files a/en/.doctrees/README.doctree and b/en/.doctrees/README.doctree differ diff --git a/en/.doctrees/advanced-use.doctree b/en/.doctrees/advanced-use.doctree index 69c52ebe9..b333c97d9 100644 Binary files a/en/.doctrees/advanced-use.doctree and b/en/.doctrees/advanced-use.doctree differ diff --git a/en/.doctrees/advice-class.doctree b/en/.doctrees/advice-class.doctree index 5c05a8aef..f188bdc50 100644 Binary files a/en/.doctrees/advice-class.doctree and b/en/.doctrees/advice-class.doctree differ diff --git a/en/.doctrees/agent.doctree b/en/.doctrees/agent.doctree index d17bff4f2..ac5909c05 100644 Binary files a/en/.doctrees/agent.doctree and b/en/.doctrees/agent.doctree differ diff --git a/en/.doctrees/arthas-properties.doctree b/en/.doctrees/arthas-properties.doctree index c7b895b26..16fa177eb 100644 Binary files a/en/.doctrees/arthas-properties.doctree and b/en/.doctrees/arthas-properties.doctree differ diff --git a/en/.doctrees/async.doctree b/en/.doctrees/async.doctree index f5a235480..c9adcd33b 100644 Binary files a/en/.doctrees/async.doctree and b/en/.doctrees/async.doctree differ diff --git a/en/.doctrees/auth.doctree b/en/.doctrees/auth.doctree index b6d2ef5df..8a3d3fe1b 100644 Binary files a/en/.doctrees/auth.doctree and b/en/.doctrees/auth.doctree differ diff --git a/en/.doctrees/base64.doctree b/en/.doctrees/base64.doctree index 93aec1e53..ac6b4ed49 100644 Binary files a/en/.doctrees/base64.doctree and b/en/.doctrees/base64.doctree differ diff --git a/en/.doctrees/batch-support.doctree b/en/.doctrees/batch-support.doctree index e9c90d9f7..70a165da8 100644 Binary files a/en/.doctrees/batch-support.doctree and b/en/.doctrees/batch-support.doctree differ diff --git a/en/.doctrees/cat.doctree b/en/.doctrees/cat.doctree index e84192bfb..5d9fb2446 100644 Binary files a/en/.doctrees/cat.doctree and b/en/.doctrees/cat.doctree differ diff --git a/en/.doctrees/classloader.doctree b/en/.doctrees/classloader.doctree index 74b4a302d..c0e76376f 100644 Binary files a/en/.doctrees/classloader.doctree and b/en/.doctrees/classloader.doctree differ diff --git a/en/.doctrees/cls.doctree b/en/.doctrees/cls.doctree index ce74d57f1..59455b1d5 100644 Binary files a/en/.doctrees/cls.doctree and b/en/.doctrees/cls.doctree differ diff --git a/en/.doctrees/commands.doctree b/en/.doctrees/commands.doctree index fa936fd65..ff37baa7f 100644 Binary files a/en/.doctrees/commands.doctree and b/en/.doctrees/commands.doctree differ diff --git a/en/.doctrees/contact-us.doctree b/en/.doctrees/contact-us.doctree index ebe5ab567..f1915c80f 100644 Binary files a/en/.doctrees/contact-us.doctree and b/en/.doctrees/contact-us.doctree differ diff --git a/en/.doctrees/dashboard.doctree b/en/.doctrees/dashboard.doctree index 91e3de022..639a1a26d 100644 Binary files a/en/.doctrees/dashboard.doctree and b/en/.doctrees/dashboard.doctree differ diff --git a/en/.doctrees/docker.doctree b/en/.doctrees/docker.doctree index 331ddac50..94e5fed92 100644 Binary files a/en/.doctrees/docker.doctree and b/en/.doctrees/docker.doctree differ diff --git a/en/.doctrees/download.doctree b/en/.doctrees/download.doctree index ea9c1f9ef..51bc7afe8 100644 Binary files a/en/.doctrees/download.doctree and b/en/.doctrees/download.doctree differ diff --git a/en/.doctrees/dump.doctree b/en/.doctrees/dump.doctree index e0e228b67..10c52a3bf 100644 Binary files a/en/.doctrees/dump.doctree and b/en/.doctrees/dump.doctree differ diff --git a/en/.doctrees/echo.doctree b/en/.doctrees/echo.doctree index b637e206a..aa757e850 100644 Binary files a/en/.doctrees/echo.doctree and b/en/.doctrees/echo.doctree differ diff --git a/en/.doctrees/environment.pickle b/en/.doctrees/environment.pickle index d40f4af96..f7128b028 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 bd26e78d7..905c9d0c2 100644 Binary files a/en/.doctrees/faq.doctree and b/en/.doctrees/faq.doctree differ diff --git a/en/.doctrees/getstatic.doctree b/en/.doctrees/getstatic.doctree index b78406e44..da431ca2c 100644 Binary files a/en/.doctrees/getstatic.doctree and b/en/.doctrees/getstatic.doctree differ diff --git a/en/.doctrees/grep.doctree b/en/.doctrees/grep.doctree index a0b646754..2a53998df 100644 Binary files a/en/.doctrees/grep.doctree and b/en/.doctrees/grep.doctree differ diff --git a/en/.doctrees/groovy.doctree b/en/.doctrees/groovy.doctree index 8f4d23a85..e25f1cb29 100644 Binary files a/en/.doctrees/groovy.doctree and b/en/.doctrees/groovy.doctree differ diff --git a/en/.doctrees/heapdump.doctree b/en/.doctrees/heapdump.doctree index 94adf2f35..7d9584032 100644 Binary files a/en/.doctrees/heapdump.doctree and b/en/.doctrees/heapdump.doctree differ diff --git a/en/.doctrees/help.doctree b/en/.doctrees/help.doctree index b9640a58d..175856c6d 100644 Binary files a/en/.doctrees/help.doctree and b/en/.doctrees/help.doctree differ diff --git a/en/.doctrees/history.doctree b/en/.doctrees/history.doctree index 2ea78abe2..ca430c98e 100644 Binary files a/en/.doctrees/history.doctree and b/en/.doctrees/history.doctree differ diff --git a/en/.doctrees/http-api.doctree b/en/.doctrees/http-api.doctree index 40c4db776..127f6d9f3 100644 Binary files a/en/.doctrees/http-api.doctree and b/en/.doctrees/http-api.doctree differ diff --git a/en/.doctrees/idea-plugin.doctree b/en/.doctrees/idea-plugin.doctree index b31e484cf..38b3a1427 100644 Binary files a/en/.doctrees/idea-plugin.doctree and b/en/.doctrees/idea-plugin.doctree differ diff --git a/en/.doctrees/index.doctree b/en/.doctrees/index.doctree index 7af0803dd..ecba63930 100644 Binary files a/en/.doctrees/index.doctree and b/en/.doctrees/index.doctree differ diff --git a/en/.doctrees/install-detail.doctree b/en/.doctrees/install-detail.doctree index 03d72b724..8853c2ad5 100644 Binary files a/en/.doctrees/install-detail.doctree and b/en/.doctrees/install-detail.doctree differ diff --git a/en/.doctrees/jad.doctree b/en/.doctrees/jad.doctree index 28a1bf7e7..f5e5f0128 100644 Binary files a/en/.doctrees/jad.doctree and b/en/.doctrees/jad.doctree differ diff --git a/en/.doctrees/jvm.doctree b/en/.doctrees/jvm.doctree index 040fe8064..c39542244 100644 Binary files a/en/.doctrees/jvm.doctree and b/en/.doctrees/jvm.doctree differ diff --git a/en/.doctrees/keymap.doctree b/en/.doctrees/keymap.doctree index eb2891c40..f2ff0fea2 100644 Binary files a/en/.doctrees/keymap.doctree and b/en/.doctrees/keymap.doctree differ diff --git a/en/.doctrees/logger.doctree b/en/.doctrees/logger.doctree index 5560108ad..10a0f511b 100644 Binary files a/en/.doctrees/logger.doctree and b/en/.doctrees/logger.doctree differ diff --git a/en/.doctrees/manual-install.doctree b/en/.doctrees/manual-install.doctree index d243d3afc..7d9ff7d93 100644 Binary files a/en/.doctrees/manual-install.doctree and b/en/.doctrees/manual-install.doctree differ diff --git a/en/.doctrees/mbean.doctree b/en/.doctrees/mbean.doctree index d5fcef686..becbdf05b 100644 Binary files a/en/.doctrees/mbean.doctree and b/en/.doctrees/mbean.doctree differ diff --git a/en/.doctrees/mc.doctree b/en/.doctrees/mc.doctree index c4f386150..faa96e35f 100644 Binary files a/en/.doctrees/mc.doctree and b/en/.doctrees/mc.doctree differ diff --git a/en/.doctrees/memory.doctree b/en/.doctrees/memory.doctree index 8bae658b4..c600c2d19 100644 Binary files a/en/.doctrees/memory.doctree and b/en/.doctrees/memory.doctree differ diff --git a/en/.doctrees/monitor.doctree b/en/.doctrees/monitor.doctree index 613dea774..85304d775 100644 Binary files a/en/.doctrees/monitor.doctree and b/en/.doctrees/monitor.doctree differ diff --git a/en/.doctrees/ognl.doctree b/en/.doctrees/ognl.doctree index 0f15175e8..b07690356 100644 Binary files a/en/.doctrees/ognl.doctree and b/en/.doctrees/ognl.doctree differ diff --git a/en/.doctrees/options.doctree b/en/.doctrees/options.doctree index bf0e878fe..35cd67c5d 100644 Binary files a/en/.doctrees/options.doctree and b/en/.doctrees/options.doctree differ diff --git a/en/.doctrees/perfcounter.doctree b/en/.doctrees/perfcounter.doctree index b8fd702b1..331d53df2 100644 Binary files a/en/.doctrees/perfcounter.doctree and b/en/.doctrees/perfcounter.doctree differ diff --git a/en/.doctrees/profiler.doctree b/en/.doctrees/profiler.doctree index 0276a57b9..990faad99 100644 Binary files a/en/.doctrees/profiler.doctree and b/en/.doctrees/profiler.doctree differ diff --git a/en/.doctrees/pwd.doctree b/en/.doctrees/pwd.doctree index 02bdd9239..38792e71a 100644 Binary files a/en/.doctrees/pwd.doctree and b/en/.doctrees/pwd.doctree differ diff --git a/en/.doctrees/quick-start.doctree b/en/.doctrees/quick-start.doctree index 82d886eaa..a25526205 100644 Binary files a/en/.doctrees/quick-start.doctree and b/en/.doctrees/quick-start.doctree differ diff --git a/en/.doctrees/quit.doctree b/en/.doctrees/quit.doctree index 2b27b2658..b0ecd1d6d 100644 Binary files a/en/.doctrees/quit.doctree and b/en/.doctrees/quit.doctree differ diff --git a/en/.doctrees/redefine.doctree b/en/.doctrees/redefine.doctree index 9a77ba907..5872cde9c 100644 Binary files a/en/.doctrees/redefine.doctree and b/en/.doctrees/redefine.doctree differ diff --git a/en/.doctrees/release-notes.doctree b/en/.doctrees/release-notes.doctree index 9d8dea832..68bb88198 100644 Binary files a/en/.doctrees/release-notes.doctree and b/en/.doctrees/release-notes.doctree differ diff --git a/en/.doctrees/reset.doctree b/en/.doctrees/reset.doctree index 212b93a02..0c76f7f7b 100644 Binary files a/en/.doctrees/reset.doctree and b/en/.doctrees/reset.doctree differ diff --git a/en/.doctrees/retransform.doctree b/en/.doctrees/retransform.doctree index 3148fe60c..52d50ebef 100644 Binary files a/en/.doctrees/retransform.doctree and b/en/.doctrees/retransform.doctree differ diff --git a/en/.doctrees/save-log.doctree b/en/.doctrees/save-log.doctree index 51e789254..547a16843 100644 Binary files a/en/.doctrees/save-log.doctree and b/en/.doctrees/save-log.doctree differ diff --git a/en/.doctrees/sc.doctree b/en/.doctrees/sc.doctree index 594948793..7596c0f3d 100644 Binary files a/en/.doctrees/sc.doctree and b/en/.doctrees/sc.doctree differ diff --git a/en/.doctrees/session.doctree b/en/.doctrees/session.doctree index 032da6aa9..2ca23738d 100644 Binary files a/en/.doctrees/session.doctree and b/en/.doctrees/session.doctree differ diff --git a/en/.doctrees/sm.doctree b/en/.doctrees/sm.doctree index f728ab4c5..217072919 100644 Binary files a/en/.doctrees/sm.doctree and b/en/.doctrees/sm.doctree differ diff --git a/en/.doctrees/spring-boot-starter.doctree b/en/.doctrees/spring-boot-starter.doctree index d51ea0af9..bee0c9224 100644 Binary files a/en/.doctrees/spring-boot-starter.doctree and b/en/.doctrees/spring-boot-starter.doctree differ diff --git a/en/.doctrees/stack.doctree b/en/.doctrees/stack.doctree index 39f466d18..f7dcb5468 100644 Binary files a/en/.doctrees/stack.doctree and b/en/.doctrees/stack.doctree differ diff --git a/en/.doctrees/start-arthas.doctree b/en/.doctrees/start-arthas.doctree index 3eb7dc2ee..880bce15b 100644 Binary files a/en/.doctrees/start-arthas.doctree and b/en/.doctrees/start-arthas.doctree differ diff --git a/en/.doctrees/stop.doctree b/en/.doctrees/stop.doctree index 91fafc91c..eb1c34df7 100644 Binary files a/en/.doctrees/stop.doctree and b/en/.doctrees/stop.doctree differ diff --git a/en/.doctrees/sysenv.doctree b/en/.doctrees/sysenv.doctree index 091c03afe..7698fdfbb 100644 Binary files a/en/.doctrees/sysenv.doctree and b/en/.doctrees/sysenv.doctree differ diff --git a/en/.doctrees/sysprop.doctree b/en/.doctrees/sysprop.doctree index 24c40e23f..814a02ad6 100644 Binary files a/en/.doctrees/sysprop.doctree and b/en/.doctrees/sysprop.doctree differ diff --git a/en/.doctrees/tee.doctree b/en/.doctrees/tee.doctree index bfde91386..630ac8457 100644 Binary files a/en/.doctrees/tee.doctree and b/en/.doctrees/tee.doctree differ diff --git a/en/.doctrees/thread.doctree b/en/.doctrees/thread.doctree index c1e86b1c8..f0e2b8e4e 100644 Binary files a/en/.doctrees/thread.doctree and b/en/.doctrees/thread.doctree differ diff --git a/en/.doctrees/trace.doctree b/en/.doctrees/trace.doctree index 2bb6d412d..fc2262d97 100644 Binary files a/en/.doctrees/trace.doctree and b/en/.doctrees/trace.doctree differ diff --git a/en/.doctrees/tt.doctree b/en/.doctrees/tt.doctree index bb0d913cd..ba084491a 100644 Binary files a/en/.doctrees/tt.doctree and b/en/.doctrees/tt.doctree differ diff --git a/en/.doctrees/tunnel.doctree b/en/.doctrees/tunnel.doctree index 96fbe3f2f..fafdcdad2 100644 Binary files a/en/.doctrees/tunnel.doctree and b/en/.doctrees/tunnel.doctree differ diff --git a/en/.doctrees/version.doctree b/en/.doctrees/version.doctree index fe6a2b68a..d48240fc7 100644 Binary files a/en/.doctrees/version.doctree and b/en/.doctrees/version.doctree differ diff --git a/en/.doctrees/vmoption.doctree b/en/.doctrees/vmoption.doctree index 4c288841b..d87d8a8aa 100644 Binary files a/en/.doctrees/vmoption.doctree and b/en/.doctrees/vmoption.doctree differ diff --git a/en/.doctrees/vmtool.doctree b/en/.doctrees/vmtool.doctree index 554f26fd2..b8cf6c37f 100644 Binary files a/en/.doctrees/vmtool.doctree and b/en/.doctrees/vmtool.doctree differ diff --git a/en/.doctrees/watch.doctree b/en/.doctrees/watch.doctree index b34fbdc8e..afc98036c 100644 Binary files a/en/.doctrees/watch.doctree and b/en/.doctrees/watch.doctree differ diff --git a/en/.doctrees/web-console.doctree b/en/.doctrees/web-console.doctree index 392869b54..b52cf0c77 100644 Binary files a/en/.doctrees/web-console.doctree and b/en/.doctrees/web-console.doctree differ diff --git a/en/README.html b/en/README.html index 52ba0531b..0fa06bba9 100644 --- a/en/README.html +++ b/en/README.html @@ -8,7 +8,7 @@ - <no title> — Arthas 3.5.6 documentation + <no title> — Arthas 3.6.0 documentation @@ -71,7 +71,7 @@
- 3.5.6 + 3.6.0
diff --git a/en/_sources/options.md.txt b/en/_sources/options.md.txt index 21a8a7108..85eef00f3 100644 --- a/en/_sources/options.md.txt +++ b/en/_sources/options.md.txt @@ -15,47 +15,51 @@ options | support-default-method | true | whether to enable matching default method in interface. The default value is `true`. Refer to [#1105](https://github.com/alibaba/arthas/issues/1105) | | save-result | false | whether to save execution result. All execution results will be saved to `~/logs/arthas-cache/result.log` when it's turned on| | job-timeout | 1d | default timeout for background jobs. Background job will be terminated once it's timed out (i.e. 1d, 2h, 3m, 25s)| print-parent-fields | true | This option enables print files in parent class, default value true.| - +| verbose | false | This option enables print verbose information| +| strict | true | whether to enable strict mode | ### View all options - ```bash $ options - LEVEL TYPE NAME VALUE SUMMARY DESCRIPTION --------------------------------------------------------------------------------------------- - 0 bool unsafe false Option to support This option enables to proxy function - ean system-level class ality of JVM classes. Due to serious - security risk a JVM crash is possibly - be introduced. Do not activate it un - less you are able to manage. - 1 bool dump false Option to dump the This option enables the enhanced clas - ean enhanced classes ses to be dumped to external file for - further de-compilation and analysis. - 1 bool batch-re-tr true Option to support This options enables to reTransform c - ean ansform batch reTransform lasses with batch mode. - Class - 2 bool json-format false Option to support This option enables to format object - ean JSON format of obj output with JSON when -x option selec - ect output ted. - 1 bool disable-sub false Option to control This option disable to include sub cl - ean -class include sub class ass when matching class. - when class matchin - g - 1 bool debug-for-a false Option to print DE This option enables to print DEBUG me - ean sm BUG message if ASM ssage of ASM for each method invocati - is involved on. - 1 bool save-result false Option to print co This option enables to save each comm - ean mmand's result to and's result to log file, which path - log file is ${user.home}/logs/arthas-cache/res - ult.log. - 2 Stri job-timeout 1d Option to job time This option setting job timeout,The u - ng out nit can be d, h, m, s for day, hour, - minute, second. 1d is one day in defa - ult - 1 bool print-paren true Option to print al This option enables print files in pa - ean t-fields l fileds in parent rent class, default value true. - class + LEVEL TYPE NAME VALUE SUMMARY DESCRIPTION +------------------------------------------------------------------------------------------------------- + 0 boolea unsafe false Option to support sy This option enables to proxy functionality + n stem-level class of JVM classes. Due to serious security r + isk a JVM crash is possibly be introduced. + Do not activate it unless you are able to + manage. + 1 boolea dump false Option to dump the e This option enables the enhanced classes t + n nhanced classes o be dumped to external file for further d + e-compilation and analysis. + 1 boolea batch-re-tra true Option to support ba This options enables to reTransform classe + n nsform tch reTransform Clas s with batch mode. + s + 2 boolea json-format false Option to support JS This option enables to format object outpu + n ON format of object t with JSON when -x option selected. + output + 1 boolea disable-sub- false Option to control in This option disable to include sub class w + n class clude sub class when hen matching class. + class matching + 1 boolea support-defa true Option to control in This option disable to include default met + n ult-method clude default method hod in interface when matching class. + in interface when c + lass matching + 1 boolea save-result false Option to print comm This option enables to save each command's + n and's result to log result to log file, which path is ${user. + file home}/logs/arthas-cache/result.log. + 2 String job-timeout 1d Option to job timeou This option setting job timeout,The unit c + t an be d, h, m, s for day, hour, minute, se + cond. 1d is one day in default + 1 boolea print-parent true Option to print all This option enables print files in parent + n -fields fileds in parent cla class, default value true. + ss + 1 boolea verbose false Option to print verb This option enables print verbose informat + n ose information ion, default value false. + 1 boolea strict true Option to strict mod By default, strict mode is true, not allow + n e ed to set object properties. Want to set o + bject properties, execute `options strict + false` ``` @@ -99,4 +103,28 @@ $ options unsafe true $ watch java.lang.invoke.Invokers callSiteForm Press Q or Ctrl+C to abort. Affect(class count: 1 , method count: 1) cost in 61 ms, listenerId: 1 -``` \ No newline at end of file +``` + + +### Turn off strict mode, allow setting object properties in ognl expressions + +> since 3.6.0 + +For new users, there may be misuses when writing ognl expressions. + +For example, for `Student`, when judging the age is equal to 18, the conditional expression may be mistakenly written as `target.age=18`, which actually sets the `age` of the current object to 18. The correct spelling is `target.age==18`. + +In order to prevent misuse like the above, Arthas enables `strict` mode by default, in `ognl` expressions, it is forbidden to update the property of the object or call the `setter` method. + +Take `MathGame` as an example, the following error message will appear. + +``` +$ watch demo.MathGame primeFactors 'target' 'target.illegalArgumentCount=1' +Press Q or Ctrl+C to abort. +Affect(class count: 1 , method count: 1) cost in 206 ms, listenerId: 1 +watch failed, condition is: target.illegalArgumentCount=1, express is: target, By default, strict mode is true, not allowed to set object properties. Want to set object properties, execute `options strict false`, visit /Users/admin/logs/arthas/arthas.log for more details. +``` + +If the user want to change the object properties in the `ognl` expression, you can execute `options strict false` to turn off the `strict` mode. + +* For more information, please refer to: https://github.com/alibaba/arthas/issues/2128 \ No newline at end of file diff --git a/en/_static/documentation_options.js b/en/_static/documentation_options.js index 68d0e0a07..e1b3137d1 100644 --- a/en/_static/documentation_options.js +++ b/en/_static/documentation_options.js @@ -1,6 +1,6 @@ var DOCUMENTATION_OPTIONS = { URL_ROOT: document.getElementById("documentation_options").getAttribute('data-url_root'), - VERSION: '3.5.6', + VERSION: '3.6.0', LANGUAGE: 'en', COLLAPSE_INDEX: false, FILE_SUFFIX: '.html', diff --git a/en/advanced-use.html b/en/advanced-use.html index f947f3824..80ffaf9bc 100644 --- a/en/advanced-use.html +++ b/en/advanced-use.html @@ -8,7 +8,7 @@ - Advanced Usage — Arthas 3.5.6 documentation + Advanced Usage — Arthas 3.6.0 documentation @@ -73,7 +73,7 @@
- 3.5.6 + 3.6.0
diff --git a/en/advice-class.html b/en/advice-class.html index f3cec5fe7..89ee819a6 100644 --- a/en/advice-class.html +++ b/en/advice-class.html @@ -8,7 +8,7 @@ - Fundamental Fields in Expressions — Arthas 3.5.6 documentation + Fundamental Fields in Expressions — Arthas 3.6.0 documentation @@ -73,7 +73,7 @@
- 3.5.6 + 3.6.0
diff --git a/en/agent.html b/en/agent.html index 72924494c..82e3a09f3 100644 --- a/en/agent.html +++ b/en/agent.html @@ -8,7 +8,7 @@ - Start as a Java Agent — Arthas 3.5.6 documentation + Start as a Java Agent — Arthas 3.6.0 documentation @@ -73,7 +73,7 @@
- 3.5.6 + 3.6.0
diff --git a/en/arthas-properties.html b/en/arthas-properties.html index 7f9b661da..1398c1be8 100644 --- a/en/arthas-properties.html +++ b/en/arthas-properties.html @@ -8,7 +8,7 @@ - Arthas Properties — Arthas 3.5.6 documentation + Arthas Properties — Arthas 3.6.0 documentation @@ -73,7 +73,7 @@
- 3.5.6 + 3.6.0
diff --git a/en/async.html b/en/async.html index abcfdc4f6..67f196882 100644 --- a/en/async.html +++ b/en/async.html @@ -8,7 +8,7 @@ - Arthas Async Jobs — Arthas 3.5.6 documentation + Arthas Async Jobs — Arthas 3.6.0 documentation @@ -73,7 +73,7 @@
- 3.5.6 + 3.6.0
diff --git a/en/auth.html b/en/auth.html index 1842c82e9..d5746c810 100644 --- a/en/auth.html +++ b/en/auth.html @@ -8,7 +8,7 @@ - auth — Arthas 3.5.6 documentation + auth — Arthas 3.6.0 documentation @@ -73,7 +73,7 @@
- 3.5.6 + 3.6.0
diff --git a/en/base64.html b/en/base64.html index bdbbf8cd8..a3ad632e0 100644 --- a/en/base64.html +++ b/en/base64.html @@ -8,7 +8,7 @@ - base64 — Arthas 3.5.6 documentation + base64 — Arthas 3.6.0 documentation @@ -73,7 +73,7 @@
- 3.5.6 + 3.6.0
diff --git a/en/batch-support.html b/en/batch-support.html index 0d23644e8..04385a0fe 100644 --- a/en/batch-support.html +++ b/en/batch-support.html @@ -8,7 +8,7 @@ - Batch Processing — Arthas 3.5.6 documentation + Batch Processing — Arthas 3.6.0 documentation @@ -73,7 +73,7 @@
- 3.5.6 + 3.6.0
diff --git a/en/cat.html b/en/cat.html index a518d4e70..04c69b15c 100644 --- a/en/cat.html +++ b/en/cat.html @@ -8,7 +8,7 @@ - cat — Arthas 3.5.6 documentation + cat — Arthas 3.6.0 documentation @@ -73,7 +73,7 @@
- 3.5.6 + 3.6.0
diff --git a/en/classloader.html b/en/classloader.html index 0a89ec3e9..e5ad3a67d 100644 --- a/en/classloader.html +++ b/en/classloader.html @@ -8,7 +8,7 @@ - classloader — Arthas 3.5.6 documentation + classloader — Arthas 3.6.0 documentation @@ -73,7 +73,7 @@
- 3.5.6 + 3.6.0
diff --git a/en/cls.html b/en/cls.html index 54825dfbc..78a25df38 100644 --- a/en/cls.html +++ b/en/cls.html @@ -8,7 +8,7 @@ - cls — Arthas 3.5.6 documentation + cls — Arthas 3.6.0 documentation @@ -71,7 +71,7 @@
- 3.5.6 + 3.6.0
diff --git a/en/commands.html b/en/commands.html index 0170a9443..d8ca29aa2 100644 --- a/en/commands.html +++ b/en/commands.html @@ -8,7 +8,7 @@ - All Commands — Arthas 3.5.6 documentation + All Commands — Arthas 3.6.0 documentation @@ -73,7 +73,7 @@
- 3.5.6 + 3.6.0
diff --git a/en/contact-us.html b/en/contact-us.html index 9a6f9e3bb..dff3b2665 100644 --- a/en/contact-us.html +++ b/en/contact-us.html @@ -8,7 +8,7 @@ - Contact Us — Arthas 3.5.6 documentation + Contact Us — Arthas 3.6.0 documentation @@ -72,7 +72,7 @@
- 3.5.6 + 3.6.0
diff --git a/en/dashboard.html b/en/dashboard.html index 4ef099f57..d8d807cd5 100644 --- a/en/dashboard.html +++ b/en/dashboard.html @@ -8,7 +8,7 @@ - dashboard — Arthas 3.5.6 documentation + dashboard — Arthas 3.6.0 documentation @@ -73,7 +73,7 @@
- 3.5.6 + 3.6.0
diff --git a/en/docker.html b/en/docker.html index a2142dba9..477421aa2 100644 --- a/en/docker.html +++ b/en/docker.html @@ -8,7 +8,7 @@ - Docker — Arthas 3.5.6 documentation + Docker — Arthas 3.6.0 documentation @@ -73,7 +73,7 @@
- 3.5.6 + 3.6.0
diff --git a/en/download.html b/en/download.html index dc6f20f8b..6a00ff499 100644 --- a/en/download.html +++ b/en/download.html @@ -8,7 +8,7 @@ - Download — Arthas 3.5.6 documentation + Download — Arthas 3.6.0 documentation @@ -73,7 +73,7 @@
- 3.5.6 + 3.6.0
diff --git a/en/dump.html b/en/dump.html index 69746f07a..c3d179ce4 100644 --- a/en/dump.html +++ b/en/dump.html @@ -8,7 +8,7 @@ - dump — Arthas 3.5.6 documentation + dump — Arthas 3.6.0 documentation @@ -73,7 +73,7 @@
- 3.5.6 + 3.6.0
diff --git a/en/echo.html b/en/echo.html index bc35e3ae8..b857fe837 100644 --- a/en/echo.html +++ b/en/echo.html @@ -8,7 +8,7 @@ - echo — Arthas 3.5.6 documentation + echo — Arthas 3.6.0 documentation @@ -73,7 +73,7 @@
- 3.5.6 + 3.6.0
diff --git a/en/faq.html b/en/faq.html index d9395d80e..4e1dae23a 100644 --- a/en/faq.html +++ b/en/faq.html @@ -8,7 +8,7 @@ - FAQ — Arthas 3.5.6 documentation + FAQ — Arthas 3.6.0 documentation @@ -73,7 +73,7 @@
- 3.5.6 + 3.6.0
diff --git a/en/genindex.html b/en/genindex.html index 52c53646f..31a6eeaa0 100644 --- a/en/genindex.html +++ b/en/genindex.html @@ -9,7 +9,7 @@ - Index — Arthas 3.5.6 documentation + Index — Arthas 3.6.0 documentation @@ -72,7 +72,7 @@
- 3.5.6 + 3.6.0
diff --git a/en/getstatic.html b/en/getstatic.html index 03721678d..804c7d734 100644 --- a/en/getstatic.html +++ b/en/getstatic.html @@ -8,7 +8,7 @@ - getstatic — Arthas 3.5.6 documentation + getstatic — Arthas 3.6.0 documentation @@ -73,7 +73,7 @@
- 3.5.6 + 3.6.0
diff --git a/en/grep.html b/en/grep.html index b9ac85297..acc7c5a9c 100644 --- a/en/grep.html +++ b/en/grep.html @@ -8,7 +8,7 @@ - grep — Arthas 3.5.6 documentation + grep — Arthas 3.6.0 documentation @@ -73,7 +73,7 @@
- 3.5.6 + 3.6.0
diff --git a/en/groovy.html b/en/groovy.html index 339cf0e6e..78fadc184 100644 --- a/en/groovy.html +++ b/en/groovy.html @@ -8,7 +8,7 @@ - groovy — Arthas 3.5.6 documentation + groovy — Arthas 3.6.0 documentation @@ -71,7 +71,7 @@
- 3.5.6 + 3.6.0
diff --git a/en/heapdump.html b/en/heapdump.html index 5a57ecbdc..b234bf4bf 100644 --- a/en/heapdump.html +++ b/en/heapdump.html @@ -8,7 +8,7 @@ - heapdump — Arthas 3.5.6 documentation + heapdump — Arthas 3.6.0 documentation @@ -73,7 +73,7 @@
- 3.5.6 + 3.6.0
diff --git a/en/help.html b/en/help.html index 7368c19c4..45228727e 100644 --- a/en/help.html +++ b/en/help.html @@ -8,7 +8,7 @@ - help — Arthas 3.5.6 documentation + help — Arthas 3.6.0 documentation @@ -71,7 +71,7 @@
- 3.5.6 + 3.6.0
diff --git a/en/history.html b/en/history.html index b8f100569..b163ff6b2 100644 --- a/en/history.html +++ b/en/history.html @@ -8,7 +8,7 @@ - history — Arthas 3.5.6 documentation + history — Arthas 3.6.0 documentation @@ -71,7 +71,7 @@
- 3.5.6 + 3.6.0
diff --git a/en/http-api.html b/en/http-api.html index 718a7ba27..54bc7fb7b 100644 --- a/en/http-api.html +++ b/en/http-api.html @@ -8,7 +8,7 @@ - Http API — Arthas 3.5.6 documentation + Http API — Arthas 3.6.0 documentation @@ -73,7 +73,7 @@
- 3.5.6 + 3.6.0
diff --git a/en/idea-plugin.html b/en/idea-plugin.html index e47800aaf..2230c4fee 100644 --- a/en/idea-plugin.html +++ b/en/idea-plugin.html @@ -8,7 +8,7 @@ - IDEA Plugin — Arthas 3.5.6 documentation + IDEA Plugin — Arthas 3.6.0 documentation @@ -73,7 +73,7 @@
- 3.5.6 + 3.6.0
diff --git a/en/index.html b/en/index.html index 07cc49c7d..3b14f414c 100644 --- a/en/index.html +++ b/en/index.html @@ -8,7 +8,7 @@ - Arthas Documentation — Arthas 3.5.6 documentation + Arthas Documentation — Arthas 3.6.0 documentation @@ -72,7 +72,7 @@
- 3.5.6 + 3.6.0
diff --git a/en/install-detail.html b/en/install-detail.html index efa84e07e..0d8ee489f 100644 --- a/en/install-detail.html +++ b/en/install-detail.html @@ -8,7 +8,7 @@ - Install Arthas — Arthas 3.5.6 documentation + Install Arthas — Arthas 3.6.0 documentation @@ -73,7 +73,7 @@
- 3.5.6 + 3.6.0
diff --git a/en/jad.html b/en/jad.html index 653f5116f..82d9e77d4 100644 --- a/en/jad.html +++ b/en/jad.html @@ -8,7 +8,7 @@ - jad — Arthas 3.5.6 documentation + jad — Arthas 3.6.0 documentation @@ -73,7 +73,7 @@
- 3.5.6 + 3.6.0
diff --git a/en/jvm.html b/en/jvm.html index 139a303b8..c2d9bffe9 100644 --- a/en/jvm.html +++ b/en/jvm.html @@ -8,7 +8,7 @@ - jvm — Arthas 3.5.6 documentation + jvm — Arthas 3.6.0 documentation @@ -73,7 +73,7 @@
- 3.5.6 + 3.6.0
diff --git a/en/keymap.html b/en/keymap.html index c2e7d279b..26416116a 100644 --- a/en/keymap.html +++ b/en/keymap.html @@ -8,7 +8,7 @@ - Arthas Console Keymap — Arthas 3.5.6 documentation + Arthas Console Keymap — Arthas 3.6.0 documentation @@ -71,7 +71,7 @@
- 3.5.6 + 3.6.0
diff --git a/en/logger.html b/en/logger.html index dfdf612da..dfee01719 100644 --- a/en/logger.html +++ b/en/logger.html @@ -8,7 +8,7 @@ - logger — Arthas 3.5.6 documentation + logger — Arthas 3.6.0 documentation @@ -73,7 +73,7 @@
- 3.5.6 + 3.6.0
diff --git a/en/manual-install.html b/en/manual-install.html index cfdf88608..3538f4494 100644 --- a/en/manual-install.html +++ b/en/manual-install.html @@ -8,7 +8,7 @@ - Manually Install Arthas — Arthas 3.5.6 documentation + Manually Install Arthas — Arthas 3.6.0 documentation @@ -71,7 +71,7 @@
- 3.5.6 + 3.6.0
diff --git a/en/mbean.html b/en/mbean.html index e2bea0135..c8aebbaa7 100644 --- a/en/mbean.html +++ b/en/mbean.html @@ -8,7 +8,7 @@ - mbean — Arthas 3.5.6 documentation + mbean — Arthas 3.6.0 documentation @@ -73,7 +73,7 @@
- 3.5.6 + 3.6.0
diff --git a/en/mc.html b/en/mc.html index 969f5a97c..5f8255e39 100644 --- a/en/mc.html +++ b/en/mc.html @@ -8,7 +8,7 @@ - mc — Arthas 3.5.6 documentation + mc — Arthas 3.6.0 documentation @@ -73,7 +73,7 @@
- 3.5.6 + 3.6.0
diff --git a/en/memory.html b/en/memory.html index 4f15e1a1e..d88cf3da9 100644 --- a/en/memory.html +++ b/en/memory.html @@ -8,7 +8,7 @@ - memory — Arthas 3.5.6 documentation + memory — Arthas 3.6.0 documentation @@ -73,7 +73,7 @@
- 3.5.6 + 3.6.0
diff --git a/en/monitor.html b/en/monitor.html index e51fcbfcd..02f115f95 100644 --- a/en/monitor.html +++ b/en/monitor.html @@ -8,7 +8,7 @@ - monitor — Arthas 3.5.6 documentation + monitor — Arthas 3.6.0 documentation @@ -73,7 +73,7 @@
- 3.5.6 + 3.6.0
diff --git a/en/objects.inv b/en/objects.inv index f9b7d3067..9b99f6203 100644 Binary files a/en/objects.inv and b/en/objects.inv differ diff --git a/en/ognl.html b/en/ognl.html index bb0b0bac6..8e93f66fd 100644 --- a/en/ognl.html +++ b/en/ognl.html @@ -8,7 +8,7 @@ - ognl — Arthas 3.5.6 documentation + ognl — Arthas 3.6.0 documentation @@ -73,7 +73,7 @@
- 3.5.6 + 3.6.0
diff --git a/en/options.html b/en/options.html index 8b012c826..43047fa84 100644 --- a/en/options.html +++ b/en/options.html @@ -8,7 +8,7 @@ - options — Arthas 3.5.6 documentation + options — Arthas 3.6.0 documentation @@ -73,7 +73,7 @@
- 3.5.6 + 3.6.0
@@ -145,6 +145,7 @@
  • Get special option value
  • Set special option value
  • Set unsafe to true to enhance the classes under the java.* package
  • +
  • Turn off strict mode, allow setting object properties in ognl expressions
  • Basic Arthas Commands
  • @@ -285,44 +286,58 @@ 1d default timeout for background jobs. Background job will be terminated once it's timed out (i.e. 1d, 2h, 3m, 25s) + +verbose +false +This option enables print verbose information + + +strict +true +whether to enable strict mode +

    View all options

    $ options
    - LEVEL  TYPE  NAME         VALUE  SUMMARY             DESCRIPTION
    ---------------------------------------------------------------------------------------------
    - 0      bool  unsafe       false  Option to support   This option enables to proxy function
    -        ean                       system-level class  ality of JVM classes. Due to serious
    -                                                      security risk a JVM crash is possibly
    -                                                       be introduced. Do not activate it un
    -                                                      less you are able to manage.
    - 1      bool  dump         false  Option to dump the  This option enables the enhanced clas
    -        ean                        enhanced classes   ses to be dumped to external file for
    -                                                       further de-compilation and analysis.
    - 1      bool  batch-re-tr  true   Option to support   This options enables to reTransform c
    -        ean   ansform             batch reTransform   lasses with batch mode.
    -                                  Class
    - 2      bool  json-format  false  Option to support   This option enables to format object
    -        ean                       JSON format of obj  output with JSON when -x option selec
    -                                  ect output          ted.
    - 1      bool  disable-sub  false  Option to control   This option disable to include sub cl
    -        ean   -class              include sub class   ass when matching class.
    -                                  when class matchin
    -                                  g
    - 1      bool  debug-for-a  false  Option to print DE  This option enables to print DEBUG me
    -        ean   sm                  BUG message if ASM  ssage of ASM for each method invocati
    -                                   is involved        on.
    - 1      bool  save-result  false  Option to print co  This option enables to save each comm
    -        ean                       mmand's result to   and's result to log file, which path
    -                                  log file            is ${user.home}/logs/arthas-cache/res
    -                                                      ult.log.
    - 2      Stri  job-timeout  1d     Option to job time  This option setting job timeout,The u
    -        ng                        out                 nit can be d, h, m, s for day, hour,
    -                                                      minute, second. 1d is one day in defa
    -                                                      ult
    - 1      bool  print-paren  true   Option to print al  This option enables print files in pa
    -        ean   t-fields            l fileds in parent  rent class, default value true.
    -                                   class
    + LEVEL TYPE NAME VALUE SUMMARY DESCRIPTION +------------------------------------------------------------------------------------------------------- + 0 boolea unsafe false Option to support sy This option enables to proxy functionality + n stem-level class of JVM classes. Due to serious security r + isk a JVM crash is possibly be introduced. + Do not activate it unless you are able to + manage. + 1 boolea dump false Option to dump the e This option enables the enhanced classes t + n nhanced classes o be dumped to external file for further d + e-compilation and analysis. + 1 boolea batch-re-tra true Option to support ba This options enables to reTransform classe + n nsform tch reTransform Clas s with batch mode. + s + 2 boolea json-format false Option to support JS This option enables to format object outpu + n ON format of object t with JSON when -x option selected. + output + 1 boolea disable-sub- false Option to control in This option disable to include sub class w + n class clude sub class when hen matching class. + class matching + 1 boolea support-defa true Option to control in This option disable to include default met + n ult-method clude default method hod in interface when matching class. + in interface when c + lass matching + 1 boolea save-result false Option to print comm This option enables to save each command's + n and's result to log result to log file, which path is ${user. + file home}/logs/arthas-cache/result.log. + 2 String job-timeout 1d Option to job timeou This option setting job timeout,The unit c + t an be d, h, m, s for day, hour, minute, se + cond. 1d is one day in default + 1 boolea print-parent true Option to print all This option enables print files in parent + n -fields fileds in parent cla class, default value true. + ss + 1 boolea verbose false Option to print verb This option enables print verbose informat + n ose information ion, default value false. + 1 boolea strict true Option to strict mod By default, strict mode is true, not allow + n e ed to set object properties. Want to set o + bject properties, execute `options strict + false`
    @@ -360,6 +375,25 @@ Press Q or Ctrl+C to abort. Affect(class count: 1 , method count: 1) cost in 61 ms, listenerId: 1
    +
    +

    Turn off strict mode, allow setting object properties in ognl expressions

    +
    +

    since 3.6.0

    +
    +

    For new users, there may be misuses when writing ognl expressions.

    +

    For example, for Student, when judging the age is equal to 18, the conditional expression may be mistakenly written as target.age=18, which actually sets the age of the current object to 18. The correct spelling is target.age==18.

    +

    In order to prevent misuse like the above, Arthas enables strict mode by default, in ognl expressions, it is forbidden to update the property of the object or call the setter method.

    +

    Take MathGame as an example, the following error message will appear.

    +
    $ watch demo.MathGame primeFactors 'target' 'target.illegalArgumentCount=1'
    +Press Q or Ctrl+C to abort.
    +Affect(class count: 1 , method count: 1) cost in 206 ms, listenerId: 1
    +watch failed, condition is: target.illegalArgumentCount=1, express is: target, By default, strict mode is true, not allowed to set object properties. Want to set object properties, execute `options strict false`, visit /Users/admin/logs/arthas/arthas.log for more details.
    +
    +

    If the user want to change the object properties in the ognl expression, you can execute options strict false to turn off the strict mode.

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

    查看所有的options

    $ options
    - LEVEL  TYPE  NAME         VALUE  SUMMARY             DESCRIPTION
    ---------------------------------------------------------------------------------------------
    - 0      bool  unsafe       false  Option to support   This option enables to proxy function
    -        ean                       system-level class  ality of JVM classes. Due to serious
    -                                                      security risk a JVM crash is possibly
    -                                                       be introduced. Do not activate it un
    -                                                      less you are able to manage.
    - 1      bool  dump         false  Option to dump the  This option enables the enhanced clas
    -        ean                        enhanced classes   ses to be dumped to external file for
    -                                                       further de-compilation and analysis.
    - 1      bool  batch-re-tr  true   Option to support   This options enables to reTransform c
    -        ean   ansform             batch reTransform   lasses with batch mode.
    -                                  Class
    - 2      bool  json-format  false  Option to support   This option enables to format object
    -        ean                       JSON format of obj  output with JSON when -x option selec
    -                                  ect output          ted.
    - 1      bool  disable-sub  false  Option to control   This option disable to include sub cl
    -        ean   -class              include sub class   ass when matching class.
    -                                  when class matchin
    -                                  g
    - 1      bool  save-result  false  Option to print co  This option enables to save each comm
    -        ean                       mmand's result to   and's result to log file, which path
    -                                  log file            is ${user.home}/logs/arthas-cache/res
    -                                                      ult.log.
    - 2      Stri  job-timeout  1d     Option to job time  This option setting job timeout,The u
    -        ng                        out                 nit can be d, h, m, s for day, hour,
    -                                                      minute, second. 1d is one day in defa
    -                                                      ult
    - 1      bool  print-paren  true   Option to print al  This option enables print files in pa
    -        ean   t-fields            l fileds in parent  rent class, default value true.
    -                                   class
    + LEVEL TYPE NAME VALUE SUMMARY DESCRIPTION +------------------------------------------------------------------------------------------------------- + 0 boolea unsafe false Option to support sy This option enables to proxy functionality + n stem-level class of JVM classes. Due to serious security r + isk a JVM crash is possibly be introduced. + Do not activate it unless you are able to + manage. + 1 boolea dump false Option to dump the e This option enables the enhanced classes t + n nhanced classes o be dumped to external file for further d + e-compilation and analysis. + 1 boolea batch-re-tra true Option to support ba This options enables to reTransform classe + n nsform tch reTransform Clas s with batch mode. + s + 2 boolea json-format false Option to support JS This option enables to format object outpu + n ON format of object t with JSON when -x option selected. + output + 1 boolea disable-sub- false Option to control in This option disable to include sub class w + n class clude sub class when hen matching class. + class matching + 1 boolea support-defa true Option to control in This option disable to include default met + n ult-method clude default method hod in interface when matching class. + in interface when c + lass matching + 1 boolea save-result false Option to print comm This option enables to save each command's + n and's result to log result to log file, which path is ${user. + file home}/logs/arthas-cache/result.log. + 2 String job-timeout 1d Option to job timeou This option setting job timeout,The unit c + t an be d, h, m, s for day, hour, minute, se + cond. 1d is one day in default + 1 boolea print-parent true Option to print all This option enables print files in parent + n -fields fileds in parent cla class, default value true. + ss + 1 boolea verbose false Option to print verb This option enables print verbose informat + n ose information ion, default value false. + 1 boolea strict true Option to strict mod By default, strict mode is true, not allow + n e ed to set object properties. Want to set o + bject properties, execute `options strict + false`
    @@ -365,6 +383,25 @@ Press Q or Ctrl+C to abort. Affect(class count: 1 , method count: 1) cost in 61 ms, listenerId: 1
    +
    +

    关闭strict模式,允许在ognl表达式里设置对象属性

    +
    +

    since 3.6.0

    +
    +

    对于新用户,在编写ognl表达式时,可能会出现误用。

    +

    比如对于Student,判断年龄等于18时,可能条件表达式会误写为target.age=18,这个表达式实际上是把当前对象的age设置为18了。正确的写法是target.age==18

    +

    为了防止出现类似上面的误用,Arthas默认启用strict模式,在ognl表达式里,禁止更新对象的Property或者调用setter函数。

    +

    MathGame为例,会出现以下的错误提示。

    +
    $ watch demo.MathGame primeFactors 'target' 'target.illegalArgumentCount=1'
    +Press Q or Ctrl+C to abort.
    +Affect(class count: 1 , method count: 1) cost in 206 ms, listenerId: 1
    +watch failed, condition is: target.illegalArgumentCount=1, express is: target, By default, strict mode is true, not allowed to set object properties. Want to set object properties, execute `options strict false`, visit /Users/admin/logs/arthas/arthas.log for more details.
    +
    +

    用户如果确定要在ognl表达式里更新对象,可以执行options strict false,关闭strict模式。

    + +
    diff --git a/perfcounter.html b/perfcounter.html index a0a4f178d..4912e0e63 100644 --- a/perfcounter.html +++ b/perfcounter.html @@ -8,7 +8,7 @@ - perfcounter — Arthas 3.5.6 文档 + perfcounter — Arthas 3.6.0 文档 @@ -74,7 +74,7 @@
    - 3.5.6 + 3.6.0
    diff --git a/profiler.html b/profiler.html index 6971dcf07..8bc0c87a1 100644 --- a/profiler.html +++ b/profiler.html @@ -8,7 +8,7 @@ - profiler — Arthas 3.5.6 文档 + profiler — Arthas 3.6.0 文档 @@ -74,7 +74,7 @@
    - 3.5.6 + 3.6.0
    diff --git a/pwd.html b/pwd.html index a384ab3de..5ac163ae1 100644 --- a/pwd.html +++ b/pwd.html @@ -8,7 +8,7 @@ - pwd — Arthas 3.5.6 文档 + pwd — Arthas 3.6.0 文档 @@ -74,7 +74,7 @@
    - 3.5.6 + 3.6.0
    diff --git a/quick-start.html b/quick-start.html index 025f2fdc2..cd445742c 100644 --- a/quick-start.html +++ b/quick-start.html @@ -8,7 +8,7 @@ - 快速入门 — Arthas 3.5.6 文档 + 快速入门 — Arthas 3.6.0 文档 @@ -74,7 +74,7 @@
    - 3.5.6 + 3.6.0
    diff --git a/quit.html b/quit.html index 39f308986..aaeae2d9e 100644 --- a/quit.html +++ b/quit.html @@ -8,7 +8,7 @@ - quit — Arthas 3.5.6 文档 + quit — Arthas 3.6.0 文档 @@ -74,7 +74,7 @@
    - 3.5.6 + 3.6.0
    diff --git a/redefine.html b/redefine.html index c87b6ed45..565e0a439 100644 --- a/redefine.html +++ b/redefine.html @@ -8,7 +8,7 @@ - redefine — Arthas 3.5.6 文档 + redefine — Arthas 3.6.0 文档 @@ -74,7 +74,7 @@
    - 3.5.6 + 3.6.0
    diff --git a/release-notes.html b/release-notes.html index e0bba29a9..b205f4b20 100644 --- a/release-notes.html +++ b/release-notes.html @@ -8,7 +8,7 @@ - Release Notes — Arthas 3.5.6 文档 + Release Notes — Arthas 3.6.0 文档 @@ -72,7 +72,7 @@
    - 3.5.6 + 3.6.0
    diff --git a/reset.html b/reset.html index b41167078..12531c380 100644 --- a/reset.html +++ b/reset.html @@ -8,7 +8,7 @@ - reset命令 — Arthas 3.5.6 文档 + reset命令 — Arthas 3.6.0 文档 @@ -74,7 +74,7 @@
    - 3.5.6 + 3.6.0
    diff --git a/retransform.html b/retransform.html index 5bd5c3c78..ad758c451 100644 --- a/retransform.html +++ b/retransform.html @@ -8,7 +8,7 @@ - retransform — Arthas 3.5.6 文档 + retransform — Arthas 3.6.0 文档 @@ -74,7 +74,7 @@
    - 3.5.6 + 3.6.0
    diff --git a/save-log.html b/save-log.html index 5d9060fbc..b166484c2 100644 --- a/save-log.html +++ b/save-log.html @@ -8,7 +8,7 @@ - 执行结果存日志 — Arthas 3.5.6 文档 + 执行结果存日志 — Arthas 3.6.0 文档 @@ -74,7 +74,7 @@
    - 3.5.6 + 3.6.0
    diff --git a/sc.html b/sc.html index 4937d3190..8052a1744 100644 --- a/sc.html +++ b/sc.html @@ -8,7 +8,7 @@ - sc — Arthas 3.5.6 文档 + sc — Arthas 3.6.0 文档 @@ -74,7 +74,7 @@
    - 3.5.6 + 3.6.0
    diff --git a/search.html b/search.html index a93189ae4..a15376a12 100644 --- a/search.html +++ b/search.html @@ -8,7 +8,7 @@ - 搜索 — Arthas 3.5.6 文档 + 搜索 — Arthas 3.6.0 文档 @@ -73,7 +73,7 @@
    - 3.5.6 + 3.6.0
    diff --git a/searchindex.js b/searchindex.js index b827b653c..5df86f526 100644 --- a/searchindex.js +++ b/searchindex.js @@ -1 +1 @@ -Search.setIndex({docnames:["README","advanced-use","advice-class","agent","arthas-properties","arthas3","arthas_3_0/new_feature","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","memory","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","arthas3.md","arthas_3_0/new_feature.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","memory.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:{"00":[39,40,58,64,65,70],"000":[16,44,63],"001":[16,63],"001018m":64,"003":16,"004":16,"004539m":64,"004892m":6,"004935m":64,"005198m":64,"005372m":64,"005778m":64,"006":16,"006405m":64,"006783m":64,"008747m":64,"01":[16,57,64,65,70],"010":63,"010317m":64,"010473m":64,"011":[16,63],"011636m":64,"012257m":64,"012416m":46,"013107m":6,"013777m":64,"01419m":64,"015643m":64,"016":16,"01696m":70,"017407m":64,"018255m":6,"018866m":6,"019":16,"019223m":6,"019768m":64,"02":[5,6,16,40,63,64,70],"020221m":64,"020982m":70,"021911m":64,"022":63,"023715m":64,"025":[16,63],"026935":[5,6],"028624m":64,"028812m":6,"029":[16,63],"03":[16,25,40,70],"030325m":6,"030432m":64,"032":16,"033375":28,"033735":64,"033735m":64,"034411m":64,"034568m":64,"0353m":70,"036963":[5,6],"03752m":64,"038":63,"039":1,"04":[5,6,57,63,64,65,70],"043":16,"045534m":64,"05":[40,63,70],"052877m":70,"05447m":64,"059405m":6,"059839m":64,"06":[16,28,40,50,63],"060843m":70,"061462m":64,"06357m":6,"068692m":50,"06941m":64,"069523":65,"07":[33,40,63,64,66],"071499":28,"076457m":64,"077":16,"078946m":64,"07b":16,"08":[16,28,64,65,66,70],"084025m":64,"086622m":64,"08a":53,"09":[7,25,40,64],"092":16,"094":63,"096236":65,"0_132":[32,46],"0_162":46,"0_51":[5,6,61],"0_60":12,"0c5d24a5756c":54,"0k":39,"0m0":1,"0ms":[5,6,63,64],"0r":60,"0vubjprippkkuz7dyzyqoktranj4ungh":8,"0x0":60,"0x19":60,"0x1f5":60,"0x34":60,"0x3bd5e918":[5,6],"0x4b67cf4d":65,"0x7699a589":65,"10":[1,5,6,7,16,23,26,28,36,40,44,46,50,61,63,64,69],"100":[16,33,39,40,53,55,63,64,65,68,70],"1000":[5,6,16,37,63,65,71],"10000":28,"100000":70,"1000m":[16,63,65],"1001":[5,6,65],"1002":[5,6,65],"1003":[5,6,65],"1004":[5,6,65],"1005":[5,6,65],"100672m":6,"100m":[5,6,16,64],"100mb":35,"102":24,"1024m":39,"103":63,"104":[5,6],"1048576":33,"10485760":28,"1056":71,"107":46,"10718":65,"1077465243":70,"108":63,"1085":63,"10m":64,"11":[1,17,19,22,35,36,40,41,43,46,50,63,64,65,70],"1102230246251565e":[22,41,70],"1105":42,"111":63,"111550":44,"112":64,"1120397038":70,"1128":63,"113":[5,6],"11386":29,"113929m":64,"1142":63,"116":63,"1170m":63,"117m":39,"119":[19,58],"119367m":64,"11m":39,"12":[5,6,16,17,40,50,57,61,63,64,65,70],"120":40,"120032k":39,"120955813885284":22,"121":49,"122":[49,63],"123":[5,6,49],"123047":70,"12345":58,"12356":58,"123934m":64,"124":49,"125":[49,63],"125451474443703":41,"126":49,"127":[1,4,5,6,17,28,36,46,56,58,66,71],"127922m":64,"128":49,"128518m":50,"12872":58,"129":49,"1294m":64,"12m":46,"13":[28,46,69],"130":49,"13038":70,"1304":63,"131":70,"13159":70,"133":63,"13355":70,"1342":55,"1348":21,"13581":29,"136007m":46,"1365m":46,"137":6,"138":19,"138282":70,"139":49,"13989838402":65,"14":[5,6,32,46,63,65,66],"1416":44,"145825":64,"145825m":64,"14584":54,"14921":33,"14dad5dc":50,"14m":46,"15":[5,6,16,28,33,40,46,50,63,65,66,70],"150":[49,63],"15146":36,"152743":64,"152743m":64,"1548":[5,6],"155m":46,"156":[16,49,56,66],"1594280799":1,"1596703453237":28,"1596703454241":28,"16":[16,22,25,28,32,39,41,46,57,63,64,65,70],"1610":64,"1627539688":66,"166":46,"167786m":64,"168":[1,58],"168897m":70,"17":[5,6,16,28,32,33,40,46,50,63,65],"170":63,"170365":28,"171":16,"173":33,"173966m":70,"175":63,"178583m":64,"179173":70,"17m":39,"18":[17,39,46,63],"180":49,"1800":4,"18039504":33,"181":41,"181403648":33,"18178089":70,"1820m":46,"182813m":64,"184m":39,"185203m":46,"186073":65,"1861":12,"18m":16,"19":[7,40,46,53,57,70],"190":32,"191":63,"191848":65,"192":[1,58],"192115m":6,"19469ea2":69,"196":63,"199":63,"1b6d3586":12,"1d":42,"1e09489014879085429791006d969d":6,"1l":[32,46],"1m":[16,39],"1ms":63,"20":[28,39,63,64,70],"200":[63,70],"2000":[26,68],"200033":70,"200m":[63,70],"201":[33,56,66],"2017":[5,6,7,50],"2018":[17,40,46,57,64,65,70],"20181127201536":46,"2019":[44,64,66],"2020":[28,33,40,64,70],"2021":[64,65,66,70],"20211207":44,"202c":28,"2048k":16,"2062":35,"208":63,"20m":46,"21":[40,46,65,66,70],"2112":70,"211338m":6,"2115":12,"21965291":15,"22":[5,6,7,16,46,63,70],"220":63,"220625m":70,"222":1,"226":63,"23":[7,16,28,33,44,46,63,64,70],"231":63,"232204a1":[32,64],"2325637411":43,"232606m":64,"232887m":64,"234537m":64,"23m":46,"24":[5,6,16,22,28,33,41,46,63,64,65,70],"240m":46,"241":[28,63,70],"241735m":28,"2455":58,"246057m":6,"2496k":39,"25":[33,40,61,64],"25214903917":[22,41,70],"2531387":65,"2555904":33,"256":33,"256color":60,"256m":39,"25s":42,"26":[46,50,65],"264":63,"2675531":46,"268435456":33,"269":27,"26947":70,"26m":39,"27":[5,6,46,57,63,64],"270":27,"271":27,"272":16,"276874m":64,"277392m":70,"27m":39,"28":[46,64,70],"281":1,"28114":63,"281474976710655":[22,41,70],"28198":[7,52],"287":16,"28ea5898":41,"29":[33,39,40,46,64,66,70],"29fafb28":63,"2a139a55":35,"2b085b5d":28,"2bdd9114":32,"2c":61,"2eaa1027":[22,70],"2gb":35,"2h":42,"2m":[16,39],"30":[17,33,46,57,64,66],"300":44,"3000":71,"30000":28,"301ec38b":41,"303":63,"303498m":70,"304":63,"306568m":6,"30707824":15,"3088":58,"30m":16,"31":[33,46,70],"311395m":46,"3133719055989":70,"317":46,"318":63,"3182":40,"31a6493":63,"31cefde0":70,"32":[33,46,57,70],"32260":6,"3242526906":43,"327a647b":[38,48,51],"3282039941672302964":[22,41,70],"32851":66,"32m":[39,46],"33":[16,33,46,50,63],"332":63,"337":60,"33926216":33,"34":[16,46,50,57,64,70],"3403":43,"3404":43,"345":[5,6],"346":38,"347":21,"34965379":29,"35":[35,46,57,64,70],"35176448":33,"352252m":6,"35542":46,"357742m":64,"358":[5,6],"35m":39,"36":[6,17,33,40,57,64,70],"361":[5,6],"362":21,"3648e874":7,"3658":[4,17,28,36,44,46,58,64],"36m":16,"37":33,"37430":8,"375":6,"3777":66,"379":28,"38":[32,40,65,70],"381":6,"381077":29,"3817865216":33,"385":63,"385121018449645518991":25,"389634m":64,"39":[5,6,16,19,65],"3905348978240129619":[22,41,70],"39m":39,"3c41660":12,"3d":[46,48,51],"3d4eac69":[12,19,22,46,53,57,64],"3fe55d741882":66,"3m":[39,42,46],"3ms":63,"40":[40,65,66,70],"401m":63,"407006m":6,"407b":28,"409":44,"409446m":64,"4096m":[16,39],"41":[40,64,65,70],"414993m":70,"41cf53f9":70,"42":[5,6,40,64,65],"4243":70,"428379493":70,"429":63,"42ac":60,"42d3":28,"43":[28,39,40,65],"439":70,"43de":28,"44":[21,55,64,70],"440":63,"443a":54,"448185416":21,"45":[40,64],"4586":28,"45df64fc":24,"46":[5,6,28,40,63,64,65,70],"460":32,"462":32,"463":32,"466":63,"46m":16,"47":[33,46,56,66],"472067c7":41,"473f":7,"4759":63,"4776":65,"477882m":70,"47m":16,"48":[40,64],"48f4":66,"48m":39,"49":[16,64],"491":28,"4914":28,"491k":16,"492551m":64,"4a00":66,"4a9b":54,"4b85612c":41,"4c0df5f8":32,"4f023edb":69,"4m":[39,46],"4rel":35,"50":[33,70],"5000":[26,63],"5000000":44,"5000m":16,"503":46,"505":63,"50m":16,"51":[40,61],"51316m":6,"515":63,"52":[33,61,63,70],"522b4":53,"522b408a":70,"53":[16,33,39,40,64,66],"530255m":70,"54":[65,70],"546aeec1":63,"549379m":64,"55":[5,6,7,16,39,53],"56":[5,6,16,28,40,65,70],"564322413":65,"56963":68,"57":[5,6,28,39,40,50,64,70],"572":1,"58":[40,57,70],"581886":[5,6],"58205":25,"584m":63,"587833m":70,"58883":1,"58884":1,"59":7,"590102m":50,"59161":[1,64],"5ae4e5fbab8b4e529ac404f260d4e2d1_1":28,"5b0e2d00":24,"5e69":7,"5level":35,"5m":[16,39,46],"60":[35,40,64,65],"603":63,"607":65,"60bc264d":60,"61":[42,63],"617":63,"617465m":64,"62":70,"624":63,"625":63,"628":63,"63":63,"6367e55a78a2":66,"64":[5,6,33,43,61],"6527":70,"657657":[5,6],"65825":66,"65m":46,"66":[64,65,70],"66350f69":[12,19,46,53],"66m":16,"67":[5,6,40,46,70],"672m":46,"68":[16,22,33,70],"684":16,"6849794470754667710l":32,"685k":39,"68b31f0a":12,"68m":39,"6951a712":32,"69dcaba4":32,"69m":16,"6e":6,"6e51ad67":32,"6fafc4c2":32,"6m":16,"70":[5,6],"7001":[5,6],"70070":9,"701b744f971e":28,"705196":64,"705196m":64,"70m":16,"71":[2,22,41,57,64,70],"7127ee12":63,"715367m":46,"71560":46,"716391m":64,"717593":46,"72":40,"725be470":63,"73":70,"731":63,"74":[5,6,16],"743525":[5,6],"745":63,"75":[56,66],"7529":33,"753301m":6,"756":63,"758025m":6,"75b84c92":[12,69],"76437":65,"7651739":46,"77":46,"7777":[4,56,66],"78":[5,6],"79":[39,63],"7909":28,"799155":[5,6],"7f31245a":[12,32],"7f89660b079b":7,"7f9a81e8":41,"80":[40,66],"800":6,"800m":6,"803":[5,6],"805":[5,6],"808":[5,6],"8080":[1,6,16,56,63,66],"81":[5,6,63],"810591m":64,"814":[5,6],"816":6,"82":63,"834":63,"836":63,"838077m":64,"849713m":64,"852594m":64,"854625984":15,"8563":[4,8,28,36,71],"8596":28,"85m":46,"86":16,"86183":66,"875":53,"88":[33,39],"880001m":6,"883b":28,"887":46,"8888":4,"89":[39,70],"891933m":6,"8b39":28,"8ecb9cb7c7804d5d92e258b23d5245cc_1":28,"8f7f6ad7bc2d4cb5aa57a530927a95cc_2":28,"90":16,"901091":65,"91":46,"916328269":15,"92":[5,6,40],"9249":54,"94":40,"946738738":65,"94766d3c":28,"95":63,"955dbd1325334a84972b0f3ac19de4f7_2":28,"96":[16,39,49,63],"961441m":70,"9649":60,"969732m":46,"970":46,"970892m":6,"973":63,"98":[16,49],"98278":28,"98aee3ccbefb":28,"997":63,"9999":4,"9eed":7,"boolean":[2,22,41,70],"byte":[1,26,32,33,49],"case":[23,65],"catch":[46,48,51],"char":[32,34],"class":[2,5,6,12,16,19,22,24,26,28,32,33,35,38,40,41,42,49,50,53,55,56,57,61,64,65,69,70],"default":[23,26,42,50,60,64,68],"do":[28,42,46],"enum":22,"export":[17,43],"final":[2,32,46,63],"for":[16,17,23,24,26,28,32,42,44,46,62],"function":42,"if":[24,32,46],"import":[24,32,46,56],"in":[6,12,19,22,24,26,32,33,38,40,42,46,48,50,51,52,53,55,57,64,65,70],"instanceof":[21,65],"int":[32,46,48,51,53],"long":[22,28,32,41,70],"new":[5,6,32,46,48,49,51,56,63],"null":[2,7,12,19,28,32,35,41,46,51,70],"public":[2,12,24,32,46,48,51,53,55,56],"return":[24,26,46,55,65,70],"static":[24,26,32,46,48,51,53,56],"super":[12,32,53],"switch":[24,44],"throw":[24,32,46,48,51,64,65],"true":[2,4,5,6,8,16,17,21,28,32,35,42,46,48,51,52,53,61,63,64,65,68,70],"try":[1,8,17,46,48,51,66],"var":[10,25,60,61],"void":[2,24,32,46,48,51,56],"while":[24,28,32,46,48,51],"with":[6,21,23,28,32,42,46,57,64],_162:46,__cf_user_text_encod:60,a2:23,a577:66,a7e4:60,aaa:[22,53],ab35:28,abandon:[5,6],abc:9,abl:42,abort:[6,24,40,42,46,50,57,64,65,70],abstractconnectionhandl:63,abstracthttp11processor:63,abstractprotocol:63,abstractqueuedsynchron:63,accept:34,access:63,acquiresharedinterrupt:63,action:[8,69],actionarg:44,activ:42,actuat:[56,66],add:[5,6,43,46],addend:[22,41,70],addit:35,admin:[1,6,8,12,19,32,36,46,52,58,60],advic:[2,57,64,65,70],advisor:65,af24:28,af85b69f93f8:60,affect:[6,12,19,22,24,32,33,38,40,42,46,50,52,53,55,57,64,65,70],after:[23,42,52,68],afterreturn:24,afterthrow:24,agent:[12,21,36,41,49,56,66],agent_id:66,agentid:[4,66],aitmilli:68,al:42,ali:[5,6,16,60],alibaba:[2,5,6,15,18,21,22,24,30,31,35,41,44,49,57,64,66,70,71],aliti:42,aliyun:[1,17,23,26,28,29,31,36,46,60,61,62,66],all:[26,43,49,50,51,61],alloc:44,allow_equa:[5,6],allow_input:28,allow_interrupt:28,alpin:17,also:28,amd64:[17,33],analysi:42,and:[26,28,42,50,58,61],andrei:44,annot:[12,53,55],annotatedcommandimpl:63,annotationconfigembeddedwebapplicationcontext:69,ansform:42,ansi:1,ant:[5,6,17],apach:[2,5,6,10,22,32,41,57,58,63,64,70],api:[1,3,30,61],app:[28,32,35,60,66],appclassload:[12,19,22,32,35,41,46,48,50,51,53,57,64,69],append:[6,46,62,64],appenderref:35,appl:60,apple_pubsub_socket_ren:60,applic:[35,42,60,66],applicationcontext:69,applicationfilterchain:63,appnam:[4,56,66],apt:17,arch:[5,6,33,61],are:42,arg:[32,46,48,51,56],argument:[26,28,33,44],arrai:[26,49],arraylist:[22,28,32,41,46,65,70],artha:[0,2,3,5,8,9,10,12,15,16,19,22,23,24,25,26,27,28,32,33,35,38,40,41,42,47,48,49,50,51,57,59,60,61,62,63,64,65,67,68,69,70],arthas2:[5,6],arthas3:6,arthasag:56,arthasattachexampl:56,arthasclassload:[12,41],arthasconfigmap:56,arthasmethod:2,artifactid:56,as:[4,5,6,10,21,46,49,58,63,66],asia:61,ass:42,async:[1,26,35,44],async_exec:28,asyncappend:[5,6,35,46],asynctimeout:[5,6],at:[23,30,46,57,63,65,70],atent:70,atexceptionexit:70,atexit:70,atomiclong:[22,41,70],attach:[1,3,6,8,17,36,46,49,56,58,63,66,71],attachnotsupportedexcept:21,attribut:37,auth:[1,14,26,28],authent:[8,26,63],authenticatorbas:63,autojump:60,autojump_error_path:60,autojump_sourc:60,aux:36,avail:26,averag:[16,26,33],avg:40,await:63,awk:28,awt:[6,61],b03:61,b09:33,b09f1353:28,b16:61,b2c5c1d5aa2a:28,b3:23,b69d6db7a869:28,bac0:28,backward:34,badbound:[22,41,70],badrang:[22,41,70],badsiz:[22,41,70],bar:28,base64:[1,8,14,26,48,51],base:[43,63],bash:[17,28,60],basic:[8,44],bat:58,batch:42,bbb:[9,22],bc5b:66,be:[22,26,28,41,42,70],bean:65,befor:[23,24,42,52,68],begin:34,between:26,bg:[1,34],bin:[6,17,36,58,60],bio:[5,6,63],bit:[5,6,33,43,61],bizlog:[5,6],bja:6,block:[5,6,63],blockpol:16,bodi:28,bool:42,boot:[4,8,17,21,28,30,33,35,38,41,46,61,66,69],bootstrap:[6,58],bootstrapclassload:[12,41,49],boss:[5,6],bound:[22,41,70],branch:44,breakpoint:44,browser:66,btrace:24,bug:[6,49,61],bugfix:49,buglevel:61,bugreport:[6,61],build:[5,6],built:44,bus:44,busi:63,but:63,by:[23,26,50],byarrai:32,bytecod:[19,21,26],c1:[16,63],c2073d3b:54,c2:[16,63],ca:17,cach:[7,33,42,44,52],calcul:1,call1:6,call3:6,call4:6,call5:6,call6:6,call7:6,call8:6,call9:6,call:[48,51,63],callhsfl1:6,callpathtrac:6,callsiteform:42,can:[28,42,57,64],candid:60,case_insensitive_ord:32,caseinsensitivecompar:32,cat:[1,9,10,14,26],catalina:[5,6,16,58,63],categori:32,cd:36,certif:17,ces:61,cfr:[32,46],cgraphicsenviron:[6,61],ch:[35,61],chang:[5,6,26,61],charact:[1,66],charat:[46,55],charsequ:32,charset:[32,33,35,61],checkbound:[32,55],choos:[6,58],chrome:[28,44],ci:43,cl:42,cla:42,class_nam:[6,22],class_path:28,classa:[38,64],classb:[38,64],classcount:28,classdefinit:26,classdump:19,classfiletransform:51,classic:35,classload:[2,5,6,14,19,22,26,38,41,46,48,49,53,55,65,70],classloaderclass:[12,19,22,32,35,38,41,48,51,53,55,69],classloaderhash:[12,35,53,69],classloadernam:28,classnam:[22,28,50,51,69],classpattern:51,clazz:2,cldrdata:12,clean:17,cleaner:63,cleanup:[5,6],clear:26,client:[5,6,17,46,66],clientpol:16,close_sess:28,cls:[1,14,26,27,43],cmsabortableprecleanw:68,cmstriggerinterv:68,cmswaitdur:68,cn:61,cnt:[6,12,19,22,24,32,33,38,40,46,50,52,53,55,57,64,65,70],co:42,code:[1,12,28,32,33,53,60,69],code_cach:46,codecachemanag:33,codeheap_:[16,39],codepointat:55,codepointbefor:55,codepointcount:55,codesourc:35,collectioncount:33,collectiontim:33,collector:33,colorfgbg:60,colorterm:60,com:[1,2,3,5,6,7,12,15,17,18,21,22,23,24,26,28,29,31,35,36,38,40,41,44,46,48,49,51,53,56,57,60,61,62,63,64,65,66,69,70,71],comm:42,command:[4,5,6,8,13,23,24,26,46,57,61,62,63,64],commandlin:17,commandprocesstask:63,commit:[30,33],common:[2,10,22,41,57,63,64,70],compar:32,compareto:55,comparetoignorecas:55,compat:21,compil:[26,33,38,42,61],compilerthread0:[16,63],complet:34,compress:33,compressed_class_spac:39,concat:55,concaten:26,concurr:[32,46,63,69],concurrenthashmap:69,condit:[28,40,57,64,70],conf:34,config:[4,5,6],configmap:56,configur:35,connect:[1,5,6,17,26,46,66],connector:63,consol:[7,26,32,35,66],consoleappend:35,consumerid:28,cont:61,contain:[7,17,55],containerid:17,content:[5,6,12,16,46,60,61],contentequ:55,context:[23,44,65,69],contextloadfiltervalv:63,continu:46,control:[42,44],copi:[17,33],copyright:44,copyvalueof:55,core:[12,24,35,36,49,63,65,69],corpor:[6,33,61],cost:[5,6,12,19,22,24,28,32,33,38,40,42,46,50,52,53,55,57,64,65,70],cost_express:6,count:[6,7,16,23,26,33,37,40,42,46,64,65,70],countdownlatch:63,counter:[1,26,43],countri:61,coyot:63,coyoteadapt:63,cpp:44,cprinterjob:61,cpu:[5,6,16,44,46,61],cpuusag:63,crash:42,creat:[24,25,28,65],cst:7,ctrl:[6,7,16,24,28,34,40,42,46,50,57,64,65,70],curl:[8,28,31,36,46],current:[1,6,7,26,60,66],currentthread:70,currenttimemilli:6,custom:49,cycl:[40,44],da:6,dae:46,daemon:[5,6,16,33,46,63],daemonthreadcount:37,dai:42,dal:24,dao:24,darwin:60,dashb:46,dashboard:[1,10,14,26,49,63],data:[8,61],date:7,dcach:44,dd:35,de:42,deadlock:33,debug:[30,35],declar:55,decod:[26,32],decompil:[26,32,46],defa:42,delegatingclassload:[12,49],delet:[34,51],deleteal:51,deletecharat:46,delta:16,delta_tim:[16,63],deltatim:63,demo:[12,19,21,22,28,32,33,38,40,41,44,46,48,51,53,56,60,66,69],demoapp:[4,66],demoapp_urjz5l48rpbr2ali5k4v:66,depend:56,der:60,descript:[26,42],descriptor:33,destroi:24,detail:29,devel:17,develop:[5,6,8,10,58],diagnost:26,dir:[5,6,42,61],direct:39,directori:26,disabl:[4,28,42,49,53,70],disabledcommand:4,discuss:44,dispatch:[46,63],displai:[26,60,61],dnsn:12,doacquiresharedinterrupt:63,doc:[1,3,8,17,23,26,28,30,46,60,61,62,66],docker:30,document:29,doe:6,dofilt:63,doget:[5,6,63],done:28,doubl:[22,41,70],double_unit:[22,41,70],dpkg:31,dtlb:44,due:42,dump:[1,4,14,26,29,42,49],dumpcollaps:44,dumpflat:44,dumpthreads0:63,dumptrac:44,durat:44,dwmmjsqsll:60,e7b0:66,each:42,eagleey:[5,63],eagleeyefilt:63,ean:42,echo:[1,9,14,26,28],ect:42,ed:61,eden:33,ee3bc004:28,effect:28,effectivelevel:35,eg:58,eh:[6,46],embed:69,en:[8,61],enabl:[23,42,50],encod:[5,6,26,35,61],end:[23,34],endian:61,endor:61,endors:61,endpoint:66,endswith:55,english:30,enhanc:[26,42,50],enter:[46,58],entryset:22,env:[4,17,26,60],environ:[6,41,60,61],eof:28,equal:55,equalsignorecas:55,error:[8,60,68],errorreportvalv:63,escap:[1,66],etc:26,event:43,exampl:[23,26,38,48,49,50,51,60,61,62],exce:[57,64],except:[24,26,30,46,48,51,55,64,65],exclud:[64,70],exec:[6,8,17,28,63],exectimeout:28,execut:[1,5,6,7,26,46,57,63,64],executor:63,exist:58,exit:[26,28,46,47,49,57,64],exp:[5,6,65],expand:[28,69],experss:28,express:[23,26,28,40,41,50,57,64,65,69,70],ext:[5,6,12,61],extclassload:[12,19,32,46,53,69],extend:32,extens:[5,6,12,61],extern:42,f1dca050:66,f7273eb5:66,factor:46,fail:[26,28,40],failur:26,fals:[2,5,6,12,16,22,28,32,33,41,42,46,50,52,53,57,61,63,64,65,68,70],faq:30,fat:[35,66],fault:44,featur:49,ff267334bb65:33,fg:[1,34],fgc:[5,6],field:[22,26,42,48,51,53],field_nam:[22,70],file:[5,6,12,21,25,26,33,35,42,44,61,62,69],filenam:28,filenamepattern:35,filepath:24,filter:[63,64,70],filterchainadapt:63,finish:24,fix:17,folder:[25,60,61],follow:6,foo:28,forcegc:[1,69],forefullgc:68,format:[21,24,42,44,46,48,51,55,61,64],forward:34,found:[32,58],fqcn:[32,41],fragment:65,frame_buffer_overflow:44,framework:32,fri:7,from:[17,26],further:42,futuretask:63,g1:[16,63],g1_eden_spac:[16,39],g1_old_gen:[16,39],g1_old_gener:16,g1_survivor_spac:[16,39],g1_young_gener:16,game:[1,3,12,17,21,32,48,51,53,57,64,65,70],garbag:33,gc:[0,16,26,46,64],gehui:7,gen:33,gener:[8,33,66],get:17,getbeandefinitionnam:69,getbyt:55,getchar:55,getclazz:24,getcontextclassload:70,getfield:64,getinst:69,getinternalthreadcputim:63,getload:65,getmessag:[46,48,51,64],getmethod:24,getnam:[24,64],getparam:24,getproductbyid:24,getproperti:41,getresourc:[1,12],getsampl:44,getsimplenam:24,getstat:[1,14,26,49],getter:2,getthreadcputim:63,getthreadinfo:63,getwrit:6,gib:33,gif:5,git:[10,58],github:[2,15,21,22,26,29,30,31,41,44,49,57,64,66,70,71],gmt:65,gopherproxyset:61,graphicsenv:[6,61],greater:[22,41,70],grep:[1,5,6,14,26,28,36,46,62],group:[5,6,16,46,63],groupid:56,gt:63,guid:[2,22,41,57,64,70],handl:63,handler:[46,63],hash:[12,32],hashcod:[12,19,22,32,35,41,48,53,55,65],hashmap:56,hasnext:46,havenextnextgaussian:[22,41,70],headless:6,heap:[1,16,25,26,33,39,46],heapdump2019:25,heapdump:[1,14,21,26],heapdumpafterfullgc:68,heapdumpbeforefullgc:68,heapdumponoutofmemori:68,heapdumppath:68,hello:[20,21,41],help:[1,8,10,14,23,29,50,60,61,62],hengyunabc:[12,17,35],histori:[1,14,26,34],hit:58,hom:46,home:[1,5,6,12,16,17,31,36,41,42,46,52,60,61],hotspot:[5,6,33,61],hotspotthreadmbean:63,hour:42,hprof:25,hsehdfsfghhwertyfad:56,hsf:[5,6],html:[1,2,3,22,28,29,41,57,64,66,70],http11:63,http:[1,2,3,5,6,15,16,17,18,21,22,23,26,29,30,31,36,41,44,46,49,56,57,60,61,62,63,64,66,70,71],httpport:4,httpservlet:63,httpservletrespons:6,hub:17,hux:6,ib:[33,61],ibatisproductdao:24,id:[5,6,7,16,28,36,44,46,50,51,52,54,56,57,58,64,66],idea:[30,58],ignor:23,illegalargumentcount:[32,46,48,51,53,65,70],illegalargumentexcept:[28,46,64,65,70],imag:6,impl:63,implement:[24,32],improv:49,includ:[35,42],index:[1,5,6,65],indexof:55,indexofsupplementari:55,inf:[12,69],info:[1,5,6,12,17,26,35,43,46,53,61,66,69],inform:26,init:[6,21,33,55,64],init_sess:28,initi:28,inner:[48,51],innocuousthrea:63,input:[9,26,28,33,58],inputrc:34,inputstatu:28,insensit:23,instal:[17,36],instanc:69,instruct:44,instrument:[3,26,48,51],integ:[21,28,46,48,49,51,64,65,70],interact:36,interfac:[12,24,42,53,69],intern:[19,22,35,41,43,55,63],internaldofilt:63,interru:46,interrupt:[5,6,16,63],interrupt_job:28,interruptedexcept:[32,46,48,51],interv:[26,65],into:26,introduc:42,invert:23,invoc:26,invok:[42,63],io:[6,32,46,61,64],ip:[4,28,36,58,71],ip_hash:66,is:[1,5,6,13,23,26,28,33,42,44,46,65,66,70],is_daemon:[6,50,57,64],isalist:61,isannot:[12,53],isanonymousclass:[12,53],isarrai:[12,53],isbefor:2,isblank:64,isempti:[22,41,55,70],isenum:[12,53],isinterfac:[12,53],islocalclass:[12,53],ismemberclass:[12,53],isprimit:[12,53],isreturn:2,issu:[2,17,21,22,41,44,57,64,70,71],issuecom:21,issynthet:[12,53],isthrow:2,it:[17,42,57,64],itemlist:[5,6],iter:[22,32,46],iterm:60,iterm_profil:60,itim:44,ja:60,jaccess:12,jad:[1,14,26,28,49],jamschedulethread:[5,6],jar:[1,3,6,8,12,17,18,21,28,30,31,32,33,35,36,46,53,61,66,69],java8:[19,22],java:[5,6,8,12,16,18,19,22,23,24,25,26,29,30,31,33,35,36,37,38,40,41,42,43,44,46,48,49,51,53,55,57,58,60,61,62,63,64,65,66,67,69,70],java_hom:[1,17,60],java_main_class_65244:60,java_pid:[54,66],javaag:[3,21],javas:3,javavir:46,javavirtualmachin:[5,6,12,16,61],javax:[6,37,63,64,70],jbo:7,jce:[33,61],jd:[49,61],jdk1:[5,6,12,36,46,61],jdk8:49,jdk:[5,6,12,16,19,22,30,35,36,41,43,44,46,48,49,61,63],jetbrain:[29,58],jfr:[33,61],jfxrt:12,jioendpoint:63,jit:16,jmap:[1,21,25],jmc:44,jnu:61,job:[1,28,42,46,52],jobid:[28,52],jobstatu:28,join:55,join_sess:28,jprofil:[44,64],jps:[1,10],jre:[5,6,12,17,33,41,46,61],json:[28,42],json_data:28,json_pp:28,jsse:[33,61],jstack:[16,21],jvm:[7,12,14,17,21,26,30,32,36,39,42,43,44,48,51,53,58,60,61,63,64,65,69],jvmti:69,k561bkk917gg972stqclbz9h0000gn:60,katacoda:[19,22,30],kei:[22,28,60,61,68],keymap:[1,14,26,34],kill:[1,7,34],kubectl:17,l1:44,lang:[1,3,6,10,12,19,24,28,37,41,42,53,55,60,63,64,65,69,70],languag:[2,22,41,57,61,64,70],lass:42,lastindexof:55,lastindexofsupplementari:55,latest:17,launchd:60,launchedurlclassload:[38,41,69],launcher:[12,19,22,32,35,46,48,50,51,53,57,61,64,69],lead:23,legacy8ujss:12,length:[21,24,46,55,65],less:42,level:[26,42,61],li:61,lib64:33,lib:[1,4,5,6,12,17,33,36,61,69],libra:61,librari:[5,6,12,16,33,46,60,61],limit:[57,64,69],line:[5,6,23,28,34,61],linenumb:[28,32],linkedhashmap:28,linux:[1,7,9,11,20,30,31,33,44,45,63],list:[21,32,41,44,46,48,50,51,58],listen:[4,46,63,71],listenerid:[28,40,42,64,65,70],littl:61,ljava:24,llc:44,load:[0,12,26,33,44],loadedclass:43,loadedcount:12,loadedcounttot:12,loader:[2,6,12,19,22,35,38,41,53,69],loaderclassnam:51,loaderhash:51,local:[36,60],localconnectionnonauth:8,localedata:12,localhost:[1,8,28,44,56,64,66],localizedmessag:28,locat:[7,19,32,46,52,70],lock:[44,63,69],locksupport:[63,69],log4j:32,log:[4,7,8,19,21,31,35,36,41,42,46,49,52,60],logadapt:41,logback:35,logfil:62,logger:[1,14,24,26,32,41],lognam:60,logout:47,loop:[48,51],ls_in_valu:[5,6],lt:63,lwawt:61,lwctoolkit:61,m2:35,mac:[16,30,31,46,61],machin:[6,33,61],maco:[44,60],macosx:61,main:[5,6,16,32,36,48,50,51,56,57,63,64,65,66,70],main_class:66,manag:[33,37,42,61,63,68],manifest:12,map:[22,39],marksweep:33,marksweepcompact:33,mask:[22,41,70],match:[6,23,42,50,55],matchin:42,math:[1,3,12,17,21,32,53,57,64,65,70],mathgam:[12,19,21,22,28,32,40,41,46,48,51,53,57,60,64,65,66,70],maven:[56,58,66],max:[6,16,23,33,39,46,64],maxfiles:35,maxheapfreeratio:68,maxhistori:35,mbean:[1,14,26],mc:[1,14,26,29,32],md5:[48,51],md:66,me:30,mem:44,memori:[14,16,26,33,38,46],messag:28,meta:12,metaspac:[16,33,39],method1:64,method2:64,method3:64,method:[2,5,6,24,26,40,42,46,48,49,50,51,53,55,57,63,64,65,70],methodcount:28,methodnam:28,mf:12,mib:33,middlewar:24,min:[6,64],minheapfreeratio:68,minut:42,mirror:[31,46],misc:[12,19,22,32,35,41,46,48,50,51,53,57,63,64,69,70],miss:44,mission:44,mix:[43,61],mm:35,mmand:42,mmmmmmyiddddd:4,mobil:65,mode:[5,6,42,43,61],model:61,modifi:[12,53,55],modifierpriv:53,modul:[5,6],moduleclassload:32,monitor200:63,monitor:[10,14,26,32,42,48,49,64,70],monoton:43,more:32,mozilla:8,mrjtoolkit:12,ms:[5,6,12,16,19,22,24,26,28,32,33,37,38,40,42,44,46,50,52,53,55,57,64,65,70],msg:35,multipli:[22,41,70],must:[22,41,70],my:25,mylog:35,n2:32,name:[5,6,7,12,16,17,19,22,26,32,33,35,37,41,42,43,46,48,51,52,53,54,55,60,61,63,65,66,68],nashorn:12,nativ:63,nativeid:16,nativemethod:28,need:[28,46,65,70],neg:[22,41,70],net:[32,63],nettyhttptelnetbootstra:[16,63],nettywebsocketttybootst:63,network:[5,6,61],next:[34,46],nextint:[46,48,51,64,65,70],nextnextgaussian:[22,41,70],ng:42,nginx:66,nio:[16,61],nioeventloopgroup:[5,6,46],nit:42,nmethod:[16,39],no:[33,35],node:22,non:[16,22,23,39,41,70],nonheap:[16,39,46],nonsynccontentequ:55,not:[6,8,42],note:30,npe:49,ns:[5,6,44],nts:61,nullpointerexcept:32,num:23,number:[23,26,28,46,48,51,58,63,65,70],numberofinst:12,obj:[42,65],object:[2,5,6,12,24,26,28,42,53,63,65,70],objectnam:37,objectstreamfield:[22,32,41,70],of:[6,23,26,34,40,42,50,58,63],offsetbycodepoint:55,ognl:[1,2,5,6,14,21,22,26,28,49,57,64,65,70],ok:[10,44],ome:61,on:[44,63],one:[6,32,42,58],onli:[13,32,48,51],oom:16,open:[21,33,43],openjdk:[17,41,43,44,49],openjss:12,oper:33,opt:[17,36,41],option:[14,21,23,26,49,50,52,53,57,60,61,62,64,70],or:[40,42,64,65,70],oracl:[3,6,33,61],org:[2,5,6,8,10,22,32,35,38,41,57,58,63,64,69,70],origin:[22,41,68,70],os:[5,6,16,33,44,46,61],other:[21,63],out:[7,10,21,35,41,42,46,48,51],output:[5,6,9,19,23,26,38,40,42],over:6,overrid:24,overrideal:4,overview:26,owner:6,pa:42,packag:[3,32,33,36,46,56],page:44,pandora:32,pangin:44,param:[2,5,6,7,21,24,28,40,57,64,65,70],paramet:[8,26,55,65],paramslen:24,paren:42,parent:[12,42],park:[44,63],parkandcheckinterrupt:63,password:[8,66],patch:61,path:[6,28,31,33,36,42,50,60,61,62],pattern:[19,23,24,28,32,35,37,40,50,53,55,57,64,70],peak:33,peakthreadcount:37,perf:[1,26,43,44],perfcount:[1,14,26],perform:23,period:[16,63],perm:[5,6],permit:8,petstor:[5,6,24],pid:[1,7,10,17,28,36,46,52,54,58,63,66],pipe:[23,26,62],pkg:61,plaintext:[1,5,6],platform:61,platformclassload:41,pleas:[32,58],png:6,pod:17,poll:28,pool:46,port:[4,28,36,58,66],posit:[22,41,70],possibl:42,post:28,ppp:8,press:[6,24,40,42,46,50,57,64,65,70],pretti:28,previou:34,prime:28,primefactor:[21,28,40,46,48,51,57,64,65,70],print:[23,24,26,28,42,46,48,51,64,65,70],printclasshistogram:68,printclasshistogramaf:68,printclasshistogramb:68,printconcurrentlock:68,printerjob:61,printgc:[68,69],printgcdatestamp:68,printgcdetail:68,printgcid:68,printgctimestamp:68,println:[21,24,41,46,48,51,64],printstream:[32,46,64],printwrit:6,priori:46,prioriti:[5,6,16,50,57,63,64],privat:[2,12,32,46,53,60,61,69],process:[6,17,46,58,63],processhandl:63,processimpl:63,processor:[16,33],processtopbusythread:63,product:[5,6,61],productdao:24,profil:[14,26],profiled_nmethod:39,proper:[2,22,41,57,64,70],properti:[3,5,6,8,26,28,43,56,61,66],protect:32,proxi:42,ps:[33,36],ps_eden_spac:46,ps_marksweep:46,ps_old_gen:46,ps_scaveng:46,ps_survivor_spac:46,pull_result:28,put:56,pwd:[1,14,26,60],qos:[5,6,32,35],qps:16,qq:30,quick:21,quit:[1,7,14,46,49],random:[22,32,41,46,48,51,53,64,65,70],rate:[26,40],raw:8,re:[33,42,65],readi:28,readm:66,real:1,redefin:[1,14,16,26,59],redefineclass:[26,48],redi:66,ref:35,refer:[44,46,63],reflect:[12,49],refus:28,regex:[23,50],regionmatch:55,regular:[23,50],releas:[30,31,66,69],remot:[5,6],remotemavenserv:58,remov:[23,36],remset:[16,63],render:60,rent:42,replac:55,replaceal:55,replacefirst:55,replai:65,repo:[31,46],repositori:35,represent:26,req112:28,requestid:28,requir:28,res:42,reset:[1,14,26,48],resour:61,resourc:33,resourcenotfoundexcept:12,rest:28,result:[8,9,28,42,44,46,48,51,52,70],resum:44,ret:[5,6,65],retransform:[1,14,26,32,38,42,48],retransformclass:[26,51],returnobj:[2,5,6,10,21,28,46,57,64,70],rf:[31,36],risk:42,rm:[17,31,36],roll:35,rollingfileappend:35,rollingpolici:35,root:35,row:[12,19,22,32,33,38,46,52,53,55,65],rt:[12,16,26,33,40,61,64],run:[17,32,44,46,48,51,57,63,64,65,70],runnab:46,runnabl:[5,6,16,63],runnableadapt:63,runtim:[6,16,33,41,46,61],runwork:63,ry:61,sampl:[5,6,16,24,63],sat:7,save:[42,52],sb:46,sbin:60,sc:[1,10,14,22,26,35,49,69],scaveng:33,schedul:[16,28],scheduledfuturetask:63,scheduledthreadpoolexecutor:63,screen:[5,6,26],script:[1,24],scriptlisten:24,scriptsupportcommand:24,sdkman:60,sdkman_platform:60,sdkman_vers:60,se:[6,61],search:[26,53,55],second:[4,32,42,44,46,48,51],secur:[8,42,66],sed:28,see:26,seed:[22,41,70],seedoffset:[22,41,70],seeduniquifi:[22,41,70],selec:42,select:[1,23],sensit:23,sep:[7,44],separ:[5,6,28,61],serial:58,serializ:32,serialpersistentfield:[22,32,41,70],serialversionuid:[22,32,41,70],seriou:42,server:[1,4,5,6,7,26,33,43,49,54,56,58,61,63],servercooki:[5,6],servic:[16,32,36,63],servlet:[6,63,64,70],ses:42,session:[1,7,10,13,14,26,52,66,69],session_id:[54,66],sessionid:28,sessiontimeout:4,set:[42,57,64],setter:2,setup:17,sh:[4,6,10,17,21,49,58,66],shanghai:61,sharedloadedclass:43,sharedunloadedclass:43,shell:[28,31,36,60,63,69],shift:34,shlvl:60,show:[26,63],shutdown:[26,49],signal:[46,63],simpl:[12,53],sinc:[4,69],size:[5,6,22,41,51,70],sizeandtimebasedrollingpolici:35,sizelimit:28,skip:64,skipjdkmethod:64,sleep:[28,32,46,48,51,63],slf4jlocationawarelog:41,sm:[1,14,26],so:[57,64],socket:[21,66],socketprocessor:63,socketwrapp:63,solv:6,sourc:[12,32,48,51,53,69],space:33,spec:33,special:28,specif:[5,6,33,61],specifi:26,spi:32,split:55,spring:[4,28,30,33,35,65,66,69],springappl:41,springframework:[35,38,41,69],spy:49,ss:28,stack:[1,10,14,26,64,65,70],stacktrac:28,standard:26,standardcontextvalv:63,standardenginevalv:63,standardhostvalv:63,standardwrappervalv:63,star:30,start:[6,7,21,33,44],starter:[4,30,66],startswith:55,startup:[6,58],stat:[1,12],statcontrol:1,state:[5,6,16,28,46],statist:26,statu:44,staturl:54,statuscod:28,sticki:66,stop:[1,4,7,14,17,21,22,23,26,36,44,46,50,51,56],store:[5,6],stri:42,string:[1,12,19,22,24,28,41,46,48,51,55,56,64,69,70],stringbuff:46,stringbuild:[6,64],stringcod:32,stringutil:[10,64],su:[6,36,46],sub:[42,49,53,70],subsequ:55,substr:55,succeed:28,success:[1,12,17,24,26,28,35,40,46,51],successfulli:[5,6,61,65,68],sudo:[6,31,36,46],summari:[3,23,26,42,50,60,61,62],sun:[6,12,19,21,22,23,32,35,41,46,48,49,50,51,53,57,61,63,64,69,70],sun_standard:61,sunec:12,sunjce_provid:12,sunpkcs11:12,sunrsasign:[33,61],support:[13,42,44],survivor:33,sweeper:63,sync:63,synchron:63,syntax:28,sys:1,sysenv:[1,14,23,26],sysprop:[1,10,14,23,26,28,62],system:[4,5,6,12,16,21,26,28,33,35,41,42,46,48,51,60,61,63],systemclassload:[35,41,49],systemload:16,tab:[30,34,60,61],tag:[17,49],taobao:[5,6,7,12,24,41,49,53,56,63,65,69],target:[2,12,26,35,36,65,70,71],task:[16,63],taskthread:63,tbxwzs4s4sbcvh7frbcc7n000000gn:61,tccl:[6,50,57,64],ted:42,tee:[1,14,26],telnet:[1,4,6,28,36,58,64,66],telnetport:4,temp:6,tenur:33,terfullgc:68,term:60,term_program:60,term_program_vers:60,term_session_id:60,termd:[6,49],termin:[5,6,28,63],test:[3,6,7,9,10,22,24,38,40,44,48,50,51,52,53,61,63,64,65,66],test_pe3lzo9na9enjytpgl9l:66,testclass:49,testdurexfilt:63,testfilt:[64,70],testpathtrac:6,testthreadblock:63,testtraceservlet:[5,6],th:37,than:[22,32,41,70],the:[5,6,23,26,28,42,50,58,60,61,68],then:58,thi:[6,7,22,23,24,26,28,32,42,46,50,60,61,62],thread0:16,thread:[1,10,14,16,23,26,27,35,37,49,64,70],thread_nam:[6,50,57,64],threadcommand:63,threadcount:37,threadimpl:63,threadloc:65,threadmxbean:63,threadpoolexecutor:63,throwabl:2,throwexp:[2,21,28,70],thrown:26,tick:43,tier:[33,61],time:[1,5,6,7,16,17,26,28,33,42,46,57,63,64,65,66],timed_:46,timed_wai:[16,63],timed_wait:[5,6,23,63],timeexpir:28,timeout:[7,42,46],timer:[5,6,16,46,63],timerthread:[5,6],timestamp:[1,5,6,40,65,66],timetunnel:65,timeunit:[32,46,48,51],timezon:61,tm:[5,6,33,49,61],tmp:[1,3,9,10,11,12,19,24,25,32,36,38,44,46,48,51,53,60,61,69],tmpdir:[6,60,61],to:[1,6,8,17,21,23,24,25,26,28,40,42,46,50,57,58,62,64,65,66,70],tochararrai:55,todo:[5,6],tolowercas:55,tomcat:[5,6,16,26,63],tool:[21,26,36,44,69],toolkit:61,top:63,topn:49,tostr:[6,53,55,64],total:[5,6,16,26,33,39,40,46,63,64],totalsizecap:35,totaltim:43,touppercas:55,tr:[28,42],trace:[7,10,14,16,26,28,42,44,48,49,50,52,65,70],trace_id:6,traceid:65,tracepoint:44,trail:23,transform:[42,51],transformcount:51,triger:51,trim:[23,55],truecolor:60,ts:[28,46,50,57,64,70],tt:[1,5,6,10,14,16,21,26,28,42,48,49,64,70],tty:13,tualmachin:46,tunnel:[1,4,26,30,54,56],tunnel_serv:66,tunnelserv:[4,56],tutori:[1,28,66],two:26,txt:[9,11,35,48,51],type:[28,37,42,53],u4e2d:21,u6587:21,ui:[36,49],ult:42,un:42,unabl:21,undo:34,unicod:61,unicodebig:61,unit:43,unix:31,unknown:61,unload:33,unloadedclass:43,unnam:43,unsaf:[21,22,41,44,63,70],untitled2:5,unus:12,unzip:36,updat:[17,26,35,68],uptim:16,urjz5l48rpbr2ali5k4v:66,url:[1,6,28,54,56,61],urlclassload:32,us:[8,33,61],usag:[16,23,26,33,39,46,50,60,61,62],use:[8,31,32,46],used:[12,16,33,39,46],useful:17,user:[1,5,6,7,12,19,24,31,32,35,38,42,48,51,52,60,61],user_hom:34,usercontrol:[38,48,51],userdetailsserviceautoconfigur:66,usernam:8,userstat:63,using:[1,8,26,28,66],usr:[5,6,17,33,60,61],utf8:35,utf:[5,6,35,60,61],util:[5,6,16,21,24,32,46,53,63,64,69,70],v125056161:6,v8:21,va:60,valu:[23,26,28,32,42,43,52,53,54,60,61,63,64,66,68],value1:41,value2:41,valueiter:69,valueof:[55,64],valv:63,variabl:[43,60],variou:26,vendor:[5,6,33,61],verbos:33,version:[1,5,6,8,14,16,17,26,28,33,35,43,44,46,56,61,66],view:26,vim:[34,48,51],virtual:[6,33,61],visualvm:60,vm:[5,6,16,26,33,43,61,63,68],vmoption:[1,14,26,69],vmtool:[1,14,21],w0t4p0:60,wait:[5,6,16,23,63],waitin:46,wall:44,wangji92:29,wangtao:[5,6,61],war:35,watch:[7,10,14,16,24,26,42,48,49,64,65],wc:[1,5,6,49],web:[5,6,35,66],webappclassload:6,webconsol:[28,30],websocket:[1,6,63],welcom:28,wget:17,when:42,which:42,whitespac:23,wiki:[1,17,23,26,28,46,49,60,61,62,66],wildcard:50,will:[26,57,64],window:[30,31],wireshark:60,word:34,work:[5,6,26,42],worker:[46,63],wrappingrunn:63,write:[6,26],writeabl:68,ws:[4,56,66],wsfilter:63,www:29,wy7c9w9j5732xbkcyt1mb4g40000gp:25,x86_64:[5,6,61],xbootclasspath:36,xml:35,xpc_flag:60,xpc_service_nam:60,xpost:28,xterm:60,xxx:[49,64],you:[42,57,64],young:[16,63],yourclassnam:35,yum:17,yuqu:29,ywjjcg:9,ywrtaw46ywrtaw4:8,yyi:64,yyyi:35,zh_cn:60,zhuyong:24,zhx:6,zip:[3,36],zipf:12,zulu:[1,41]},titles:["<no title>","\u8fdb\u9636\u4f7f\u7528","\u8868\u8fbe\u5f0f\u6838\u5fc3\u53d8\u91cf","\u4ee5Java Agent\u7684\u65b9\u5f0f\u542f\u52a8","Arthas Properties","Arthas3.0\u7684\u65b0\u7279\u6027","Arthas 3.0\u65b0\u7279\u6027\u4ecb\u7ecd","Arthas\u540e\u53f0\u5f02\u6b65\u4efb\u52a1","auth","base64","\u6279\u5904\u7406\u529f\u80fd","cat","classloader","cls","\u547d\u4ee4\u5217\u8868","\u8054\u7cfb\u6211\u4eec","dashboard","Docker","\u4e0b\u8f7d","dump","echo","FAQ","getstatic","grep","groovy","heapdump","help","history","Http API","IDEA Plugin","Arthas \u7528\u6237\u6587\u6863","Arthas Install","jad","jvm","Arthas \u547d\u4ee4\u884c\u5feb\u6377\u952e","logger","\u624b\u52a8\u5b89\u88c5Arthas","mbean","mc","memory","monitor","ognl","options","perfcounter","profiler","pwd","\u5feb\u901f\u5165\u95e8","quit","redefine","Release Notes","reset\u547d\u4ee4","retransform","\u6267\u884c\u7ed3\u679c\u5b58\u65e5\u5fd7","sc","session","sm","Arthas Spring Boot Starter","stack","\u542f\u52a8 Arthas","Stop","sysenv","sysprop","tee","thread","trace","tt","Arthas Tunnel","version","vmoption","vmtool","watch","Web Console"],titleterms:{"01":49,"03":49,"04":49,"05":49,"06":49,"07":49,"08":49,"09":49,"11":49,"12":49,"18":49,"22":49,"29":49,"class":[1,46,48,51],"null":21,action:[28,44],advic:24,agent:[1,3],alibaba:29,all:63,api:[8,28],append:35,artha:[1,4,6,7,14,17,18,21,29,30,31,34,36,44,46,52,56,58,66,71],arthas3:5,as:[1,18,31,36],attach:21,auth:8,author:8,base64:9,bat:36,bg:7,boot:[1,18,31,56],cat:11,classformaterror:21,classload:[1,12,32,35,69],classpath:28,cloud:[29,31],cls:13,command:28,consol:[1,8,71],content:30,cpu:63,dashboard:[16,46],deb:31,demo:[57,64,65,70],docker:[17,21],dump:[19,25],eagleey:6,echo:20,endpoint:56,enhanc:28,entri:51,event:44,exclud:44,execut:44,faq:21,fg:7,framebuf:44,game:46,gc:69,getstat:22,github:18,grep:23,groovi:[5,6,24],hash:69,header:8,heapdump:25,help:26,histori:27,hotspot:21,html:44,http:[8,28],id:63,idea:29,includ:44,input_statu:28,instal:31,issu:15,jad:[32,46,48,51],java:[1,3,17,21,28,32],jdk9:43,jdk:[17,21,42,64],jfr:44,job:7,json:21,jvm:[1,16,33],k8s:[17,21],lang:[21,32],level:35,linux:36,live:25,load:21,logger:35,mac:36,main:46,map:28,math:46,maven:18,mbean:37,mc:[38,48,51],memori:39,monitor:[1,40],name:69,nativ:21,not:21,note:49,ognl:41,option:[1,42,68],or:21,output:[24,44],packag:42,perfcount:43,pid:21,plugin:29,process:21,profil:[1,44],properti:[1,4],pwd:45,qq:15,quit:47,redefin:48,releas:[18,49],reset:50,resourc:12,respond:21,retransform:[29,51],rpm:31,rt:[5,6],sampl:44,sc:53,scrollback:71,server:[66,71],session:54,sh:[1,18,31,36],skywalk:21,sm:55,spring:56,stack:[5,6,57],starter:56,state:63,statu:28,stop:59,string:32,sudo:58,sysenv:60,sysprop:[5,6,61],systemproperti:[5,6],target:21,tee:62,telnet:8,thi:70,thread:[5,6,33,46,63],toolkit:[29,31],trace:[1,5,6,21,64],traceid:6,tt:65,tunnel:[66,71],ui:28,unicod:21,unix:36,unknown:44,unsaf:42,url:[8,12,71],urlclassload:12,v2015:49,v2016:49,v2017:49,v3:49,version:67,vm:21,vmoption:68,vmtool:69,watch:[1,5,6,21,28,46,70],web:[1,8,28,71],window:[36,58]}}) \ No newline at end of file +Search.setIndex({docnames:["README","advanced-use","advice-class","agent","arthas-properties","arthas3","arthas_3_0/new_feature","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","memory","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","arthas3.md","arthas_3_0/new_feature.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","memory.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:{"00":[39,40,58,64,65,70],"000":[16,44,63],"001":[16,63],"001018m":64,"003":16,"004":16,"004539m":64,"004892m":6,"004935m":64,"005198m":64,"005372m":64,"005778m":64,"006":16,"006405m":64,"006783m":64,"008747m":64,"01":[16,57,64,65,70],"010":63,"010317m":64,"010473m":64,"011":[16,63],"011636m":64,"012257m":64,"012416m":46,"013107m":6,"013777m":64,"01419m":64,"015643m":64,"016":16,"01696m":70,"017407m":64,"018255m":6,"018866m":6,"019":16,"019223m":6,"019768m":64,"02":[5,6,16,40,63,64,70],"020221m":64,"020982m":70,"021911m":64,"022":63,"023715m":64,"025":[16,63],"026935":[5,6],"028624m":64,"028812m":6,"029":[16,63],"03":[16,25,40,70],"030325m":6,"030432m":64,"032":16,"033375":28,"033735":64,"033735m":64,"034411m":64,"034568m":64,"0353m":70,"036963":[5,6],"03752m":64,"038":63,"039":1,"04":[5,6,57,63,64,65,70],"043":16,"045534m":64,"05":[40,63,70],"052877m":70,"05447m":64,"059405m":6,"059839m":64,"06":[16,28,40,50,63],"060843m":70,"061462m":64,"06357m":6,"068692m":50,"06941m":64,"069523":65,"07":[33,40,63,64,66],"071499":28,"076457m":64,"077":16,"078946m":64,"07b":16,"08":[16,28,64,65,66,70],"084025m":64,"086622m":64,"08a":53,"09":[7,25,40,64],"092":16,"094":63,"096236":65,"0_132":[32,46],"0_162":46,"0_51":[5,6,61],"0_60":12,"0c5d24a5756c":54,"0k":39,"0m0":1,"0ms":[5,6,63,64],"0r":60,"0vubjprippkkuz7dyzyqoktranj4ungh":8,"0x0":60,"0x19":60,"0x1f5":60,"0x34":60,"0x3bd5e918":[5,6],"0x4b67cf4d":65,"0x7699a589":65,"10":[1,5,6,7,16,23,26,28,36,40,44,46,50,61,63,64,69],"100":[16,33,39,40,53,55,63,64,65,68,70],"1000":[5,6,16,37,63,65,71],"10000":28,"100000":70,"1000m":[16,63,65],"1001":[5,6,65],"1002":[5,6,65],"1003":[5,6,65],"1004":[5,6,65],"1005":[5,6,65],"100672m":6,"100m":[5,6,16,64],"100mb":35,"102":24,"1024m":39,"103":63,"104":[5,6],"1048576":33,"10485760":28,"1056":71,"107":46,"10718":65,"1077465243":70,"108":63,"1085":63,"10m":64,"11":[1,17,19,22,35,36,40,41,43,46,50,63,64,65,70],"1102230246251565e":[22,41,70],"1105":42,"111":63,"111550":44,"112":64,"1120397038":70,"1128":63,"113":[5,6],"11386":29,"113929m":64,"1142":63,"116":63,"1170m":63,"117m":39,"119":[19,58],"119367m":64,"11m":39,"12":[5,6,16,17,40,50,57,61,63,64,65,70],"120":40,"120032k":39,"120955813885284":22,"121":49,"122":[49,63],"123":[5,6,49],"123047":70,"12345":58,"12356":58,"123934m":64,"124":49,"125":[49,63],"125451474443703":41,"126":49,"127":[1,4,5,6,17,28,36,46,56,58,66,71],"127922m":64,"128":49,"128518m":50,"12872":58,"129":49,"1294m":64,"12m":46,"13":[28,46,69],"130":49,"13038":70,"1304":63,"131":70,"13159":70,"133":63,"13355":70,"1342":55,"1348":21,"13581":29,"136007m":46,"1365m":46,"137":6,"138":19,"138282":70,"139":49,"13989838402":65,"14":[5,6,32,46,63,65,66],"1416":44,"145825":64,"145825m":64,"14584":54,"14921":33,"14dad5dc":50,"14m":46,"15":[5,6,16,28,33,40,46,50,63,65,66,70],"150":[49,63],"15146":36,"152743":64,"152743m":64,"1548":[5,6],"155m":46,"156":[16,49,56,66],"1594280799":1,"1596703453237":28,"1596703454241":28,"16":[16,22,25,28,32,39,41,46,57,63,64,65,70],"1610":64,"1627539688":66,"166":46,"167786m":64,"168":[1,58],"168897m":70,"17":[5,6,16,28,32,33,40,46,50,63,65],"170":63,"170365":28,"171":16,"173":33,"173966m":70,"175":63,"178583m":64,"179173":70,"17m":39,"18":[17,39,42,46,63],"180":49,"1800":4,"18039504":33,"181":41,"181403648":33,"18178089":70,"1820m":46,"182813m":64,"184m":39,"185203m":46,"186073":65,"1861":12,"18m":16,"19":[7,40,46,53,57,70],"190":32,"191":63,"191848":65,"192":[1,58],"192115m":6,"19469ea2":69,"196":63,"199":63,"1b6d3586":12,"1d":42,"1e09489014879085429791006d969d":6,"1l":[32,46],"1m":[16,39],"1ms":63,"20":[28,39,63,64,70],"200":[63,70],"2000":[26,68],"200033":70,"200m":[63,70],"201":[33,56,66],"2017":[5,6,7,50],"2018":[17,40,46,57,64,65,70],"20181127201536":46,"2019":[44,64,66],"2020":[28,33,40,64,70],"2021":[64,65,66,70],"20211207":44,"202c":28,"2048k":16,"206":42,"2062":35,"208":63,"20m":46,"21":[40,46,65,66,70],"2112":70,"211338m":6,"2115":12,"2128":42,"21965291":15,"22":[5,6,7,16,46,63,70],"220":63,"220625m":70,"222":1,"226":63,"23":[7,16,28,33,44,46,63,64,70],"231":63,"232204a1":[32,64],"2325637411":43,"232606m":64,"232887m":64,"234537m":64,"23m":46,"24":[5,6,16,22,28,33,41,46,63,64,65,70],"240m":46,"241":[28,63,70],"241735m":28,"2455":58,"246057m":6,"2496k":39,"25":[33,40,61,64],"25214903917":[22,41,70],"2531387":65,"2555904":33,"256":33,"256color":60,"256m":39,"25s":42,"26":[46,50,65],"264":63,"2675531":46,"268435456":33,"269":27,"26947":70,"26m":39,"27":[5,6,46,57,63,64],"270":27,"271":27,"272":16,"276874m":64,"277392m":70,"27m":39,"28":[46,64,70],"281":1,"28114":63,"281474976710655":[22,41,70],"28198":[7,52],"287":16,"28ea5898":41,"29":[33,39,40,46,64,66,70],"29fafb28":63,"2a139a55":35,"2b085b5d":28,"2bdd9114":32,"2c":61,"2eaa1027":[22,70],"2gb":35,"2h":42,"2m":[16,39],"30":[17,33,46,57,64,66],"300":44,"3000":71,"30000":28,"301ec38b":41,"303":63,"303498m":70,"304":63,"306568m":6,"30707824":15,"3088":58,"30m":16,"31":[33,46,70],"311395m":46,"3133719055989":70,"317":46,"318":63,"3182":40,"31a6493":63,"31cefde0":70,"32":[33,46,57,70],"32260":6,"3242526906":43,"327a647b":[38,48,51],"3282039941672302964":[22,41,70],"32851":66,"32m":[39,46],"33":[16,33,46,50,63],"332":63,"337":60,"33926216":33,"34":[16,46,50,57,64,70],"3403":43,"3404":43,"345":[5,6],"346":38,"347":21,"34965379":29,"35":[35,46,57,64,70],"35176448":33,"352252m":6,"35542":46,"357742m":64,"358":[5,6],"35m":39,"36":[6,17,33,40,57,64,70],"361":[5,6],"362":21,"3648e874":7,"3658":[4,17,28,36,44,46,58,64],"36m":16,"37":33,"37430":8,"375":6,"3777":66,"379":28,"38":[32,40,65,70],"381":6,"381077":29,"3817865216":33,"385":63,"385121018449645518991":25,"389634m":64,"39":[5,6,16,19,65],"3905348978240129619":[22,41,70],"39m":39,"3c41660":12,"3d":[46,48,51],"3d4eac69":[12,19,22,46,53,57,64],"3fe55d741882":66,"3m":[39,42,46],"3ms":63,"40":[40,65,66,70],"401m":63,"407006m":6,"407b":28,"409":44,"409446m":64,"4096m":[16,39],"41":[40,64,65,70],"414993m":70,"41cf53f9":70,"42":[5,6,40,64,65],"4243":70,"428379493":70,"429":63,"42ac":60,"42d3":28,"43":[28,39,40,65],"439":70,"43de":28,"44":[21,55,64,70],"440":63,"443a":54,"448185416":21,"45":[40,64],"4586":28,"45df64fc":24,"46":[5,6,28,40,63,64,65,70],"460":32,"462":32,"463":32,"466":63,"46m":16,"47":[33,46,56,66],"472067c7":41,"473f":7,"4759":63,"4776":65,"477882m":70,"47m":16,"48":[40,64],"48f4":66,"48m":39,"49":[16,64],"491":28,"4914":28,"491k":16,"492551m":64,"4a00":66,"4a9b":54,"4b85612c":41,"4c0df5f8":32,"4f023edb":69,"4m":[39,46],"4rel":35,"50":[33,70],"5000":[26,63],"5000000":44,"5000m":16,"503":46,"505":63,"50m":16,"51":[40,61],"51316m":6,"515":63,"52":[33,61,63,70],"522b4":53,"522b408a":70,"53":[16,33,39,40,64,66],"530255m":70,"54":[65,70],"546aeec1":63,"549379m":64,"55":[5,6,7,16,39,53],"56":[5,6,16,28,40,65,70],"564322413":65,"56963":68,"57":[5,6,28,39,40,50,64,70],"572":1,"58":[40,57,70],"581886":[5,6],"58205":25,"584m":63,"587833m":70,"58883":1,"58884":1,"59":7,"590102m":50,"59161":[1,64],"5ae4e5fbab8b4e529ac404f260d4e2d1_1":28,"5b0e2d00":24,"5e69":7,"5level":35,"5m":[16,39,46],"60":[35,40,64,65],"603":63,"607":65,"60bc264d":60,"61":[42,63],"617":63,"617465m":64,"62":70,"624":63,"625":63,"628":63,"63":63,"6367e55a78a2":66,"64":[5,6,33,43,61],"6527":70,"657657":[5,6],"65825":66,"65m":46,"66":[64,65,70],"66350f69":[12,19,46,53],"66m":16,"67":[5,6,40,46,70],"672m":46,"68":[16,22,33,70],"684":16,"6849794470754667710l":32,"685k":39,"68b31f0a":12,"68m":39,"6951a712":32,"69dcaba4":32,"69m":16,"6e":6,"6e51ad67":32,"6fafc4c2":32,"6m":16,"70":[5,6],"7001":[5,6],"70070":9,"701b744f971e":28,"705196":64,"705196m":64,"70m":16,"71":[2,22,41,57,64,70],"7127ee12":63,"715367m":46,"71560":46,"716391m":64,"717593":46,"72":40,"725be470":63,"73":70,"731":63,"74":[5,6,16],"743525":[5,6],"745":63,"75":[56,66],"7529":33,"753301m":6,"756":63,"758025m":6,"75b84c92":[12,69],"76437":65,"7651739":46,"77":46,"7777":[4,56,66],"78":[5,6],"79":[39,63],"7909":28,"799155":[5,6],"7f31245a":[12,32],"7f89660b079b":7,"7f9a81e8":41,"80":[40,66],"800":6,"800m":6,"803":[5,6],"805":[5,6],"808":[5,6],"8080":[1,6,16,56,63,66],"81":[5,6,63],"810591m":64,"814":[5,6],"816":6,"82":63,"834":63,"836":63,"838077m":64,"849713m":64,"852594m":64,"854625984":15,"8563":[4,8,28,36,71],"8596":28,"85m":46,"86":16,"86183":66,"875":53,"88":[33,39],"880001m":6,"883b":28,"887":46,"8888":4,"89":[39,70],"891933m":6,"8b39":28,"8ecb9cb7c7804d5d92e258b23d5245cc_1":28,"8f7f6ad7bc2d4cb5aa57a530927a95cc_2":28,"90":16,"901091":65,"91":46,"916328269":15,"92":[5,6,40],"9249":54,"94":40,"946738738":65,"94766d3c":28,"95":63,"955dbd1325334a84972b0f3ac19de4f7_2":28,"96":[16,39,49,63],"961441m":70,"9649":60,"969732m":46,"970":46,"970892m":6,"973":63,"98":[16,49],"98278":28,"98aee3ccbefb":28,"997":63,"9999":4,"9eed":7,"boolean":[2,22,41,70],"byte":[1,26,32,33,49],"case":[23,65],"catch":[46,48,51],"char":[32,34],"class":[2,5,6,12,16,19,22,24,26,28,32,33,35,38,40,41,42,49,50,53,55,56,57,61,64,65,69,70],"default":[23,26,42,50,60,64,68],"do":[28,42,46],"enum":22,"export":[17,43],"final":[2,32,46,63],"for":[16,17,23,24,26,28,32,42,44,46,62],"function":42,"if":[24,32,46],"import":[24,32,46,56],"in":[6,12,19,22,24,26,32,33,38,40,42,46,48,50,51,52,53,55,57,64,65,70],"instanceof":[21,65],"int":[32,46,48,51,53],"long":[22,28,32,41,70],"new":[5,6,32,46,48,49,51,56,63],"null":[2,7,12,19,28,32,35,41,46,51,70],"public":[2,12,24,32,46,48,51,53,55,56],"return":[24,26,46,55,65,70],"static":[24,26,32,46,48,51,53,56],"super":[12,32,53],"switch":[24,44],"throw":[24,32,46,48,51,64,65],"true":[2,4,5,6,8,16,17,21,28,32,35,42,46,48,51,52,53,61,63,64,65,68,70],"try":[1,8,17,46,48,51,66],"var":[10,25,60,61],"void":[2,24,32,46,48,51,56],"while":[24,28,32,46,48,51],"with":[6,21,23,28,32,42,46,57,64],_162:46,__cf_user_text_encod:60,a2:23,a577:66,a7e4:60,aaa:[22,53],ab35:28,abandon:[5,6],abc:9,abl:42,abort:[6,24,40,42,46,50,57,64,65,70],abstractconnectionhandl:63,abstracthttp11processor:63,abstractprotocol:63,abstractqueuedsynchron:63,accept:34,access:63,acquiresharedinterrupt:63,action:[8,69],actionarg:44,activ:42,actuat:[56,66],add:[5,6,43,46],addend:[22,41,70],addit:35,admin:[1,6,8,12,19,32,36,42,46,52,58,60],advic:[2,57,64,65,70],advisor:65,af24:28,af85b69f93f8:60,affect:[6,12,19,22,24,32,33,38,40,42,46,50,52,53,55,57,64,65,70],after:[23,42,52,68],afterreturn:24,afterthrow:24,age:42,agent:[12,21,36,41,49,56,66],agent_id:66,agentid:[4,66],aitmilli:68,ali:[5,6,16,60],alibaba:[2,5,6,15,18,21,22,24,30,31,35,41,42,44,49,57,64,66,70,71],aliyun:[1,17,23,26,28,29,31,36,46,60,61,62,66],all:[26,42,43,49,50,51,61],alloc:44,allow:42,allow_equa:[5,6],allow_input:28,allow_interrupt:28,alpin:17,also:28,amd64:[17,33],an:42,analysi:42,and:[26,28,42,50,58,61],andrei:44,annot:[12,53,55],annotatedcommandimpl:63,annotationconfigembeddedwebapplicationcontext:69,ansi:1,ant:[5,6,17],apach:[2,5,6,10,22,32,41,57,58,63,64,70],api:[1,3,30,61],app:[28,32,35,60,66],appclassload:[12,19,22,32,35,41,46,48,50,51,53,57,64,69],append:[6,46,62,64],appenderref:35,appl:60,apple_pubsub_socket_ren:60,applic:[35,42,60,66],applicationcontext:69,applicationfilterchain:63,appnam:[4,56,66],apt:17,arch:[5,6,33,61],are:42,arg:[32,46,48,51,56],argument:[26,28,33,44],arrai:[26,49],arraylist:[22,28,32,41,46,65,70],artha:[0,2,3,5,8,9,10,12,15,16,19,22,23,24,25,26,27,28,32,33,35,38,40,41,42,47,48,49,50,51,57,59,60,61,62,63,64,65,67,68,69,70],arthas2:[5,6],arthas3:6,arthasag:56,arthasattachexampl:56,arthasclassload:[12,41],arthasconfigmap:56,arthasmethod:2,artifactid:56,as:[4,5,6,10,21,46,49,58,63,66],asia:61,async:[1,26,35,44],async_exec:28,asyncappend:[5,6,35,46],asynctimeout:[5,6],at:[23,30,46,57,63,65,70],atent:70,atexceptionexit:70,atexit:70,atomiclong:[22,41,70],attach:[1,3,6,8,17,36,46,49,56,58,63,66,71],attachnotsupportedexcept:21,attribut:37,auth:[1,14,26,28],authent:[8,26,63],authenticatorbas:63,autojump:60,autojump_error_path:60,autojump_sourc:60,aux:36,avail:26,averag:[16,26,33],avg:40,await:63,awk:28,awt:[6,61],b03:61,b09:33,b09f1353:28,b16:61,b2c5c1d5aa2a:28,b3:23,b69d6db7a869:28,ba:42,bac0:28,backward:34,badbound:[22,41,70],badrang:[22,41,70],badsiz:[22,41,70],bar:28,base64:[1,8,14,26,48,51],base:[43,63],bash:[17,28,60],basic:[8,44],bat:58,batch:42,bbb:[9,22],bc5b:66,be:[22,26,28,41,42,70],bean:65,befor:[23,24,42,52,68],begin:34,between:26,bg:[1,34],bin:[6,17,36,58,60],bio:[5,6,63],bit:[5,6,33,43,61],bizlog:[5,6],bja:6,bject:42,block:[5,6,63],blockpol:16,bodi:28,bool:42,boolea:42,boot:[4,8,17,21,28,30,33,35,38,41,46,61,66,69],bootstrap:[6,58],bootstrapclassload:[12,41,49],boss:[5,6],bound:[22,41,70],branch:44,breakpoint:44,browser:66,btrace:24,bug:[6,49,61],bugfix:49,buglevel:61,bugreport:[6,61],build:[5,6],built:44,bus:44,busi:63,but:63,by:[23,26,42,50],byarrai:32,bytecod:[19,21,26],c1:[16,63],c2073d3b:54,c2:[16,63],ca:17,cach:[7,33,42,44,52],calcul:1,call1:6,call3:6,call4:6,call5:6,call6:6,call7:6,call8:6,call9:6,call:[48,51,63],callhsfl1:6,callpathtrac:6,callsiteform:42,can:[28,57,64],candid:60,case_insensitive_ord:32,caseinsensitivecompar:32,cat:[1,9,10,14,26],catalina:[5,6,16,58,63],categori:32,cd:36,certif:17,ces:61,cfr:[32,46],cgraphicsenviron:[6,61],ch:[35,61],chang:[5,6,26,61],charact:[1,66],charat:[46,55],charsequ:32,charset:[32,33,35,61],checkbound:[32,55],choos:[6,58],chrome:[28,44],ci:43,cla:42,class_nam:[6,22],class_path:28,classa:[38,64],classb:[38,64],classcount:28,classdefinit:26,classdump:19,classfiletransform:51,classic:35,classload:[2,5,6,14,19,22,26,38,41,46,48,49,53,55,65,70],classloaderclass:[12,19,22,32,35,38,41,48,51,53,55,69],classloaderhash:[12,35,53,69],classloadernam:28,classnam:[22,28,50,51,69],classpattern:51,clazz:2,cldrdata:12,clean:17,cleaner:63,cleanup:[5,6],clear:26,client:[5,6,17,46,66],clientpol:16,close_sess:28,cls:[1,14,26,27,43],clude:42,cmsabortableprecleanw:68,cmstriggerinterv:68,cmswaitdur:68,cn:61,cnt:[6,12,19,22,24,32,33,38,40,46,50,52,53,55,57,64,65,70],code:[1,12,28,32,33,53,60,69],code_cach:46,codecachemanag:33,codeheap_:[16,39],codepointat:55,codepointbefor:55,codepointcount:55,codesourc:35,collectioncount:33,collectiontim:33,collector:33,colorfgbg:60,colorterm:60,com:[1,2,3,5,6,7,12,15,17,18,21,22,23,24,26,28,29,31,35,36,38,40,41,42,44,46,48,49,51,53,56,57,60,61,62,63,64,65,66,69,70,71],comm:42,command:[4,5,6,8,13,23,24,26,42,46,57,61,62,63,64],commandlin:17,commandprocesstask:63,commit:[30,33],common:[2,10,22,41,57,63,64,70],compar:32,compareto:55,comparetoignorecas:55,compat:21,compil:[26,33,38,42,61],compilerthread0:[16,63],complet:34,compress:33,compressed_class_spac:39,concat:55,concaten:26,concurr:[32,46,63,69],concurrenthashmap:69,cond:42,condit:[28,40,42,57,64,70],conf:34,config:[4,5,6],configmap:56,configur:35,connect:[1,5,6,17,26,46,66],connector:63,consol:[7,26,32,35,66],consoleappend:35,consumerid:28,cont:61,contain:[7,17,55],containerid:17,content:[5,6,12,16,46,60,61],contentequ:55,context:[23,44,65,69],contextloadfiltervalv:63,continu:46,control:[42,44],copi:[17,33],copyright:44,copyvalueof:55,core:[12,24,35,36,49,63,65,69],corpor:[6,33,61],cost:[5,6,12,19,22,24,28,32,33,38,40,42,46,50,52,53,55,57,64,65,70],cost_express:6,count:[6,7,16,23,26,33,37,40,42,46,64,65,70],countdownlatch:63,counter:[1,26,43],countri:61,coyot:63,coyoteadapt:63,cpp:44,cprinterjob:61,cpu:[5,6,16,44,46,61],cpuusag:63,crash:42,creat:[24,25,28,65],cst:7,ctrl:[6,7,16,24,28,34,40,42,46,50,57,64,65,70],curl:[8,28,31,36,46],current:[1,6,7,26,60,66],currentthread:70,currenttimemilli:6,custom:49,cycl:[40,44],da:6,dae:46,daemon:[5,6,16,33,46,63],daemonthreadcount:37,dai:42,dal:24,dao:24,darwin:60,dashb:46,dashboard:[1,10,14,26,49,63],data:[8,61],date:7,dcach:44,dd:35,deadlock:33,debug:[30,35],declar:55,decod:[26,32],decompil:[26,32,46],defa:42,delegatingclassload:[12,49],delet:[34,51],deleteal:51,deletecharat:46,delta:16,delta_tim:[16,63],deltatim:63,demo:[12,19,21,22,28,32,33,38,40,41,42,44,46,48,51,53,56,60,66,69],demoapp:[4,66],demoapp_urjz5l48rpbr2ali5k4v:66,depend:56,der:60,descript:[26,42],descriptor:33,destroi:24,detail:[29,42],devel:17,develop:[5,6,8,10,58],diagnost:26,dir:[5,6,42,61],direct:39,directori:26,disabl:[4,28,42,49,53,70],disabledcommand:4,discuss:44,dispatch:[46,63],displai:[26,60,61],dnsn:12,doacquiresharedinterrupt:63,doc:[1,3,8,17,23,26,28,30,46,60,61,62,66],docker:30,document:29,doe:6,dofilt:63,doget:[5,6,63],done:28,doubl:[22,41,70],double_unit:[22,41,70],dpkg:31,dtlb:44,due:42,dump:[1,4,14,26,29,42,49],dumpcollaps:44,dumpflat:44,dumpthreads0:63,dumptrac:44,durat:44,dwmmjsqsll:60,e7b0:66,each:42,eagleey:[5,63],eagleeyefilt:63,ean:42,echo:[1,9,14,26,28],ect:42,ed:[42,61],eden:33,ee3bc004:28,effect:28,effectivelevel:35,eg:58,eh:[6,46],embed:69,en:[8,61],enabl:[23,42,50],encod:[5,6,26,35,61],end:[23,34],endian:61,endor:61,endors:61,endpoint:66,endswith:55,english:30,enhanc:[26,42,50],enter:[46,58],entryset:22,env:[4,17,26,60],environ:[6,41,60,61],eof:28,equal:55,equalsignorecas:55,error:[8,60,68],errorreportvalv:63,escap:[1,66],etc:26,event:43,exampl:[23,26,38,48,49,50,51,60,61,62],exce:[57,64],except:[24,26,30,46,48,51,55,64,65],exclud:[64,70],exec:[6,8,17,28,63],exectimeout:28,execut:[1,5,6,7,26,42,46,57,63,64],executor:63,exist:58,exit:[26,28,46,47,49,57,64],exp:[5,6,65],expand:[28,69],experss:28,express:[23,26,28,40,41,42,50,57,64,65,69,70],ext:[5,6,12,61],extclassload:[12,19,32,46,53,69],extend:32,extens:[5,6,12,61],extern:42,f1dca050:66,f7273eb5:66,factor:46,fail:[26,28,40,42],failur:26,fals:[2,5,6,12,16,22,28,32,33,41,42,46,50,52,53,57,61,63,64,65,68,70],faq:30,fat:[35,66],fault:44,featur:49,ff267334bb65:33,fg:[1,34],fgc:[5,6],field:[22,26,42,48,51,53],field_nam:[22,70],file:[5,6,12,21,25,26,33,35,42,44,61,62,69],filenam:28,filenamepattern:35,filepath:24,filter:[63,64,70],filterchainadapt:63,finish:24,fix:17,folder:[25,60,61],follow:6,foo:28,forcegc:[1,69],forefullgc:68,format:[21,24,42,44,46,48,51,55,61,64],forward:34,found:[32,58],fqcn:[32,41],fragment:65,frame_buffer_overflow:44,framework:32,fri:7,from:[17,26],further:42,futuretask:63,g1:[16,63],g1_eden_spac:[16,39],g1_old_gen:[16,39],g1_old_gener:16,g1_survivor_spac:[16,39],g1_young_gener:16,game:[1,3,12,17,21,32,48,51,53,57,64,65,70],garbag:33,gc:[0,16,26,46,64],gehui:7,gen:33,gener:[8,33,66],get:17,getbeandefinitionnam:69,getbyt:55,getchar:55,getclazz:24,getcontextclassload:70,getfield:64,getinst:69,getinternalthreadcputim:63,getload:65,getmessag:[46,48,51,64],getmethod:24,getnam:[24,64],getparam:24,getproductbyid:24,getproperti:41,getresourc:[1,12],getsampl:44,getsimplenam:24,getstat:[1,14,26,49],getter:2,getthreadcputim:63,getthreadinfo:63,getwrit:6,gib:33,gif:5,git:[10,58],github:[2,15,21,22,26,29,30,31,41,42,44,49,57,64,66,70,71],gmt:65,gopherproxyset:61,graphicsenv:[6,61],greater:[22,41,70],grep:[1,5,6,14,26,28,36,46,62],group:[5,6,16,46,63],groupid:56,gt:63,guid:[2,22,41,57,64,70],handl:63,handler:[46,63],hash:[12,32],hashcod:[12,19,22,32,35,41,48,53,55,65],hashmap:56,hasnext:46,havenextnextgaussian:[22,41,70],headless:6,heap:[1,16,25,26,33,39,46],heapdump2019:25,heapdump:[1,14,21,26],heapdumpafterfullgc:68,heapdumpbeforefullgc:68,heapdumponoutofmemori:68,heapdumppath:68,hello:[20,21,41],help:[1,8,10,14,23,29,50,60,61,62],hen:42,hengyunabc:[12,17,35],histori:[1,14,26,34],hit:58,hod:42,hom:46,home:[1,5,6,12,16,17,31,36,41,42,46,52,60,61],hotspot:[5,6,33,61],hotspotthreadmbean:63,hour:42,hprof:25,hsehdfsfghhwertyfad:56,hsf:[5,6],html:[1,2,3,22,28,29,41,57,64,66,70],http11:63,http:[1,2,3,5,6,15,16,17,18,21,22,23,26,29,30,31,36,41,42,44,46,49,56,57,60,61,62,63,64,66,70,71],httpport:4,httpservlet:63,httpservletrespons:6,hub:17,hux:6,ib:[33,61],ibatisproductdao:24,id:[5,6,7,16,28,36,44,46,50,51,52,54,56,57,58,64,66],idea:[30,58],ignor:23,illegalargumentcount:[32,42,46,48,51,53,65,70],illegalargumentexcept:[28,46,64,65,70],imag:6,impl:63,implement:[24,32],improv:49,includ:[35,42],index:[1,5,6,65],indexof:55,indexofsupplementari:55,inf:[12,69],info:[1,5,6,12,17,26,35,43,46,53,61,66,69],inform:[26,42],informat:42,init:[6,21,33,55,64],init_sess:28,initi:28,inner:[48,51],innocuousthrea:63,input:[9,26,28,33,58],inputrc:34,inputstatu:28,insensit:23,instal:[17,36],instanc:69,instruct:44,instrument:[3,26,48,51],integ:[21,28,46,48,49,51,64,65,70],interact:36,interfac:[12,24,42,53,69],intern:[19,22,35,41,43,55,63],internaldofilt:63,interru:46,interrupt:[5,6,16,63],interrupt_job:28,interruptedexcept:[32,46,48,51],interv:[26,65],into:26,introduc:42,invert:23,invoc:26,invok:[42,63],io:[6,32,46,61,64],ion:42,ip:[4,28,36,58,71],ip_hash:66,is:[1,5,6,13,23,26,28,33,42,44,46,65,66,70],is_daemon:[6,50,57,64],isalist:61,isannot:[12,53],isanonymousclass:[12,53],isarrai:[12,53],isbefor:2,isblank:64,isempti:[22,41,55,70],isenum:[12,53],isinterfac:[12,53],isk:42,islocalclass:[12,53],ismemberclass:[12,53],isprimit:[12,53],isreturn:2,issu:[2,17,21,22,41,42,44,57,64,70,71],issuecom:21,issynthet:[12,53],isthrow:2,it:[17,42,57,64],itemlist:[5,6],iter:[22,32,46],iterm:60,iterm_profil:60,itim:44,ja:60,jaccess:12,jad:[1,14,26,28,49],jamschedulethread:[5,6],jar:[1,3,6,8,12,17,18,21,28,30,31,32,33,35,36,46,53,61,66,69],java8:[19,22],java:[5,6,8,12,16,18,19,22,23,24,25,26,29,30,31,33,35,36,37,38,40,41,42,43,44,46,48,49,51,53,55,57,58,60,61,62,63,64,65,66,67,69,70],java_hom:[1,17,60],java_main_class_65244:60,java_pid:[54,66],javaag:[3,21],javas:3,javavir:46,javavirtualmachin:[5,6,12,16,61],javax:[6,37,63,64,70],jbo:7,jce:[33,61],jd:[49,61],jdk1:[5,6,12,36,46,61],jdk8:49,jdk:[5,6,12,16,19,22,30,35,36,41,43,44,46,48,49,61,63],jetbrain:[29,58],jfr:[33,61],jfxrt:12,jioendpoint:63,jit:16,jmap:[1,21,25],jmc:44,jnu:61,job:[1,28,42,46,52],jobid:[28,52],jobstatu:28,join:55,join_sess:28,jprofil:[44,64],jps:[1,10],jre:[5,6,12,17,33,41,46,61],js:42,json:[28,42],json_data:28,json_pp:28,jsse:[33,61],jstack:[16,21],jvm:[7,12,14,17,21,26,30,32,36,39,42,43,44,48,51,53,58,60,61,63,64,65,69],jvmti:69,k561bkk917gg972stqclbz9h0000gn:60,katacoda:[19,22,30],kei:[22,28,60,61,68],keymap:[1,14,26,34],kill:[1,7,34],kubectl:17,l1:44,lang:[1,3,6,10,12,19,24,28,37,41,42,53,55,60,63,64,65,69,70],languag:[2,22,41,57,61,64,70],lass:42,lastindexof:55,lastindexofsupplementari:55,latest:17,launchd:60,launchedurlclassload:[38,41,69],launcher:[12,19,22,32,35,46,48,50,51,53,57,61,64,69],lead:23,legacy8ujss:12,length:[21,24,46,55,65],level:[26,42,61],li:61,lib64:33,lib:[1,4,5,6,12,17,33,36,61,69],libra:61,librari:[5,6,12,16,33,46,60,61],limit:[57,64,69],line:[5,6,23,28,34,61],linenumb:[28,32],linkedhashmap:28,linux:[1,7,9,11,20,30,31,33,44,45,63],list:[21,32,41,44,46,48,50,51,58],listen:[4,46,63,71],listenerid:[28,40,42,64,65,70],littl:61,ljava:24,llc:44,load:[0,12,26,33,44],loadedclass:43,loadedcount:12,loadedcounttot:12,loader:[2,6,12,19,22,35,38,41,53,69],loaderclassnam:51,loaderhash:51,local:[36,60],localconnectionnonauth:8,localedata:12,localhost:[1,8,28,44,56,64,66],localizedmessag:28,locat:[7,19,32,46,52,70],lock:[44,63,69],locksupport:[63,69],log4j:32,log:[4,7,8,19,21,31,35,36,41,42,46,49,52,60],logadapt:41,logback:35,logfil:62,logger:[1,14,24,26,32,41],lognam:60,logout:47,loop:[48,51],ls_in_valu:[5,6],lt:63,lwawt:61,lwctoolkit:61,m2:35,mac:[16,30,31,46,61],machin:[6,33,61],maco:[44,60],macosx:61,main:[5,6,16,32,36,48,50,51,56,57,63,64,65,66,70],main_class:66,manag:[33,37,42,61,63,68],manifest:12,map:[22,39],marksweep:33,marksweepcompact:33,mask:[22,41,70],match:[6,23,42,50,55],math:[1,3,12,17,21,32,53,57,64,65,70],mathgam:[12,19,21,22,28,32,40,41,42,46,48,51,53,57,60,64,65,66,70],maven:[56,58,66],max:[6,16,23,33,39,46,64],maxfiles:35,maxheapfreeratio:68,maxhistori:35,mbean:[1,14,26],mc:[1,14,26,29,32],md5:[48,51],md:66,me:30,mem:44,memori:[14,16,26,33,38,46],messag:28,met:42,meta:12,metaspac:[16,33,39],method1:64,method2:64,method3:64,method:[2,5,6,24,26,40,42,46,48,49,50,51,53,55,57,63,64,65,70],methodcount:28,methodnam:28,mf:12,mib:33,middlewar:24,min:[6,64],minheapfreeratio:68,minut:42,mirror:[31,46],misc:[12,19,22,32,35,41,46,48,50,51,53,57,63,64,69,70],miss:44,mission:44,mix:[43,61],mm:35,mmmmmmyiddddd:4,mobil:65,mod:42,mode:[5,6,42,43,61],model:61,modifi:[12,53,55],modifierpriv:53,modul:[5,6],moduleclassload:32,monitor200:63,monitor:[10,14,26,32,42,48,49,64,70],monoton:43,more:[32,42],mozilla:8,mrjtoolkit:12,ms:[5,6,12,16,19,22,24,26,28,32,33,37,38,40,42,44,46,50,52,53,55,57,64,65,70],msg:35,multipli:[22,41,70],must:[22,41,70],my:25,mylog:35,n2:32,name:[5,6,7,12,16,17,19,22,26,32,33,35,37,41,42,43,46,48,51,52,53,54,55,60,61,63,65,66,68],nashorn:12,nativ:63,nativeid:16,nativemethod:28,need:[28,46,65,70],neg:[22,41,70],net:[32,63],nettyhttptelnetbootstra:[16,63],nettywebsocketttybootst:63,network:[5,6,61],next:[34,46],nextint:[46,48,51,64,65,70],nextnextgaussian:[22,41,70],nginx:66,nhanc:42,nio:[16,61],nioeventloopgroup:[5,6,46],nmethod:[16,39],no:[33,35],node:22,non:[16,22,23,39,41,70],nonheap:[16,39,46],nonsynccontentequ:55,not:[6,8,42],note:30,npe:49,ns:[5,6,44],nsform:42,nts:61,nullpointerexcept:32,num:23,number:[23,26,28,46,48,51,58,63,65,70],numberofinst:12,obj:[42,65],object:[2,5,6,12,24,26,28,42,53,63,65,70],objectnam:37,objectstreamfield:[22,32,41,70],of:[6,23,26,34,40,42,50,58,63],offsetbycodepoint:55,ognl:[1,2,5,6,14,21,22,26,28,49,57,64,65,70],ok:[10,44],ome:61,on:[42,44,63],one:[6,32,42,58],onli:[13,32,48,51],oom:16,open:[21,33,43],openjdk:[17,41,43,44,49],openjss:12,oper:33,opt:[17,36,41],option:[14,21,23,26,49,50,52,53,57,60,61,62,64,70],or:[40,42,64,65,70],oracl:[3,6,33,61],org:[2,5,6,8,10,22,32,35,38,41,57,58,63,64,69,70],origin:[22,41,68,70],os:[5,6,16,33,44,46,61],ose:42,other:[21,63],out:[7,10,21,35,41,46,48,51],outpu:42,output:[5,6,9,19,23,26,38,40,42],over:6,overrid:24,overrideal:4,overview:26,owner:6,packag:[3,32,33,36,46,56],page:44,pandora:32,pangin:44,param:[2,5,6,7,21,24,28,40,57,64,65,70],paramet:[8,26,55,65],paramslen:24,parent:[12,42],park:[44,63],parkandcheckinterrupt:63,password:[8,66],patch:61,path:[6,28,31,33,36,42,50,60,61,62],pattern:[19,23,24,28,32,35,37,40,50,53,55,57,64,70],peak:33,peakthreadcount:37,perf:[1,26,43,44],perfcount:[1,14,26],perform:23,period:[16,63],perm:[5,6],permit:8,petstor:[5,6,24],pid:[1,7,10,17,28,36,46,52,54,58,63,66],pipe:[23,26,62],pkg:61,plaintext:[1,5,6],platform:61,platformclassload:41,pleas:[32,58],png:6,pod:17,poll:28,pool:46,port:[4,28,36,58,66],posit:[22,41,70],possibl:42,post:28,ppp:8,press:[6,24,40,42,46,50,57,64,65,70],pretti:28,previou:34,prime:28,primefactor:[21,28,40,42,46,48,51,57,64,65,70],print:[23,24,26,28,42,46,48,51,64,65,70],printclasshistogram:68,printclasshistogramaf:68,printclasshistogramb:68,printconcurrentlock:68,printerjob:61,printgc:[68,69],printgcdatestamp:68,printgcdetail:68,printgcid:68,printgctimestamp:68,println:[21,24,41,46,48,51,64],printstream:[32,46,64],printwrit:6,priori:46,prioriti:[5,6,16,50,57,63,64],privat:[2,12,32,46,53,60,61,69],process:[6,17,46,58,63],processhandl:63,processimpl:63,processor:[16,33],processtopbusythread:63,product:[5,6,61],productdao:24,profil:[14,26],profiled_nmethod:39,proper:[2,22,41,57,64,70],properti:[3,5,6,8,26,28,42,43,56,61,66],protect:32,proxi:42,ps:[33,36],ps_eden_spac:46,ps_marksweep:46,ps_old_gen:46,ps_scaveng:46,ps_survivor_spac:46,pull_result:28,put:56,pwd:[1,14,26,60],qos:[5,6,32,35],qps:16,qq:30,quick:21,quit:[1,7,14,46,49],random:[22,32,41,46,48,51,53,64,65,70],rate:[26,40],raw:8,re:[33,42,65],readi:28,readm:66,real:1,redefin:[1,14,16,26,59],redefineclass:[26,48],redi:66,ref:35,refer:[44,46,63],reflect:[12,49],refus:28,regex:[23,50],regionmatch:55,regular:[23,50],releas:[30,31,66,69],remot:[5,6],remotemavenserv:58,remov:[23,36],remset:[16,63],render:60,replac:55,replaceal:55,replacefirst:55,replai:65,repo:[31,46],repositori:35,represent:26,req112:28,requestid:28,requir:28,reset:[1,14,26,48],resour:61,resourc:33,resourcenotfoundexcept:12,rest:28,result:[8,9,28,42,44,46,48,51,52,70],resum:44,ret:[5,6,65],retransform:[1,14,26,32,38,42,48],retransformclass:[26,51],returnobj:[2,5,6,10,21,28,46,57,64,70],rf:[31,36],rm:[17,31,36],roll:35,rollingfileappend:35,rollingpolici:35,root:35,row:[12,19,22,32,33,38,46,52,53,55,65],rt:[12,16,26,33,40,61,64],run:[17,32,44,46,48,51,57,63,64,65,70],runnab:46,runnabl:[5,6,16,63],runnableadapt:63,runtim:[6,16,33,41,46,61],runwork:63,ry:61,sampl:[5,6,16,24,63],sat:7,save:[42,52],sb:46,sbin:60,sc:[1,10,14,22,26,35,49,69],scaveng:33,schedul:[16,28],scheduledfuturetask:63,scheduledthreadpoolexecutor:63,screen:[5,6,26],script:[1,24],scriptlisten:24,scriptsupportcommand:24,sdkman:60,sdkman_platform:60,sdkman_vers:60,se:[6,42,61],search:[26,53,55],second:[4,32,44,46,48,51],secur:[8,42,66],sed:28,see:26,seed:[22,41,70],seedoffset:[22,41,70],seeduniquifi:[22,41,70],selec:42,select:[1,23,42],sensit:23,sep:[7,44],separ:[5,6,28,61],serial:58,serializ:32,serialpersistentfield:[22,32,41,70],serialversionuid:[22,32,41,70],seriou:42,server:[1,4,5,6,7,26,33,43,49,54,56,58,61,63],servercooki:[5,6],servic:[16,32,36,63],servlet:[6,63,64,70],session:[1,7,10,13,14,26,52,66,69],session_id:[54,66],sessionid:28,sessiontimeout:4,set:[42,57,64],setter:[2,42],setup:17,sh:[4,6,10,17,21,49,58,66],shanghai:61,sharedloadedclass:43,sharedunloadedclass:43,shell:[28,31,36,60,63,69],shift:34,shlvl:60,show:[26,63],shutdown:[26,49],signal:[46,63],simpl:[12,53],sinc:[4,42,69],size:[5,6,22,41,51,70],sizeandtimebasedrollingpolici:35,sizelimit:28,skip:64,skipjdkmethod:64,sleep:[28,32,46,48,51,63],slf4jlocationawarelog:41,sm:[1,14,26],so:[57,64],socket:[21,66],socketprocessor:63,socketwrapp:63,solv:6,sourc:[12,32,48,51,53,69],space:33,spec:33,special:28,specif:[5,6,33,61],specifi:26,spi:32,split:55,spring:[4,28,30,33,35,65,66,69],springappl:41,springframework:[35,38,41,69],spy:49,ss:[28,42],stack:[1,10,14,26,64,65,70],stacktrac:28,standard:26,standardcontextvalv:63,standardenginevalv:63,standardhostvalv:63,standardwrappervalv:63,star:30,start:[6,7,21,33,44],starter:[4,30,66],startswith:55,startup:[6,58],stat:[1,12],statcontrol:1,state:[5,6,16,28,46],statist:26,statu:44,staturl:54,statuscod:28,stem:42,sticki:66,stop:[1,4,7,14,17,21,22,23,26,36,44,46,50,51,56],store:[5,6],string:[1,12,19,22,24,28,41,42,46,48,51,55,56,64,69,70],stringbuff:46,stringbuild:[6,64],stringcod:32,stringutil:[10,64],student:42,su:[6,36,46],sub:[42,49,53,70],subsequ:55,substr:55,succeed:28,success:[1,12,17,24,26,28,35,40,46,51],successfulli:[5,6,61,65,68],sudo:[6,31,36,46],summari:[3,23,26,42,50,60,61,62],sun:[6,12,19,21,22,23,32,35,41,46,48,49,50,51,53,57,61,63,64,69,70],sun_standard:61,sunec:12,sunjce_provid:12,sunpkcs11:12,sunrsasign:[33,61],support:[13,42,44],survivor:33,sweeper:63,sy:42,sync:63,synchron:63,syntax:28,sys:1,sysenv:[1,14,23,26],sysprop:[1,10,14,23,26,28,62],system:[4,5,6,12,16,21,26,28,33,35,41,46,48,51,60,61,63],systemclassload:[35,41,49],systemload:16,tab:[30,34,60,61],tag:[17,49],taobao:[5,6,7,12,24,41,49,53,56,63,65,69],target:[2,12,26,35,36,42,65,70,71],task:[16,63],taskthread:63,tbxwzs4s4sbcvh7frbcc7n000000gn:61,tccl:[6,50,57,64],tch:42,ted:42,tee:[1,14,26],telnet:[1,4,6,28,36,58,64,66],telnetport:4,temp:6,tenur:33,terfullgc:68,term:60,term_program:60,term_program_vers:60,term_session_id:60,termd:[6,49],termin:[5,6,28,63],test:[3,6,7,9,10,22,24,38,40,44,48,50,51,52,53,61,63,64,65,66],test_pe3lzo9na9enjytpgl9l:66,testclass:49,testdurexfilt:63,testfilt:[64,70],testpathtrac:6,testthreadblock:63,testtraceservlet:[5,6],th:37,than:[22,32,41,70],the:[5,6,23,26,28,42,50,58,60,61,68],then:58,thi:[6,7,22,23,24,26,28,32,42,46,50,60,61,62],thread0:16,thread:[1,10,14,16,23,26,27,35,37,49,64,70],thread_nam:[6,50,57,64],threadcommand:63,threadcount:37,threadimpl:63,threadloc:65,threadmxbean:63,threadpoolexecutor:63,throwabl:2,throwexp:[2,21,28,70],thrown:26,tick:43,tier:[33,61],time:[1,5,6,7,16,17,26,28,33,46,57,63,64,65,66],timed_:46,timed_wai:[16,63],timed_wait:[5,6,23,63],timeexpir:28,timeou:42,timeout:[7,42,46],timer:[5,6,16,46,63],timerthread:[5,6],timestamp:[1,5,6,40,65,66],timetunnel:65,timeunit:[32,46,48,51],timezon:61,tm:[5,6,33,49,61],tmp:[1,3,9,10,11,12,19,24,25,32,36,38,44,46,48,51,53,60,61,69],tmpdir:[6,60,61],to:[1,6,8,17,21,23,24,25,26,28,40,42,46,50,57,58,62,64,65,66,70],tochararrai:55,todo:[5,6],tolowercas:55,tomcat:[5,6,16,26,63],tool:[21,26,36,44,69],toolkit:61,top:63,topn:49,tostr:[6,53,55,64],total:[5,6,16,26,33,39,40,46,63,64],totalsizecap:35,totaltim:43,touppercas:55,tr:28,tra:42,trace:[7,10,14,16,26,28,42,44,48,49,50,52,65,70],trace_id:6,traceid:65,tracepoint:44,trail:23,transform:[42,51],transformcount:51,triger:51,trim:[23,55],truecolor:60,ts:[28,46,50,57,64,70],tt:[1,5,6,10,14,16,21,26,28,42,48,49,64,70],tty:13,tualmachin:46,tunnel:[1,4,26,30,54,56],tunnel_serv:66,tunnelserv:[4,56],tutori:[1,28,66],two:26,txt:[9,11,35,48,51],type:[28,37,42,53],u4e2d:21,u6587:21,ui:[36,49],ult:42,unabl:21,undo:34,unicod:61,unicodebig:61,unit:[42,43],unix:31,unknown:61,unless:42,unload:33,unloadedclass:43,unnam:43,unsaf:[21,22,41,44,63,70],untitled2:5,unus:12,unzip:36,updat:[17,26,35,68],uptim:16,urjz5l48rpbr2ali5k4v:66,url:[1,6,28,54,56,61],urlclassload:32,us:[8,33,61],usag:[16,23,26,33,39,46,50,60,61,62],use:[8,31,32,46],used:[12,16,33,39,46],useful:17,user:[1,5,6,7,12,19,24,31,32,35,38,42,48,51,52,60,61],user_hom:34,usercontrol:[38,48,51],userdetailsserviceautoconfigur:66,usernam:8,userstat:63,using:[1,8,26,28,66],usr:[5,6,17,33,60,61],utf8:35,utf:[5,6,35,60,61],util:[5,6,16,21,24,32,46,53,63,64,69,70],v125056161:6,v8:21,va:60,valu:[23,26,28,32,42,43,52,53,54,60,61,63,64,66,68],value1:41,value2:41,valueiter:69,valueof:[55,64],valv:63,variabl:[43,60],variou:26,vendor:[5,6,33,61],verb:42,verbos:[33,42],version:[1,5,6,8,14,16,17,26,28,33,35,43,44,46,56,61,66],view:26,vim:[34,48,51],virtual:[6,33,61],visit:42,visualvm:60,vm:[5,6,16,26,33,43,61,63,68],vmoption:[1,14,26,69],vmtool:[1,14,21],w0t4p0:60,wait:[5,6,16,23,63],waitin:46,wall:44,wangji92:29,wangtao:[5,6,61],want:42,war:35,watch:[7,10,14,16,24,26,42,48,49,64,65],wc:[1,5,6,49],web:[5,6,35,66],webappclassload:6,webconsol:[28,30],websocket:[1,6,63],welcom:28,wget:17,when:42,which:42,whitespac:23,wiki:[1,17,23,26,28,46,49,60,61,62,66],wildcard:50,will:[26,57,64],window:[30,31],wireshark:60,word:34,work:[5,6,26,42],worker:[46,63],wrappingrunn:63,write:[6,26],writeabl:68,ws:[4,56,66],wsfilter:63,www:29,wy7c9w9j5732xbkcyt1mb4g40000gp:25,x86_64:[5,6,61],xbootclasspath:36,xml:35,xpc_flag:60,xpc_service_nam:60,xpost:28,xterm:60,xxx:[49,64],you:[42,57,64],young:[16,63],yourclassnam:35,yum:17,yuqu:29,ywjjcg:9,ywrtaw46ywrtaw4:8,yyi:64,yyyi:35,zh_cn:60,zhuyong:24,zhx:6,zip:[3,36],zipf:12,zulu:[1,41]},titles:["<no title>","\u8fdb\u9636\u4f7f\u7528","\u8868\u8fbe\u5f0f\u6838\u5fc3\u53d8\u91cf","\u4ee5Java Agent\u7684\u65b9\u5f0f\u542f\u52a8","Arthas Properties","Arthas3.0\u7684\u65b0\u7279\u6027","Arthas 3.0\u65b0\u7279\u6027\u4ecb\u7ecd","Arthas\u540e\u53f0\u5f02\u6b65\u4efb\u52a1","auth","base64","\u6279\u5904\u7406\u529f\u80fd","cat","classloader","cls","\u547d\u4ee4\u5217\u8868","\u8054\u7cfb\u6211\u4eec","dashboard","Docker","\u4e0b\u8f7d","dump","echo","FAQ","getstatic","grep","groovy","heapdump","help","history","Http API","IDEA Plugin","Arthas \u7528\u6237\u6587\u6863","Arthas Install","jad","jvm","Arthas \u547d\u4ee4\u884c\u5feb\u6377\u952e","logger","\u624b\u52a8\u5b89\u88c5Arthas","mbean","mc","memory","monitor","ognl","options","perfcounter","profiler","pwd","\u5feb\u901f\u5165\u95e8","quit","redefine","Release Notes","reset\u547d\u4ee4","retransform","\u6267\u884c\u7ed3\u679c\u5b58\u65e5\u5fd7","sc","session","sm","Arthas Spring Boot Starter","stack","\u542f\u52a8 Arthas","Stop","sysenv","sysprop","tee","thread","trace","tt","Arthas Tunnel","version","vmoption","vmtool","watch","Web Console"],titleterms:{"01":49,"03":49,"04":49,"05":49,"06":49,"07":49,"08":49,"09":49,"11":49,"12":49,"18":49,"22":49,"29":49,"class":[1,46,48,51],"null":21,action:[28,44],advic:24,agent:[1,3],alibaba:29,all:63,api:[8,28],append:35,artha:[1,4,6,7,14,17,18,21,29,30,31,34,36,44,46,52,56,58,66,71],arthas3:5,as:[1,18,31,36],attach:21,auth:8,author:8,base64:9,bat:36,bg:7,boot:[1,18,31,56],cat:11,classformaterror:21,classload:[1,12,32,35,69],classpath:28,cloud:[29,31],cls:13,command:28,consol:[1,8,71],content:30,cpu:63,dashboard:[16,46],deb:31,demo:[57,64,65,70],docker:[17,21],dump:[19,25],eagleey:6,echo:20,endpoint:56,enhanc:28,entri:51,event:44,exclud:44,execut:44,faq:21,fg:7,framebuf:44,game:46,gc:69,getstat:22,github:18,grep:23,groovi:[5,6,24],hash:69,header:8,heapdump:25,help:26,histori:27,hotspot:21,html:44,http:[8,28],id:63,idea:29,includ:44,input_statu:28,instal:31,issu:15,jad:[32,46,48,51],java:[1,3,17,21,28,32],jdk9:43,jdk:[17,21,42,64],jfr:44,job:7,json:21,jvm:[1,16,33],k8s:[17,21],lang:[21,32],level:35,linux:36,live:25,load:21,logger:35,mac:36,main:46,map:28,math:46,maven:18,mbean:37,mc:[38,48,51],memori:39,monitor:[1,40],name:69,nativ:21,not:21,note:49,ognl:[41,42],option:[1,42,68],or:21,output:[24,44],packag:42,perfcount:43,pid:21,plugin:29,process:21,profil:[1,44],properti:[1,4],pwd:45,qq:15,quit:47,redefin:48,releas:[18,49],reset:50,resourc:12,respond:21,retransform:[29,51],rpm:31,rt:[5,6],sampl:44,sc:53,scrollback:71,server:[66,71],session:54,sh:[1,18,31,36],skywalk:21,sm:55,spring:56,stack:[5,6,57],starter:56,state:63,statu:28,stop:59,strict:42,string:32,sudo:58,sysenv:60,sysprop:[5,6,61],systemproperti:[5,6],target:21,tee:62,telnet:8,thi:70,thread:[5,6,33,46,63],toolkit:[29,31],trace:[1,5,6,21,64],traceid:6,tt:65,tunnel:[66,71],ui:28,unicod:21,unix:36,unknown:44,unsaf:42,url:[8,12,71],urlclassload:12,v2015:49,v2016:49,v2017:49,v3:49,version:67,vm:21,vmoption:68,vmtool:69,watch:[1,5,6,21,28,46,70],web:[1,8,28,71],window:[36,58]}}) \ No newline at end of file diff --git a/session.html b/session.html index bb8bcff0e..dd42754cd 100644 --- a/session.html +++ b/session.html @@ -8,7 +8,7 @@ - session — Arthas 3.5.6 文档 + session — Arthas 3.6.0 文档 @@ -74,7 +74,7 @@
    - 3.5.6 + 3.6.0
    diff --git a/sm.html b/sm.html index 4e622917c..0d8718f40 100644 --- a/sm.html +++ b/sm.html @@ -8,7 +8,7 @@ - sm — Arthas 3.5.6 文档 + sm — Arthas 3.6.0 文档 @@ -74,7 +74,7 @@
    - 3.5.6 + 3.6.0
    diff --git a/spring-boot-starter.html b/spring-boot-starter.html index facd0c175..4983b1336 100644 --- a/spring-boot-starter.html +++ b/spring-boot-starter.html @@ -8,7 +8,7 @@ - Arthas Spring Boot Starter — Arthas 3.5.6 文档 + Arthas Spring Boot Starter — Arthas 3.6.0 文档 @@ -74,7 +74,7 @@
    - 3.5.6 + 3.6.0
    diff --git a/stack.html b/stack.html index 2f9f6cf6d..95eab49f2 100644 --- a/stack.html +++ b/stack.html @@ -8,7 +8,7 @@ - stack — Arthas 3.5.6 文档 + stack — Arthas 3.6.0 文档 @@ -74,7 +74,7 @@
    - 3.5.6 + 3.6.0
    diff --git a/start-arthas.html b/start-arthas.html index c41aed755..7a4a6abb9 100644 --- a/start-arthas.html +++ b/start-arthas.html @@ -8,7 +8,7 @@ - 启动 Arthas — Arthas 3.5.6 文档 + 启动 Arthas — Arthas 3.6.0 文档 @@ -72,7 +72,7 @@
    - 3.5.6 + 3.6.0
    diff --git a/stop.html b/stop.html index 9e61d82a0..4d4659d67 100644 --- a/stop.html +++ b/stop.html @@ -8,7 +8,7 @@ - Stop — Arthas 3.5.6 文档 + Stop — Arthas 3.6.0 文档 @@ -74,7 +74,7 @@
    - 3.5.6 + 3.6.0
    diff --git a/sysenv.html b/sysenv.html index 11e2fd711..7876b0df9 100644 --- a/sysenv.html +++ b/sysenv.html @@ -8,7 +8,7 @@ - sysenv — Arthas 3.5.6 文档 + sysenv — Arthas 3.6.0 文档 @@ -74,7 +74,7 @@
    - 3.5.6 + 3.6.0
    diff --git a/sysprop.html b/sysprop.html index cb53c79fc..05b9935c7 100644 --- a/sysprop.html +++ b/sysprop.html @@ -8,7 +8,7 @@ - sysprop — Arthas 3.5.6 文档 + sysprop — Arthas 3.6.0 文档 @@ -74,7 +74,7 @@
    - 3.5.6 + 3.6.0
    diff --git a/tee.html b/tee.html index 988951406..9b52b4e4a 100644 --- a/tee.html +++ b/tee.html @@ -8,7 +8,7 @@ - tee — Arthas 3.5.6 文档 + tee — Arthas 3.6.0 文档 @@ -74,7 +74,7 @@
    - 3.5.6 + 3.6.0
    diff --git a/thread.html b/thread.html index 6f00b4fdd..062160211 100644 --- a/thread.html +++ b/thread.html @@ -8,7 +8,7 @@ - thread — Arthas 3.5.6 文档 + thread — Arthas 3.6.0 文档 @@ -74,7 +74,7 @@
    - 3.5.6 + 3.6.0
    diff --git a/trace.html b/trace.html index 382880e4c..2171adfe9 100644 --- a/trace.html +++ b/trace.html @@ -8,7 +8,7 @@ - trace — Arthas 3.5.6 文档 + trace — Arthas 3.6.0 文档 @@ -74,7 +74,7 @@
    - 3.5.6 + 3.6.0
    diff --git a/tt.html b/tt.html index 4faad78ce..a1b23982c 100644 --- a/tt.html +++ b/tt.html @@ -8,7 +8,7 @@ - tt — Arthas 3.5.6 文档 + tt — Arthas 3.6.0 文档 @@ -74,7 +74,7 @@
    - 3.5.6 + 3.6.0
    diff --git a/tunnel.html b/tunnel.html index a5f7cbfec..2fabb4cb1 100644 --- a/tunnel.html +++ b/tunnel.html @@ -8,7 +8,7 @@ - Arthas Tunnel — Arthas 3.5.6 文档 + Arthas Tunnel — Arthas 3.6.0 文档 @@ -74,7 +74,7 @@
    - 3.5.6 + 3.6.0
    diff --git a/version.html b/version.html index 349325217..d5bd5c83c 100644 --- a/version.html +++ b/version.html @@ -8,7 +8,7 @@ - version — Arthas 3.5.6 文档 + version — Arthas 3.6.0 文档 @@ -74,7 +74,7 @@
    - 3.5.6 + 3.6.0
    diff --git a/vmoption.html b/vmoption.html index da3103a8a..ad99b2a98 100644 --- a/vmoption.html +++ b/vmoption.html @@ -8,7 +8,7 @@ - vmoption — Arthas 3.5.6 文档 + vmoption — Arthas 3.6.0 文档 @@ -74,7 +74,7 @@
    - 3.5.6 + 3.6.0
    diff --git a/vmtool.html b/vmtool.html index 95f7acf76..39b9e2e9d 100644 --- a/vmtool.html +++ b/vmtool.html @@ -8,7 +8,7 @@ - vmtool — Arthas 3.5.6 文档 + vmtool — Arthas 3.6.0 文档 @@ -74,7 +74,7 @@
    - 3.5.6 + 3.6.0
    diff --git a/watch.html b/watch.html index c2a17b191..4226c6857 100644 --- a/watch.html +++ b/watch.html @@ -8,7 +8,7 @@ - watch — Arthas 3.5.6 文档 + watch — Arthas 3.6.0 文档 @@ -74,7 +74,7 @@
    - 3.5.6 + 3.6.0
    diff --git a/web-console.html b/web-console.html index 6ad8e9dd2..b29bb6413 100644 --- a/web-console.html +++ b/web-console.html @@ -8,7 +8,7 @@ - Web Console — Arthas 3.5.6 文档 + Web Console — Arthas 3.6.0 文档 @@ -74,7 +74,7 @@
    - 3.5.6 + 3.6.0