Workflow stacktrace

The worflow stacktrace is used for managing errors inside the platform.

Designer

  1. Last error - The last error occured.

STACK TRACE tab

  1. Workflow - In what workflow the error occured.
  2. Method - On what method the error occured.
  3. Line number - On what line the error occured.

The following diagram describes the entity used by this designer:

erDiagram
    wfi {
        string last_error
        integer id_wf FK
    }
    wfi_stack_trace {
        string workflow
        string method
        integer line_number
        integer id_wfi FK
        integer id_wf FK
    }
    wfi one--many wf : wfi_wf
    wfi_stack_trace one--many wfi : wfi_stack_trace_wfi
    wfi_stack_trace one--many wf : wfi_stack_trace_wf