Fix typos, some grammatical issues, using more formal terms/usages

pull/539/head
LHearen 6 years ago committed by Huxing Zhang
parent 8852b0115a
commit 7d06083ed0

@ -9,27 +9,26 @@ Arthas is a Java diagnostic tool open-sourced by Alibaba middleware team. It is
### Background
Oftentimes the production system network is inaccessible from local development environment. If issues are encountered in production systems, it is impossible to use IDE to debug the application remotely. Moreover, debugging in production environment is unacceptable, as it will suspend all the threads, which leads to block business services.
Oftentimes the production system network is inaccessible from local development environment. If issues are encountered in production systems, it is impossible to use IDE to debug the application remotely. What's even worse, debugging in production environment is unacceptable, as it will suspend all the threads, leading to services downtime.
Developers could always try to reproduce the same issue on the test/staging environment. However, this is tricky as some issues cannot be reproduced easily in a different environment, or even disappear once restarted.
And if you're thinking of adding some logs to your code to help troubleshoot the issue, you will have to go through the following lifecycle: test, staging, and then to production. Time is money! This approach is inefficient. Besides, the issue may not be reproducible once the JVM is restarted, as described above.
And if you're thinking of adding some logs to your code to help trouble-shoot the issue, you will have to go through the following lifecycle: test, staging, and then to production. Time is money! This approach is inefficient! Worse still, the issue may not be fixed since it might be irreproducible once the JVM is restarted, as described above.
Arthas is built to solve these issues. A developer can troubleshoot production issues on the fly. No JVM restart, no additional code changes. Arthas works as an observer, that is, it will never suspend your running threads.
### Key features
* Check whether a class is loaded? Or where the class is loaded from? Useful for troubleshooting jar conflicts.
* Decompile a class to ensure the running code is expected.
* View classloader statistics, e.g. the number of classloaders, the number of classes loaded per classloader, the classloader hierarchy, possible classloader leaks, etc.
* View the method invocation details, e.g. method parameter, return object, thrown exception, and etc.
* Check the stack trace of specified method invocation. This is useful when a developers wants to know the caller of the target method.
* Trace the method invocation to find slow path.
* Monitor method invocation statistics, e.g. QPS, RT, success rate, and etc.
* Monitor system metrics, thread states and CPU usage, GC statistics, and etc.
* Support command line interactive mode, with auto-completion feature enabled.
* Support telnet and WebSocket, to enable both local and remote diagnostics with command line and browsers.
* Check whether a class is loaded? Or where the class is loaded from? (Useful for trouble-shooting jar file conflicts)
* Decompile a class to ensure the code is running as expected.
* Check classloader statistics, e.g. the number of classloaders, the number of classes loaded per classloader, the classloader hierarchy, possible classloader leaks, etc.
* Check the method invocation details, e.g. method parameter, returned values, exceptions and etc.
* Check the stack trace of specified method invocation. This is useful when a developer wants to know the caller of the method.
* Trace the method invocation to find slow sub-invocations.
* Monitor method invocation statistics, e.g. QPS (Query Per Second), RT (Return Time), success rate and etc.
* Monitor system metrics, thread states and CPU usage, GC statistics and etc.
* Supports command line interactive mode, with auto-complete feature enabled.
* Supports telnet and WebSocket, which enables both local and remote diagnostics with command line and browsers.
Contents
--------

Loading…
Cancel
Save