> ## Documentation Index
> Fetch the complete documentation index at: https://docs.gominerva.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Dashboards Guide

> How to use Dashboards

export const StorybookFrame = ({storyId, title, version = "20260419-1", height, zoom = 0.7, preferLocalPreview = false}) => {
  const HOSTED_STORYBOOK_BASE_URL = "https://minerva-storybook.s3.ca-central-1.amazonaws.com/iframe.html";
  const isLocalDocsPreview = typeof window !== "undefined" && ["localhost", "127.0.0.1"].includes(window.location.hostname);
  const storybookBaseUrl = preferLocalPreview && isLocalDocsPreview ? "http://localhost:6006/iframe.html" : HOSTED_STORYBOOK_BASE_URL;
  const params = new URLSearchParams({
    id: storyId,
    viewMode: "story",
    singleStory: "true",
    shortcuts: "false",
    toolbar: "0",
    nav: "0",
    panel: "0"
  });
  params.set("v", version);
  const src = `${storybookBaseUrl}?${params.toString()}`;
  const unscaledHeight = `${Math.ceil(height / zoom)}px`;
  const unscaledWidth = `${100 / zoom}%`;
  return <div style={{
    width: "100%"
  }}>
      <div style={{
    height: `${height}px`,
    overflow: "hidden",
    border: "1px solid #e2e8f0",
    borderRadius: "12px",
    backgroundColor: "#ffffff",
    display: "flex",
    justifyContent: "center",
    alignItems: "flex-start"
  }}>
        <iframe src={src} title={title} loading="lazy" style={{
    width: unscaledWidth,
    height: unscaledHeight,
    transform: `scale(${zoom})`,
    border: "0",
    display: "block",
    transformOrigin: "top center",
    flexShrink: 0
  }} allowFullScreen></iframe>
      </div>
    </div>;
};

The Dashboards section provides a high-level view of screening workload and profile monitoring trends.

## When to Use This Guide

Use this guide when you need to:

* review screening priorities at a glance
* jump directly into filtered profile queues that need attention
* monitor profile and workflow trends over time
* see how many profiles are monitored, unmonitored, or awaiting review

## Before You Begin

* Confirm you have access to the **Dashboards** section
* Make sure your organization already has screening or risk assessment activity in Minerva

## Main Areas

### Overview

The **Overview** page is designed to help you quickly understand what needs attention now.

Use it to review:

* **Profiles with risk**, broken down into:
  * Sanctions
  * Politically Exposed Persons (PEPs)
  * Adverse media
* **Priority status**, broken down into:
  * Potential matches
  * In review
  * Escalation
* **Recent risk assessments**

The risk and priority rows are clickable and take you directly into filtered **Screening** profile views.

The recent risk assessments table takes you into **Risk Assessments** history for the selected item.

<StorybookFrame storyId="pages-dashboards-overview--default" title="Dashboards Overview" height={490} />

### Screening Analytics

The **Screening analytics** page is currently focused on **Profiles** analytics.

Use it to review:

* **Current snapshot** metrics, including:
  * total profiles in system
  * monitored profiles
  * unmonitored profiles
  * potential matches
  * not screened
  * in review
  * escalated
  * accepted
  * rejected
  * no flags
* **Profiles over selected period**
* **Profile status breakdown over time**
* **Total vs monitored profiles over time**

The analytics page also shows the last refresh time for the data currently displayed.

<StorybookFrame storyId="pages-dashboards-screening-analytics--default" title="Dashboards Screening Analytics" height={550} />

## How to Work With Dashboards

Start with **Overview** when you want to identify immediate operational priorities and move quickly into the correct screening queue.

Use **Screening analytics** when you want to understand profile growth, monitoring coverage, and workflow trends over time.

## Expected Result

At the end of this workflow, you should have:

* a current view of profiles and statuses that need attention
* a clearer understanding of monitoring and workflow trends
* enough context to move into detailed Screening or Risk Assessment workflows

## Related Guides

* [Minerva App](/minerva-app)
* [Screening Guide](/screening-guide)
* [Risk Assessment Flow](/risk-assessment-flow)
