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

# Analytics & Reports

> Admin Tab 2 — dashboards, widget builder, skills analytics, and custom reports.

export const RelatedPages = ({pages = []}) => {
  if (pages.length === 0) return null;
  return <>
      <br />
      <strong>Related articles</strong>
      <CardGroup cols={2}>
        {pages.map(page => <Card title={page.title} href={page.href} key={page.href} />)}
      </CardGroup>
    </>;
};

export const RoleBadge = ({roles = []}) => {
  const colorMap = {
    Admin: "yellow",
    Manager: "blue",
    Learner: "green",
    "Co-editor": "purple"
  };
  return <>
      {roles.map(role => <span key={role}><Badge color={colorMap[role] || "gray"} size="sm" shape="pill">{role}</Badge>{" "}</span>)}
    </>;
};

<RoleBadge roles={["Admin", "Manager"]} />

## Overview

**Admin → Analytics** (`/admin/2`) provides organization-wide insights into learning activity, engagement, and performance. Managers also have access to this tab for their team scope.

<img src="https://mintcdn.com/juno-76d1c392/-AQSIshOsZKDG7IK/images/admin/tab2-analytics.png?fit=max&auto=format&n=-AQSIshOsZKDG7IK&q=85&s=af711639d7021a8144f71c79e03008a3" alt="Analytics — Active Users dashboard" width="1280" height="800" data-path="images/admin/tab2-analytics.png" />

***

## Sub-tabs

### Analytics

The main analytics dashboard with organization-wide metrics:

| Category     | What you can track                                              |
| ------------ | --------------------------------------------------------------- |
| **Content**  | Enrollment trends, completion rates, time spent, top courses    |
| **Users**    | Active users, engagement levels, retention                      |
| **Journeys** | Completion rates, time to completion, performance by department |
| **Budget**   | Utilization trends, spend by category                           |
| **Events**   | Attendance rates, event popularity                              |

Filter by date range, department, content type, and user segments. Export any view to **CSV**.

### Widget Builder

Build custom analytics widgets and assemble them into dashboards. Each widget visualizes one analytics event with chosen breakdowns and filters.

<Note>
  Widget Builder requires the `CAN_SEE_ANALYTICS_WIDGETS_BUILDER` feature flag to be enabled.
</Note>

**Building a widget:**

| Parameter      | What it does                                                                |
| -------------- | --------------------------------------------------------------------------- |
| **Event**      | The analytics event to measure (course enrollment, completion, login, etc.) |
| **Value type** | Count, unique users, average, sum                                           |
| **Chart type** | Bar, pie, line, table                                                       |
| **Breakdown**  | Group by department, role, content, time period, etc.                       |
| **Filters**    | Narrow the data (e.g. `department = Engineering`, date range)               |

**Widget actions:**

* **Edit** — adjust parameters
* **Export** — download chart data as CSV
* **Add to overview** — pin to the main Analytics dashboard

### Skills analytics

Track skill development and competency growth across your organization.

<Note>
  Skills analytics requires the `CAN_SEE_SKILLS_ANALYTICS` feature flag to be enabled.
</Note>

### My reports

Create, download, and schedule custom analytics reports. See **[Analytics Reports](/admin/analytics-reports)** for full details on report creation, scheduling, and delivery management.

***

## Per-training analytics

Every course, quiz, SCORM package, Journey, and survey has a dedicated analytics view with learner tables, status breakdowns, and bulk actions. See **[Training Analytics](/admin/training-analytics)** and **[Training Analytics Actions](/admin/training-analytics-actions)**.

***

## Learning activities

The Learning activities table at **Admin → Content → Learning management** shows every learner's interaction with every training unit in one filterable, exportable table. See **[Content & Learning management — Learning management](/admin/content-management#learning-management)**.

Managers see a direct-reports-scoped version of this table at **Managers → Content → Learning Activities** — see **[Learning Activities (Managers)](/managers/learning-activities)**.

***

## Manager vs. Admin view

Managers see the same Analytics tab at `/managers/2` but scoped to their team. Admins see organization-wide data.

<RelatedPages
  pages={[
{ href: "/admin/admin-overview", title: "Admin Overview" },
{ href: "/admin/training-analytics", title: "Training Analytics" },
{ href: "/admin/training-analytics-actions", title: "Training Analytics Actions" },
{ href: "/admin/content-management", title: "Content & Learning Management" },
{ href: "/admin/analytics-reports", title: "Analytics Reports" },
{ href: "/development/goals-analytics", title: "Goals Analytics" },
{ href: "/managers/team-analytics", title: "Manager Analytics" },
]}
/>
