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

# Goals Analytics

> Track goal progress across your organization — completion rates, trends, and team insights.

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"]} />

## Overview

**Goals Analytics** provides organization-wide insights into goal creation, progress, and completion. Access it at **My Development → Goals Analytics**.

***

## What you can track

| Metric              | What it shows                                     |
| ------------------- | ------------------------------------------------- |
| **Total goals**     | Number of goals created across the organization   |
| **Completion rate** | Percentage of goals marked as completed           |
| **Active goals**    | Goals currently in progress                       |
| **By department**   | Goal distribution across departments              |
| **By status**       | Breakdown of draft, launched, completed, archived |

***

## Filters

Filter analytics by:

* Date range
* Department
* User
* Goal status (committed, completed, archived)

***

## Export

Export goal data as CSV for external analysis.

<RelatedPages
  pages={[
{ href: "/development/goals", title: "Goals" },
{ href: "/development/my-development", title: "My Development" },
{ href: "/admin/analytics-and-reports", title: "Analytics & Reports" },
]}
/>
