Flow Studio
Error Display
When an execution fails, the Execution Status tab shows an error panel below the metadata section. It displays the top-level error message, error type, the ID of the node that failed, and an expandable stack trace.
Error Panel — Visual Example
Execution Failed
HttpRequestException
Show stack trace
System.Net.Http.HttpRequestException: Request timeout after 30000ms
at BizFirst.ExecutionNodes.HttpRequest.HttpRequestExecutor.ExecuteInternalAsync()
at BizFirst.ProcessEngine.BaseNodeExecutor.ExecuteAsync()
at BizFirst.ProcessEngine.WorkflowRunner.RunNodeAsync()
at BizFirst.ExecutionNodes.HttpRequest.HttpRequestExecutor.ExecuteInternalAsync()
at BizFirst.ProcessEngine.BaseNodeExecutor.ExecuteAsync()
at BizFirst.ProcessEngine.WorkflowRunner.RunNodeAsync()
Error Data Sources
The error panel is populated from two events:
NodeExecutionFailed— provideserrorMessage,errorType, andnodeIdof the failing nodeWorkflowExecutionCompleted(status=failed) — provides the top-levelfailedNodeIdand confirms the execution is terminal
Stack Trace Sanitization
Before displaying the stack trace, the same sanitize() function used by the Logs tab runs on the stack trace string. This prevents internal connection strings, API keys embedded in exception messages, or file system paths from being exposed in the UI:
// sanitize() strips:
// - credit card patterns (16-digit sequences)
// - JWT tokens (three base64url segments separated by dots)
// - known password field names and their values
// - Windows and Linux filesystem paths that contain user home directories
// - HTML tags
Navigate to Failed Node
A "View in Node List" link appears below the error message. Clicking it switches to the Node List tab filtered to show failed nodes only, with the failing node highlighted at the top.
Errors are Visible Without Opening the Inspector
The Execution Status tab intentionally shows the top-level error because it is the first tab the user sees. This allows operators to diagnose common failures (timeouts, authentication errors) without needing to navigate into the Node Inspector.