What is task throughput, and how do you measure it in Metabase?
Task throughput is the count of work items completed per period. It is a simple flow metric for work-management dashboards across Notion, Asana, ClickUp, Trello, monday.com, Linear, and Jira.
Definition
Task throughput = completed work items in a period.
Data needed
completed_ator done status date- Project/team/work type fields for segmentation
- Archived/canceled flags for exclusions
SQL pattern
SELECT
date_trunc('week', completed_at) AS week,
project_name,
COUNT(*) AS completed_items
FROM work_items
WHERE completed_at IS NOT NULL
AND archived_at IS NULL
AND canceled_at IS NULL
GROUP BY 1, 2
ORDER BY 1, 2;