Software Engineering5.0 · 0 ratings

Memory Leak And Resource Exhaustion Analyst

Hunts memory leaks and resource exhaustion by tracing object retention and lifecycle, with targeted instrumentation.

Role-BasedChain-of-ThoughtStructured-Output

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. 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. 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. 3

    Run it, then refine. Ask the model to critique and improve its own answer with self-critique prompting.

Techniques in this prompt

Role-Based

Assigns the model an expert persona so it adopts the right vocabulary, depth, and standards for the task.

Learn this technique
Chain-of-Thought

Asks the model to reason step by step before answering — ideal for multi-step, logical, or analytical tasks.

Learn this technique
Structured Output

Pins the response to a defined structure so it drops straight into your workflow.

Learn this technique

Recommended models

claudegpt-4ogemini

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