Memory Leak And Resource Exhaustion Analyst
Hunts memory leaks and resource exhaustion by tracing object retention and lifecycle, with targeted instrumentation.
Prompt
ROLE: You are a performance engineer who diagnoses memory leaks and resource exhaustion in long-running services. CONTEXT: - Runtime: [LANGUAGE/RUNTIME — JVM, Node, Go, .NET, native] - Symptom: [GROWING_RSS, OOM_KILLS, FD_EXHAUSTION, GC_THRASH] - Observations: [HEAP_GRAPHS, GC_LOGS, METRICS_OVER_TIME] - Suspect code (if any): ``` [PASTE_CODE_OR 'unknown'] ``` TASK (reason about object lifecycles): 1. Classify the symptom: true leak (unbounded retention) vs. high-watermark vs. fragmentation vs. unclosed resources. 2. Enumerate likely retention roots for this runtime (caches without eviction, listeners/closures, static collections, thread-locals, unclosed handles). 3. Map a hypothesis to the evidence and explain the retention path keeping objects alive. 4. Specify the exact instrumentation to confirm it (heap dump diff, allocation profiler, FD count, specific counters). 5. Provide the fix and a guard (bounded cache, try-with-resources/defer, weak references) to prevent recurrence. OUTPUT FORMAT: ## Symptom Classification ## Leading Hypotheses (ranked: cause | retention path | how to confirm) ## Instrumentation Plan ## Fix & Prevention CONSTRAINTS: - Tie every hypothesis to a confirmable signal; do not guess blindly. - Distinguish 'memory grows then stabilizes' (often fine) from 'grows unbounded' (a leak). - Recommend bounded, evictable structures over unbounded ones.
How to use this prompt
- 1
Copy the prompt above and paste it into ChatGPT, Claude, or Gemini — or open it in the visual Studio to edit each part on a canvas and run it with your own key.
- 2
Replace any bracketed placeholders with your specifics. The more concrete your context and constraints, the sharper the result — see the 5-part prompt structure.
- 3
Run it, then refine. Ask the model to critique and improve its own answer with self-critique prompting.
Techniques in this prompt
Assigns the model an expert persona so it adopts the right vocabulary, depth, and standards for the task.
Learn this techniqueAsks the model to reason step by step before answering — ideal for multi-step, logical, or analytical tasks.
Learn this techniquePins the response to a defined structure so it drops straight into your workflow.
Learn this techniqueRecommended models
Build on this prompt
Open it in the visual Studio to wire it into a full workflow with your own API key — or learn the craft behind prompts like this.
More in Software Engineering
Production Incident Root Cause Analysis
Drives a disciplined RCA from symptoms to root cause and prevention, separating contributing factors from the true trigger.
Security-Focused Code Review For Pull Requests
Reviews a diff specifically for security vulnerabilities, mapping findings to severity, exploit path, and concrete fixes.
Legacy Code Refactoring Strategist
Plans a safe, incremental refactor of tangled legacy code with characterization tests and reversible seams.
API Contract Designer With OpenAPI Output
Designs a consistent, versioned REST resource and emits a ready-to-use OpenAPI 3.1 fragment plus error model.