Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.encoreos.io/llms.txt

Use this file to discover all available pages before exploring further.

The Workflow Analytics page at /fw/workflows/:workflowId/analytics displays performance metrics and trend data for the automation rule identified by :workflowId.

Overview

The Workflow Analytics page reads the workflowId 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 :workflowId must exist and have execution history for meaningful analytics.

Steps

  1. Navigate to /fw/workflows/:workflowId/analytics or access it from the workflow detail view.
  2. Review the PerformanceDashboard for execution metrics and trends.
  3. 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’s id in useAutomationRules.
  • 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.

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.
  • src/routes/fw.tsx
  • src/cores/fw/pages/WorkflowPerformanceAnalytics.tsx
  • src/cores/fw/components/analytics/PerformanceDashboard.tsx