The Workflow KPI Dashboard atDocumentation Index
Fetch the complete documentation index at: https://docs.encoreos.io/llms.txt
Use this file to discover all available pages before exploring further.
/fw/kpi displays configured KPI metric cards for the active organization, with date range filtering, drill-down navigation, metric configuration, and scheduled report delivery.
Overview
The KPI Dashboard fetches configured metric cards viauseKpiDashboard, scoped to the active organization. The default date range is the last 30 days with weekly period type. Users with fw.kpi.manage can add metrics via KpiConfigDialog and schedule reports via KpiScheduleDialog. Clicking a metric card navigates to a drill-down route defined in DRILL_DOWN_ROUTES (e.g., approvals, automations, analytics).
Who it’s for
Requiresfw.kpi.view permission, enforced by RequirePermission in src/routes/fw.tsx.
The “Add Metric” and “Schedule Report” actions are additionally gated by fw.kpi.manage via PermissionGate.
Before you start
- You must have
fw.kpi.viewto access this page. - For metric configuration and scheduled reports you additionally need
fw.kpi.manage. - An organization must be active for metrics to be scoped correctly.
Steps
Viewing metrics:- Navigate to
/fw/kpi. - Review the KPI cards in the grid. Each card shows the metric value and trend.
- Use the
KpiDateRangeToolbarto adjust the period type and date range. - Click a metric card to navigate to its drill-down route (e.g.,
/fw/approvalsfor approval metrics).
fw.kpi.manage):
- Select “Add Metric” in the page header.
- Configure the metric type and settings in
KpiConfigDialog. - Save. The new card appears in the grid.
fw.kpi.manage):
- Select “Schedule Report.”
- Configure the schedule in
KpiScheduleDialog. - Save.
Key concepts
- Metric type — One of:
approval_rate,approval_cycle_time,sla_compliance,form_completion_rate,automation_throughput,automation_success_rate,time_saved_estimate. - Period type — Controls time bucket aggregation (e.g.,
weekly). - Drill-down route — Each metric type maps to a related page for detailed analysis (defined in
DRILL_DOWN_ROUTES). - KPI card — A configured metric instance;
configIdlinks the card to itsKpiConfigDialogconfiguration.
Related
Forms & Workflow
Forms & Workflow core overview.
Governance & parity
This page documents shipped product behavior. It is not medical, legal, or
billing advice. Verify against your organization’s policies and applicable
regulations before using it for clinical, compliance, or billing decisions.
Protected health information (PHI) shown in the product is governed by your
tenant’s access controls and is never exposed in this documentation.
Documentation sources
Documentation sources
- src/routes/fw.tsx
- src/cores/fw/pages/KpiDashboardPage.tsx
- src/cores/fw/hooks/useKpiDashboard.ts
- src/cores/fw/components/kpi/KpiCardGrid.tsx
- src/cores/fw/components/kpi/KpiConfigDialog.tsx
- src/cores/fw/types/kpi.ts