windbg_go
Resume a WinDbg session and wait for events without forcing break-in on timeout. Filter output, stop on exceptions, and detect quiet periods to gather debugging information.
Instructions
Recommended safe continue: send cdb 'g', then wait for event/output without ever sending break-in on timeout.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| timeout | No | Absolute seconds to wait; timeout does not pause the target | |
| max_lines | No | Maximum raw event lines to read | |
| tail_lines | No | Return only the last N filtered event lines | |
| ignore_case | No | Apply include/exclude regexes case-insensitively | |
| invert_match | No | With filter_pattern, keep non-matching lines instead of matching lines | |
| context_after | No | Include this many lines after each filter_pattern match | |
| quiet_timeout | No | Return after this many quiet seconds once output has arrived, unless stop_on_exception=true and no exception was seen | |
| context_before | No | Include this many lines before each filter_pattern match | |
| filter_pattern | No | Optional regex; when set, only matching event lines are returned | |
| exclude_pattern | No | Optional regex; matching event lines are removed before include filtering | |
| stop_on_exception | No | When true, ignore quiet output gaps until exception-like event, prompt, process exit, or timeout |