windbg_read_output
Retrieve pending WinDbg/cdb output without blocking or sending break-in, enabling non-disruptive log inspection.
Instructions
Drain currently buffered cdb output without blocking and without sending break-in.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| lines | No | Maximum raw buffered lines to read | |
| tail_lines | No | Return only the last N filtered 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 | |
| context_before | No | Include this many lines before each filter_pattern match | |
| filter_pattern | No | Optional regex; when set, only matching lines are returned | |
| exclude_pattern | No | Optional regex; matching lines are removed before include filtering |