replay
Replay recorded rr traces to debug Go programs using Delve MCP. Input the trace path and optionally specify a process ID to analyze specific execution sequences.
Instructions
Replay an rr trace
Input Schema
Name | Required | Description | Default |
---|---|---|---|
onProcess | No | Optional PID to pass to rr | |
tracePath | Yes | Path to the rr trace directory |
Input Schema (JSON Schema)
{
"properties": {
"onProcess": {
"description": "Optional PID to pass to rr",
"type": "number"
},
"tracePath": {
"description": "Path to the rr trace directory",
"type": "string"
}
},
"required": [
"tracePath"
],
"type": "object"
}