bw_list_process_chain_runs
List execution runs of process chains with status, timestamps, and duration. Filter by chain name, date range, or status to monitor chain performance.
Instructions
List execution runs of one or all process chains from the process chain monitoring log. Each row represents one chain run with overall status, runtime deviation, start/end timestamps, and duration. Optionally filter by chain technical name, start date range, and status code. Returns the log_id of each run — pass chain_id + log_id into bw_get_process_chain_run_detail for step-level details. Ordered by start time descending. Default limit 20 runs.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Maximum number of runs to return (default 20). | |
| status | No | Optional status code filter (e.g. as returned by the status field of previous runs). Resolves to eq filter on the status field. | |
| date_to | No | Optional upper bound for run start date (ISO format). Maps to startDate le datetime filter. | |
| date_from | No | Optional lower bound for run start date (ISO format, e.g. "YYYY-MM-DD" or "YYYY-MM-DDTHH:MM:SS"). Maps to startDate ge datetime filter. | |
| chain_name | No | Optional process chain technical name to restrict to runs of a single chain (e.g. "CHAIN_NAME"). Omit for system-wide results. |