The Workflow Analytics page 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/workflows/:workflowId/analytics displays performance metrics and trend data for the automation rule identified by :workflowId.
Overview
The Workflow Analytics page reads theworkflowId route parameter and renders the PerformanceDashboard component inside a Suspense boundary (fallback: PerformanceDashboardSkeleton). The page heading reads “Performance Analytics” with the description “View execution metrics, trends, and identify bottlenecks.” If workflowId is absent the page shows an error message.
There is no explicit RequirePermission guard on this route in src/routes/fw.tsx.
Who it’s for
No explicit permission gate on this route. All authenticated users with access to the FW module can view this page.Before you start
- The workflow (automation rule) identified by
:workflowIdmust exist and have execution history for meaningful analytics.
Steps
- Navigate to
/fw/workflows/:workflowId/analyticsor access it from the workflow detail view. - Review the
PerformanceDashboardfor execution metrics and trends. - Use any available date range or filter controls within the dashboard.
Key concepts
workflowId— The route parameter identifying the automation rule. Corresponds to the rule’sidinuseAutomationRules.- PerformanceDashboard — The analytics component; SME should confirm metric definitions and available time range filters.
- Bottleneck analysis — SME: confirm whether step-level bottleneck identification is available.
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/WorkflowPerformanceAnalytics.tsx
- src/cores/fw/components/analytics/PerformanceDashboard.tsx