Tagged articles
3 articles
Page 1 of 1
Su San Talks Tech
Su San Talks Tech
Oct 9, 2024 · Operations

How to Instantly Diagnose Java Production Issues with Arthas

This article introduces Arthas, an open‑source Java diagnostic tool, and demonstrates how to install it, use its command‑line and web console, and apply common commands such as dashboard, thread, watch, trace, and tt to quickly locate CPU spikes, deadlocks, memory leaks, and other production problems without redeploying code.

ArthasJVM diagnosticsJava debugging
0 likes · 20 min read
How to Instantly Diagnose Java Production Issues with Arthas
Programmer DD
Programmer DD
Mar 10, 2022 · Operations

Master JDK Built‑in Tools to Diagnose Java Application Issues

This guide walks through using JDK's native command‑line and GUI utilities—such as jps, jinfo, jvisualvm, jstat, jstack, and jcmd—to monitor JVM performance, inspect GC behavior, analyze thread dumps, and troubleshoot memory configuration problems in Java programs.

JDK toolsJVM diagnosticsJVisualVM
0 likes · 16 min read
Master JDK Built‑in Tools to Diagnose Java Application Issues
Programmer DD
Programmer DD
Jul 24, 2020 · Operations

Mastering jcmd: Essential Java Debugging Commands and Examples

jcmd, introduced in JDK 7, is a powerful built‑in Java diagnostic tool that lets you send commands to running JVMs, replace utilities like jstack and jmap, and perform tasks such as listing processes, printing thread stacks, retrieving heap information, and using Java Flight Recorder.

DebuggingHeap DumpJFR
0 likes · 6 min read
Mastering jcmd: Essential Java Debugging Commands and Examples