You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
JCT is a Java agent that instruments method calls at runtime and records executed call stacks.
4
-
It helps answer one practical question in large systems: "Is this code path still used in real traffic?"
3
+
JCT is a Java agent that records real method call stacks while your application is running.
4
+
5
+
If you work in a legacy app and ask things like "Can we remove this?" or "Is this code path still hit in production-like traffic?", JCT gives you hard runtime evidence instead of guesses.
5
6
6
7
## Table of Contents
7
8
8
-
-[What JCT Does](#what-jct-does)
9
+
-[Why This Is Useful in Legacy Systems](#why-this-is-useful-in-legacy-systems)
10
+
-[What JCT Does at Runtime](#what-jct-does-at-runtime)
11
+
-[Quick Start in 3 Steps](#quick-start-in-3-steps)
9
12
-[Recommended Local Workflow: ELK](#recommended-local-workflow-elk)
10
13
-[Project Status](#project-status)
11
14
-[Java Version](#java-version)
@@ -19,33 +22,68 @@ It helps answer one practical question in large systems: "Is this code path stil
0 commit comments