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

# Insights

> Track code review activity, CI failure patterns, and rule performance across your organization

export const ThemeImage = ({src, alt}) => {
  let lightSrc, darkSrc;
  if (src.includes("-light.")) {
    lightSrc = src;
    darkSrc = src.replace("-light.", "-dark.");
  } else if (src.includes("-dark.")) {
    darkSrc = src;
    lightSrc = src.replace("-dark.", "-light.");
  } else {
    lightSrc = src;
    darkSrc = src;
  }
  return <span>
      <img className="block dark:hidden rounded-lg border" src={lightSrc} alt={alt} />
      <img className="hidden dark:block rounded-lg border" src={darkSrc} alt={alt} />
    </span>;
};

## Overview

The Insights dashboard gives you visibility into how Gitar is working across your organization. Track code review activity, identify recurring CI failure patterns, and monitor rule performance, all from a single view.

## Accessing Insights

Navigate to the **Insights** section in the Gitar dashboard at [app.gitar.ai](https://app.gitar.ai). Basic Insights (Gitar Activity, Top CI Failures, and Top Rules Applied) are available on all paid plans. Advanced Insights, including the Reviews dashboard and its detailed breakdowns, are available on Pro and Enterprise plans.

## Gitar Activity

See a real-time summary of everything Gitar has processed across your organization. The activity overview shows how many PRs were reviewed, code review findings surfaced, CI failures caught, and user requests handled over any time period you choose. The trend chart lets you spot whether review activity is picking up or slowing down, and the PRs by Type breakdown shows what kind of work your team is actually shipping: features, fixes, chores, refactors, and more.

<ThemeImage src="/assets/images/insights-overview-light.png" alt="Gitar activity overview showing summary cards, trend chart, and PRs by type breakdown" />

## Top CI Failures

See which CI failures are coming up most often across your repositories, organized by category such as Build, Test, Flaky Test, Configuration, and more. This helps you spot systemic issues in your pipeline so you can fix the root cause instead of the same failure on repeat.

<ThemeImage src="/assets/images/insights-ci-failures-light.png" alt="Top CI failures grouped by category with the most common failures listed" />

## Top Rules Applied

See how your repository rules are performing across all PRs. Each rule shows its compliance rate: how often it was met out of the total evaluations. Use this to identify which rules are effective and which ones may need tuning.

<ThemeImage src="/assets/images/insights-rules-light.png" alt="Top rules applied showing compliance rates and a breakdown by rule across repositories" />

## Reviews

The Reviews tab gives you a detailed look at how code review findings are being resolved across your organization. You can see overall resolution rates broken down by severity (Critical, Important, and Minor), alongside how findings are trending over time on merged PRs.

<ThemeImage src="/assets/images/insights-reviews-light.png" alt="Resolved code review findings showing overall resolution rate and severity breakdown with a trend chart" />

### Resolution by Author

The Reviews dashboard shows review effectiveness per author: PRs reviewed, findings reported, and resolution rate. A Top/Bottom 5 toggle lets you quickly surface outliers across your team.

<ThemeImage src="/assets/images/reviews-author-breakdown-light.png" alt="Resolution by Author widget on the Reviews dashboard" border={true} />

### Resolution by Category, Repository, and Tech Debt

Scroll further to see resolution rates broken down by category (Security, Bug, Performance, Edge Case, and Quality), which repositories are resolving the most findings, and how unresolved findings are accumulating over time compared to resolved ones. The Tech Debt Over Time chart tracks ignored vs. resolved findings over time, helping you spot whether tech debt is growing or shrinking.

<ThemeImage src="/assets/images/insights-findings-light.png" alt="Resolution by category table, resolution by repository, and tech debt over time chart" />
