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

# Overview dashboard

> Read performance, channel health, and follow-up signals from one page.

export const BrowserWrapper = ({src, alt, title, description, height = '280px', caption, imgStyle = {}, children, imagePadding = '0px'}) => {
  const legacyDocsImagePrefix = '/images/';
  const productionDocsImagePrefix = '/docs/images';
  const rawSrc = typeof src === 'string' ? src : src && (src.src || src.default) || '';
  const imageSrc = rawSrc.startsWith(legacyDocsImagePrefix) ? `${productionDocsImagePrefix}/${rawSrc.slice(legacyDocsImagePrefix.length)}` : rawSrc;
  return <Frame caption={caption || alt || title} width="100%">
      <div style={{
    border: '1px solid #e2e8f0',
    borderRadius: '12px',
    overflow: 'hidden',
    boxShadow: '0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05)',
    width: '100%'
  }}>
        <div style={{
    backgroundColor: '#f8fafc',
    padding: '10px 15px',
    borderBottom: '1px solid #e2e8f0',
    display: 'flex',
    gap: '6px'
  }}>
          <div style={{
    width: '10px',
    height: '10px',
    borderRadius: '50%',
    backgroundColor: '#ff5f56'
  }} />
          <div style={{
    width: '10px',
    height: '10px',
    borderRadius: '50%',
    backgroundColor: '#ffbd2e'
  }} />
          <div style={{
    width: '10px',
    height: '10px',
    borderRadius: '50%',
    backgroundColor: '#27c93f'
  }} />
        </div>
        <div style={{
    overflow: 'hidden',
    background: '#ffffff',
    width: '100%',
    padding: imagePadding
  }}>
          {src ? <img src={imageSrc} alt={alt || ''} data-docs-screenshot style={{
    ...imgStyle,
    width: '100%',
    minWidth: '100%',
    height: 'auto',
    display: 'block',
    borderRadius: '0px'
  }} /> : children ? children : null}
        </div>
      </div>
    </Frame>;
};

The <a href="https://www.boundbot.com/dashboard/overview" target="_blank" rel="noopener noreferrer"><b>Overview</b></a> page is your operating dashboard. It pulls together message volume, credit usage, <a href="/sales/leads-orders">lead activity</a> (<a href="https://www.boundbot.com/dashboard/sales/leads" target="_blank" rel="noopener noreferrer">open in app</a>), connected channels, and stale conversations that need follow-up.

<BrowserWrapper src="../images/dashboard-overview.png" alt="Overview dashboard showing message volume, credits, channel health, and needs attention." imgStyle={{ maxHeight: '420px', objectFit: 'cover', objectPosition: 'top' }} />

## What you can monitor

* **Conversations**, **Messages in**, and **Messages out** show traffic for the selected time window.
* <a href="/sales/leads-orders"><b>Leads</b></a> (<a href="https://www.boundbot.com/dashboard/sales/leads" target="_blank" rel="noopener noreferrer">open in app</a>) shows how many new leads were captured.
* **Credits** shows the current balance and how much of the earned pool has been spent.
* **AI messages** helps you separate total traffic from AI-generated replies.
* **Channels** and **Issues** show how many connections are active versus disconnected or errored.

## Change the reporting window

Use the window selector at the top of the page to switch between:

* Last 7 days
* Last 30 days
* Last 90 days
* Month to date

On higher tiers, you can also pick a custom date range to inspect a specific campaign, launch window, or incident.

## Watch channel health

The **Channel health** table tells you which channels are connected, which bot each channel uses, and whether the channel is active, disconnected, or in error.

Use this section when:

* a support inbox looks quiet when traffic should be coming in
* a social channel lost credentials
* you want to confirm a new channel is attached to the correct bot

## Use needs attention every day

The **Needs attention** panel highlights conversations with no activity for at least 24 hours. It is the fastest way to catch stalled support threads and missed sales follow-ups.

Recommended daily routine:

1. Open <a href="https://www.boundbot.com/dashboard/overview" target="_blank" rel="noopener noreferrer"><b>Overview</b></a> first.
2. Check **Issues** and **Channel health**.
3. Open every item in **Needs attention**.
4. Move into <a href="https://www.boundbot.com/dashboard/inbox" target="_blank" rel="noopener noreferrer"><b>Inbox</b></a> for manual follow-up.

<Tip>
  If you want deeper conversation context before replying, open the thread in <a href="/guides/inbox">Inbox</a> (<a href="https://www.boundbot.com/dashboard/inbox" target="_blank" rel="noopener noreferrer">open in app</a>) and check whether a conversation summary is available for your plan.
</Tip>

## Related pages

<CardGroup cols={2}>
  <Card title="Inbox" icon="inbox" href="/guides/inbox">
    Move from high-level follow-up signals into the full conversation thread.
  </Card>

  <Card title="Channels overview" icon="messages-square" href="/channels/overview">
    Review the channel types that feed the health table and issue count.
  </Card>

  <Card title="Billing and usage" icon="credit-card" href="/account/billing-and-usage">
    Understand how credits and plan status affect the numbers you monitor here.
  </Card>

  <Card title="Leads and orders" icon="shopping-cart" href="/sales/leads-orders">
    Follow demand signals after overview shows that new conversations are converting.
  </Card>
</CardGroup>
