> ## 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.

# App Insights

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/getting-data-out/data-analytics/app-insights/overview

[mintlify link]: https://doc.lucidworks.com/docs/5/fusion/getting-data-out/data-analytics/app-insights/overview

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

<Tip>
  **Important**

  App Insights is deprecated in Fusion 5.12.
</Tip>

App Insights provides detailed, real-time, searchable reports and visualizations derived from your [signals data](/docs/5/fusion/getting-data-out/query-enhancement/signals/overview). It also provides alerts and triggers to notify you when specific events occur.

* To open App Insights from the Fusion workspace, navigate to **Analytics** > **Insights**.
* To switch apps while in App Insights, hover over <InlineImage src="/assets/images/4.0/icons/workspace-menu-apps.png" />, and then click a different app.
* To exit App Insights, hover over <InlineImage src="/assets/images/4.0/icons/workspace-menu-apps.png" />, and then click **Return to Fusion**.

<LwTemplate />

## App Insights pages

When App Insights is open, you can hover over the left navigation panel to reach these pages:

* <InlineImage src="/assets/images/4.0/icons/insights-dashboards.png" /> [Dashboards](/docs/5/fusion/getting-data-out/data-analytics/app-insights/dashboards)\
  View graphs and tables about:

  * requests
  * queries
  * results
  * clicks
  * users
  * sessions\
    You can filter by timeframe or by the content of the data, and create custom reports.
* <InlineImage src="/assets/images/4.0/icons/insights-events.png" /> [Events](/docs/5/fusion/getting-data-out/data-analytics/app-insights/events)\
  View histograms and timelines about events, filtered by:

  * event type
  * users
  * request/response information\
    You can also create custom reports about events here.
* <InlineImage src="/assets/images/4.0/icons/insights-sessions.png" /> [Sessions](/docs/5/fusion/getting-data-out/data-analytics/app-insights/sessions)\
  View charts and timelines about search events, filtered by:

  * user
  * subject
  * event duration
  * events per session
* <InlineImage src="/assets/images/4.0/icons/insights-analytics.png" /> [Analytics](/docs/5/fusion/getting-data-out/data-analytics/app-insights/analytics)\
  A variety of standard reports are available here. You can also define custom reports to suit your needs.
* <InlineImage src="/assets/images/4.0/icons/insights-experiments.png" /> [Experiment results](/docs/5/fusion/getting-data-out/data-analytics/app-insights/experiment-results)\
  If you have configured an [experiment](/docs/5/fusion/getting-data-out/data-analytics/experiments/overview), you can see visualizations about the results here.

## Reports

App Insights provides a standard set of reports, plus the ability to **Create Custom Reports**. Standard reports are located on the [Analytics](/docs/5/fusion/getting-data-out/data-analytics/app-insights/analytics) page, while custom reports can be defined on the [Dashboard](/docs/5/fusion/operations/monitoring-and-reporting/banana-dashboards/overview), [Events](/docs/5/fusion/getting-data-out/data-analytics/app-insights/events), or Analytics pages. Report data can be filtered by time or by free text search, and reports can be exported by clicking <InlineImage src="/assets/images/4.0/insights-export-table.png" /> **Export table**.

<Accordion title="Create Custom Reports">
  {/* // tag::reports[] */}

  There are several ways to create a custom report:

  **On the Analytics page for App Insights**

  1. Apply one or more filters.
  2. Click **+ New custom report**.
  3. Define the report’s parameters.
  4. Click **Create and launch report**.

  **On the Dashboard page**

  1. Filter any dashboard.
  2. Scroll to the bottom.
  3. Click **\<n> events match your criteria. View Now.**

       <img src="https://mintcdn.com/lucidworks/l9y7VqRhZkN9hmR0/assets/images/4.0/insights-view-now.png?fit=max&auto=format&n=l9y7VqRhZkN9hmR0&q=85&s=630647b4c6d9bf67cdb511b1b27f1b2c" alt="View Now" width="1764" height="182" data-path="assets/images/4.0/insights-view-now.png" />

     This takes you to the [Events](/docs/4/fusion-ai/concepts/insights/events) page, where you can navigate to **Analytics** > **+New Custom Report**. Define additional parameters for the report, then click **Create and launch report**.

     {/* // end::reports[] */}
</Accordion>
