arthas-trace
Verified for current stable LTS
Arthas Trace Command: Trace Method Invoke Chain
An engineer would use the 'trace' command in Arthas to monitor and analyze the invocation chain of a specific method in a class while troubleshooting performance issues in a production Java application. Exact CLI syntax to trace method invoke chain using Arthas Trace.
When to use this: An engineer would use the 'trace' command in Arthas to monitor and analyze the invocation chain of a specific method in a class while troubleshooting performance issues in a production Java application.
Command Syntax
trace <class-pattern> <method-pattern> trace <class-pattern> <method-pattern> Command Breakdown
trace is the base executable for this command.
FAQ
Purpose: Exact syntax to trace method invoke chain using Arthas Trace.
Test path: Replace placeholders and run destructive commands in a disposable workspace first.
Flag behavior: Tool version, platform, and shell can change behavior.
Improve This Command
Suggest a correction, safer default, or version-specific note for this entry.
Related Operations
Arthas Trace Command: Track Method Invoke Chain Exceeding Cost And Limit
trace <class-pattern> <method-pattern> '#cost > <10>' -n 5 Arthas Trace Command: Trace Method Invoke Chain With Cost trace <class-pattern> <method-pattern> '#cost > <10>' Arthas Trace Command: Trace Multiple Classes Or Methods trace -E <class-pattern1>|<class-pattern2> <method-pattern1>|<method-pattern2>|<method-pattern3> Arthas Trace Command: Trace Method Invoke Longer Than 10ms trace <class-pattern> <method-pattern> '#cost > <10>' Arthas Trace Command: Trace Invoke Chain Above 10ms With Limit trace <class-pattern> <method-pattern> '#cost > <10>' -n 5