This page displays the detail view for a saved IT report definition and its run history. Navigate to it 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.
/it/reports/:id.
Overview
The Report Details page has two tabs: Overview (description, selected columns, schedule configuration, metadata) and Run History (table of previous runs with status, type, started time, row count, and download link for completed runs). The Run Now button triggers an on-demand run usinguseReportRunMutations. The Edit button navigates to /it/reports/:id/edit. Deleting a report navigates back to /it/reports.
Who it’s for
This route is protected byIT_PERMISSIONS.VIEW (it.view) via the module-level ITViewGuard. No additional per-route permission gate exists beyond the module guard.
Before you start
- The report definition must already exist. Use the New Report page to create one.
Steps
- Navigate to IT > Reports and click a report name, or navigate directly to
/it/reports/:id. - Review the Overview tab: column selection, schedule settings, and creation metadata.
- Click Run Now to trigger an immediate report run.
- Switch to the Run History tab to see the status of all previous runs.
- Click the download icon on a completed run to retrieve the output file.
- Click Edit to modify the report definition.
Key concepts
- ReportType — the data source/domain for the report (
asset_inventory,ticket_summary,license_compliance,security_posture,vendor_summary,change_summary). - ReportRunStatus —
pending | running | completed | failed. - run_type — whether the run was manual or scheduled.
- row_count — the number of data rows in a completed run result.
- file_url — the download URL for a completed run’s output file.
Related
IT Service Management
IT Service Management 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/it.tsx
- src/cores/it/pages/reports/ReportDetailPage.tsx
- src/cores/it/hooks/useReportDefinitions.ts
- src/cores/it/hooks/useReportRuns.ts
- src/cores/it/types/dashboard.ts