Search

Fast thread

Universal Java Thread Dump Analyzer

Tag

performance problems

Flame Graph from Java thread dump

Thread dumps are essential for diagnosing performance issues in applications, often spanning hundreds of lines. Condensing this data into a flame graph simplifies analysis. The article outlines generating flame graphs from Java or JVM languages by capturing thread dumps using jstack and analyzing them with the fastThread tool. Flame graphs enhance code visualization.

MICROMETRICS FOR CI/CD PIPELINE

Continuous Integration/Continuous Deployment (CI/CD) is vital for software quality, yet issues like OutOfMemoryError can arise despite testing. To mitigate these, micrometrics such as Garbage Collection Throughput, Thread Count, and Wasted Memory should be monitored as indicators of performance problems. Proper integration of these metrics enhances reliability in production.

Up ↑