Merge pull request #114 from alfredzouang/master

translate options
pull/126/head
横云断岭 6 years ago committed by GitHub
commit b61da4568f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -0,0 +1,26 @@
options
===
> Global options
| Name | Default Value | Description |
| ------------------ | ----- | ---------------------------------------- |
| unsafe | false | Enable support for system-level class enhancement; JVM might crash, if you turn on this switch (please use with great caution!) |
| dump | false | Enable support for dumping enhanced class to external fileif turned onclass file will be dumped to`/${application dir}/arthas-class-dump/`please see console for specific location |
| batch-re-transform | true | re-transform matched classes in batch |
| json-format | false | Enable output in JSON format |
| disable-sub-class | false | Disabling child class matchingby default child class will be matched during matching target classif you wish exact matchingyou can turn this off |
| debug-for-asm | false | Print ASM related debug message |
| save-result | false | Enable saving logs for task resultswhen turn to true, all command results will be saved to `/home/admin/logs/arthas/arthas.log` |
| job-timeout | 1d | Default time-out time for back-stage tasksif exceed this timetask will be stoppedi.e. 1d, 2h, 3m, 25srepresenting day、hour、minute、second |
### Usage
For exampleif you wish to save logs for command results, you can use following command:
```
$ options save-result true
NAME BEFORE-VALUE AFTER-VALUE
----------------------------------------
save-result false true
```
Loading…
Cancel
Save