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

# Dashboards

> Community dashboards and analytics tools that help monitor ecosystem activity.

export const CustomDivider = ({color = "var(--lp-color-border-default)", middleText = "", spacing = "default", style = {}, className = "", ...rest}) => {
  const spacingPresets = {
    default: {
      margin: "24px 0"
    },
    overlap: {
      margin: "-1rem 0 -1rem 0"
    },
    tight: {
      margin: "0 0 -1rem 0"
    },
    section: {
      margin: "0 0 -2rem 0"
    },
    sectionOverlap: {
      margin: "-1rem 0 -2rem 0"
    },
    deepOverlap: {
      margin: "-1rem 0 -1.5rem 0"
    }
  };
  const spacingStyle = spacingPresets[spacing] || spacingPresets.default;
  return <div role="separator" aria-orientation="horizontal" className={className} style={{
    display: "flex",
    alignItems: "center",
    ...spacingStyle,
    fontSize: style?.fontSize || "16px",
    height: "fit-content",
    ...style
  }} {...rest}>
      <span style={{
    marginRight: "var(--lp-spacing-px-8)",
    opacity: 0.2
  }}>
        <Icon icon="/snippets/assets/logos/Livepeer-Logo-Symbol-Theme.svg" />
      </span>
      <div style={{
    flex: 1,
    height: "1px",
    background: "var(--lp-color-border-default)",
    opacity: 0.4
  }}></div>
      {middleText && <>
          <Icon icon="circle" size={2} />
          <span style={{
    margin: "0 8px",
    fontWeight: "bold",
    color: color,
    opacity: 0.7
  }}>
            {middleText}
          </span>
          <Icon icon="circle" size={2} />
        </>}
      <div style={{
    flex: 1,
    height: "1px",
    background: "var(--lp-color-border-default)",
    opacity: 0.4
  }}></div>
      <span style={{
    marginLeft: "var(--lp-spacing-px-8)",
    opacity: 0.2
  }}>
        <span style={{
    display: "inline-block",
    transform: "scaleX(-1)"
  }}>
          <Icon icon="/snippets/assets/logos/Livepeer-Logo-Symbol-Theme.svg" />
        </span>
      </span>
    </div>;
};

Dashboards and analytics tools for monitoring protocol state, network performance, staking data, and AI compute activity.

## Foundation Dashboards

Launched mid-2025, these dashboards are integrated into the [Livepeer Explorer](https://explorer.livepeer.org).

| Dashboard                 | What It Shows                                                            |
| ------------------------- | ------------------------------------------------------------------------ |
| **Growth Dashboard**      | Fee distribution by job type and Orchestrator                            |
| **Governance Dashboard**  | Proposal analytics, voter participation, delegate behaviour              |
| **AI Compute Visualiser** | Orchestrators, GPU resources, and pipeline availability in the AI subnet |

<Card title="Livepeer Explorer" icon="chart-line" href="https://explorer.livepeer.org">
  Staking, delegation, governance voting, treasury proposals, and Orchestrator browsing - all in one interface.
</Card>

<CustomDivider />

## Protocol Analytics

<CardGroup cols={2}>
  <Card title="Dune - Livepeer Protocol" icon="chart-bar" href="https://dune.com/browse/dashboards?q=livepeer">
    On-chain protocol state - transactions, fees, staking activity on Arbitrum.
  </Card>

  <Card title="Dune - Livepeer AI" icon="microchip" href="https://dune.com/browse/dashboards?q=livepeer+ai">
    AI subnet protocol state - inference jobs, GPU utilisation, pipeline metrics.
  </Card>

  <Card title="Messari Quarterly Reports" icon="file-lines" href="https://messari.io/project/livepeer/research">
    "State of Livepeer" quarterly analysis with macro financial statements.
  </Card>

  <Card title="Web3 Index" icon="arrow-trend-up" href="https://web3index.org">
    Usage-based fee metrics across web3 protocols including Livepeer.
  </Card>

  <Card title="StakingRewards" icon="coins" href="https://stakingrewards.com/earn/livepeer">
    LPT staking statistics, APR, and validator comparisons.
  </Card>

  <Card title="Data Geography Resource Table" icon="table" href="https://github.com/shtukaresearch/livepeer-data-geography/blob/651a56e8c8290b30855f1393543ee9e0961c071c/resource-table.md">
    Curated dashboard and data resource table maintained by the community.
  </Card>
</CardGroup>

<CustomDivider />

## Orchestrator & Network Monitoring

| Tool                            | Description                                               | Maintained By                                        |
| ------------------------------- | --------------------------------------------------------- | ---------------------------------------------------- |
| Livepeer Exporter               | Prometheus/Grafana enhanced monitoring for node operators | Community                                            |
| Orchestrator Explorer           | Browse Orchestrator data and performance metrics          | Community                                            |
| Stream Tester                   | Assess Orchestrator streaming performance                 | Community                                            |
| Test Streams Dashboard          | Regional transcoding quality scores                       | Community                                            |
| AI Inference Tester             | AI pipeline statistics per Orchestrator                   | Community                                            |
| Orchestrator Pricing Visibility | Price-per-pixel tracking across Orchestrators             | Community                                            |
| NaaP Analytics (Grafana)        | SLA metrics, GPU performance, and reliability             | Cloud SPE                                            |
| Orchestrator Payout Report      | Payout data for Orchestrators                             | [tools.Livepeer.cloud](https://tools.livepeer.cloud) |

<CustomDivider />

## Alerting Tools

| Tool                                                                            | Description                                                    |
| ------------------------------------------------------------------------------- | -------------------------------------------------------------- |
| Telegram Watcher Bot                                                            | Orchestrator notifications via Telegram                        |
| Livepeer Reward Watcher                                                         | Alert when an Orchestrator is at risk of missing a reward call |
| [livepeer/livepeer-monitoring](https://github.com/livepeer/livepeer-monitoring) | Bundled Prometheus/Grafana monitoring stack                    |

For a comprehensive list of community tools, see [Awesome Livepeer](/v2/community/resources/awesome-Livepeer).
