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

# Cognigy Insights

<div className="hero-container">
  <div className="hero-content">
    *Cognigy Insights* is a tool that provides businesses with actionable insights and analytics derived from conversational data collected through Cognigy.AI.

    <p>
      Insights help businesses better understand their users, optimize chat and voice interactions, and improve the overall customer experience.
    </p>

    <p>
      Insights also enables organizations to boost AI Agent performance and deliver consistently exceptional interactions.
    </p>
  </div>

  <div style={{ position: "relative", width: "fit-content", margin: "0 auto" }}>
    <video
      width="200"
      height="200"
      className="block dark:hidden"
      style={{
      margin: "0 auto",
      borderRadius: "var(--rounded-xl, .75rem)",
      borderBottom: "1px solid lightgray",
      borderRight: "1px solid lightgray",
      borderTop: "0",
      borderLeft: "0"
    }}
      autoPlay
      muted
      loop
    >
      <source src="https://docscognigyassets.blob.core.windows.net/assets/Microanimation_Insights_Light_V1_Optimised.mp4" type="video/mp4" />
    </video>

    <video
      width="200"
      height="200"
      className="hidden dark:block"
      style={{
      margin: "0 auto",
      borderRadius: "var(--rounded-xl, .75rem)",
      borderBottom: "1px solid #313437",
      borderRight: "1px solid #313437",
      borderTop: "0",
      borderLeft: "0"
    }}
      autoPlay
      muted
      loop
    >
      <source src="https://docscognigyassets.blob.core.windows.net/assets/Microanimation_Insights_Dark_V1_Optimised.mp4" type="video/mp4" />
    </video>

    <button
      type="button"
      aria-label="Pause video"
      className="video-pause-btn"
      onClick={(e) => {
  const btn = e.currentTarget;
  const container = btn.parentElement;
  const videos = Array.from(container.querySelectorAll('video'));
  const visibleVideo = videos.find(v => !v.closest('[class*="hidden"]') && v.offsetParent !== null) || videos[0];
  const isPaused = visibleVideo?.paused;
  videos.forEach(v => isPaused ? v.play() : v.pause());
  btn.textContent = isPaused ? '⏸' : '▶';
  btn.setAttribute('aria-label', isPaused ? 'Pause video' : 'Play video');
}}
    >
      ⏸
    </button>
  </div>
</div>

<CardGroup cols={3}>
  <Card title="About Insights" icon="info" href="/insights/overview">
    To analyze your AI Agents and take your chat and voice agents to the next level, explore the capabilities of Cognigy Insights.
  </Card>

  <Card title="View Report Metrics" icon="chart-no-axes-combined" href="/insights/reports/overview">
    Monitor key metrics by utilizing ready-made charts on reports.
  </Card>

  <Card title="Use Explorers" icon="telescope" href="/insights/explorers/step">
    Examine sessions separately to thoroughly investigate performance issues.
  </Card>

  <Card title="Download Reports" icon="download" href="/insights/download-reports">
    Download reports individually for each chat on the reports.
  </Card>

  <Card title="Filter and Sort" icon="list-filter-plus" href="/insights/global-filters">
    Use global filters to effectively sort and filter data both on reports and explorers.
  </Card>

  <Card title="Data Management" icon="calendar-sync" href="/insights/data-management/pre-aggregation">
    Learn how data pre-aggregation is used for reports, configure Time Zone and TTL (Time To Live) settings for your project.
  </Card>
</CardGroup>
