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

# Built-in Dashboards

export const LwTemplate = ({title = "Key questions to get you started", icon = "sparkles", cta = "Powered by Agent Studio", linkHref = "https://lucidworks.com/demo/?utm_source=docs&utm_medium=referral&utm_campaign=docs_cta_ai"}) => {
  const [isLoaded, setIsLoaded] = useState(false);
  useEffect(() => {
    const timer = setTimeout(() => {
      setIsLoaded(true);
    }, 500);
    return () => clearTimeout(timer);
  }, []);
  return <div className="lw-template-container">
      <Card title={title} icon={icon}>
        {isLoaded && <span dangerouslySetInnerHTML={{
    __html: `<lw-template id="a029c1a9-28be-427e-b0e1-5d918920246a"></lw-template
            >`
  }} />}
        <Link href={linkHref} className="agent-studio-link text-left text-gray-600 gap-2 dark:text-gray-400 text-sm font-medium flex flex-row items-center hover:text-primary dark:hover:text-primary-light group-hover:text-primary group-hover:dark:text-primary-light">Powered by Lucidworks Agent Studio</Link>
      </Card>
    </div>;
};

export const InlineImage = ({src, alt = '', height = '2em'}) => {
  return <img src={src} alt={alt} style={{
    display: 'inline',
    verticalAlign: 'start',
    height: height,
    margin: '0'
  }} />;
};

[localhost link]: http://localhost:3000/docs/5/fusion/operations/monitoring-and-reporting/banana-dashboards/built-in-dashboards

[mintlify link]: https://doc.lucidworks.com/docs/5/fusion/operations/monitoring-and-reporting/banana-dashboards/built-in-dashboards

[old doc.lw link]: https://doc.lucidworks.com/fusion/5.9/140

Fusion ships with built-in dashboards. To access these dashboards from the Fusion UI, click **Analytics > Dashboards**.

<LwTemplate />

## Service Logs dashboard

The Service Logs dashboard (`lucidworks-service-logs.json`) is also the **default** dashboard (`default.json`).

<img src="https://mintcdn.com/lucidworks/tklssWuUmNaxlF0b/assets/images/5.4/5x_Service_Logs_db.png?fit=max&auto=format&n=tklssWuUmNaxlF0b&q=85&s=a9be20ae19521ab9488cf9e2ee46edb6" alt="Service Logs dashboard" width="1874" height="821" data-path="assets/images/5.4/5x_Service_Logs_db.png" />

You can modify the default dashboard to suit your needs. To set a different dashboard as the browser default, click the dashboard you want to set as the default, then click **Save > Set as Browser Default**.

To open the default dashboard from the Fusion workspace, click Analytics <InlineImage src="/assets/images/4.0/icons/workspace-menu-analytics.png" /> > **Dashboards** or System <InlineImage src="/assets/images/4.0/icons/workspace-menu-system.png" /> > **Log Viewer**. Alternatively, on any dashboard, click **Goto saved default** <InlineImage src="/assets/images/common/dashboards/open-default-dashboard.png" />.

## Combined Logs dashboard

The Combined Logs dashboard (`lucidworks-combined-logs.json`) lets you analyze all logs from the `system_logs` collection.

<img src="https://mintcdn.com/lucidworks/tklssWuUmNaxlF0b/assets/images/5.4/5x_Combined_Logs.png?fit=max&auto=format&n=tklssWuUmNaxlF0b&q=85&s=267e2cd8f60f542e58ae54ea62b837bf" alt="Combined Logs dashboard" width="1622" height="1367" data-path="assets/images/5.4/5x_Combined_Logs.png" />

## Blank dashboard

An entirely blank dashboard (`blank.json`) is available. To open this dashboard from the default dashboard, click **Blank Dashboard** at the top right.

## Search Analytics dashboard

The Fusion Search Analytics dashboard (`lucidworks-searchanalytics.json`) displays search analytics derived from collection logs and from queries to Solr (`/api/solr`).

<img src="https://mintcdn.com/lucidworks/de_1M1m_4TTyJqw0/assets/images/5.0/dashboard-search-analytics.png?fit=max&auto=format&n=de_1M1m_4TTyJqw0&q=85&s=659f5d90723dacd5981f4a3dbf823cd0" alt="Search Analytics dashboard" width="2884" height="1508" data-path="assets/images/5.0/dashboard-search-analytics.png" />

To open the Search Analytics dashboard from the default dashboard, click **Search Analytics** at the top right.

## Fusion Signals dashboard

The Fusion Signals dashboard (`lucidworks-signals.json`) is a time-series dashboard that you can use to monitor signals collections. It uses the signal timestamp as the time field.

<img src="https://mintcdn.com/lucidworks/de_1M1m_4TTyJqw0/assets/images/5.0/dashboard-signals.png?fit=max&auto=format&n=de_1M1m_4TTyJqw0&q=85&s=076624a0151cea08fb223690150eae1d" alt="Fusion Signals dashboard" width="2884" height="1502" data-path="assets/images/5.0/dashboard-signals.png" />

To open the Fusion Signals dashboard from the default dashboard, click **Lucidworks Fusion Signals** at the top right.

## Default Non-Time-Series dashboard

Fusion includes a default non-time-series dashboard (`default-nts.json`). This is an example:

<img src="https://mintcdn.com/lucidworks/de_1M1m_4TTyJqw0/assets/images/5.0/dashboard-non-time-series.png?fit=max&auto=format&n=de_1M1m_4TTyJqw0&q=85&s=f316afac375804ddfc781acff7d2f41b" alt="Non time-series dashboard" width="2884" height="1658" data-path="assets/images/5.0/dashboard-non-time-series.png" />

To open the default non-time-series dashboard, at the top right of any dashboard, click **New > Non-time-series dashboard**.

## Default Time-Series dashboard

Fusion includes a default time-series dashboard (`default-ts.json`). This is an example:

<img src="https://mintcdn.com/lucidworks/de_1M1m_4TTyJqw0/assets/images/5.0/dashboard-time-series.png?fit=max&auto=format&n=de_1M1m_4TTyJqw0&q=85&s=be4cc1107ad3281c5246bebb7d8974c0" alt="Time-series dashboard" width="2884" height="1514" data-path="assets/images/5.0/dashboard-time-series.png" />

To open the default time-series dashboard, at the top right of any dashboard, click **New > Time-series dashboard**.
