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.

This page displays the detail view for a saved IT report definition and its run history. Navigate to it at /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 using useReportRunMutations. 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 by IT_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

  1. Navigate to IT > Reports and click a report name, or navigate directly to /it/reports/:id.
  2. Review the Overview tab: column selection, schedule settings, and creation metadata.
  3. Click Run Now to trigger an immediate report run.
  4. Switch to the Run History tab to see the status of all previous runs.
  5. Click the download icon on a completed run to retrieve the output file.
  6. 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).
  • ReportRunStatuspending | 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.

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.
  • 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