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

# Consumption Dashboard

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>;
};

[localhost link]: http://localhost:3000/docs/5/fusion/operations/monitoring-and-reporting/consumption

[mintlify link]: https://doc.lucidworks.com/docs/5/fusion/operations/monitoring-and-reporting/consumption

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

The Consumption Dashboard displays your request and record usage against the allotted consumption in your Fusion license. This ensures you understand how much of your Fusion entitlements you are using and whether you are reaching your consumption limit.

<Note>
  You can also access this information through the [Apps Manager API](/api-reference/license/get-the-fusion-license).
</Note>

To access the Consumption Dashboard, navigate to **Analytics Hub > Consumption** in Fusion.

You can access the Consumption Dashboard from any app, but the data in the dashboard is collected across all your Fusion apps. All consumption dashboard data updates daily at midnight Coordinated Universal Time (UTC).

<Tip>
  **Important**

  Contact your Lucidworks representative if you have questions about your Fusion license consumption entitlements.
</Tip>

<LwTemplate />

## Requests

Request means any GET or POST call against the Fusion [Query Profiles API](/api-reference/query-profiles-api/get-the-service-status) or Fusion [Query Pipelines API](/api-reference/query-pipelines-api/get-all-query-pipelines). Requests may be initiated by user actions such as typing in the search bar, executing a search, or clicking a category or facet. Requests may also be triggered by programmatic sources such as web crawlers or loading of pages. If a user interface or program generates multiple requests against the Fusion Query Profiles API or Fusion Query Pipelines API, each individual call will be counted against the requests per year and the max queries per second (or hour).

## Download reports

You can download your data from the consumption dashboard. The data is downloaded as CSV files and displays your data by day for the selected date range.

You can export the detailed from the selected date range, all data, or the summary section only.

The ZIP file returns eight files:

* A CSV file with the requests report per day, which lists the date and the number of requests made that day.
* A CSV file with the records report per day, which lists the date and the maximum number of records stored in Fusion that day.
* A CSV file with the events that occurred for requests. This file reports only signature mismatches, which indicates that data was modified. Otherwise this file contains only the date and event title columns.
* A CSV file with the events that occurred for records. This file reports only signature mismatches, which indicates that data was modified. Otherwise this file contains only the date and event title columns.
* A signature file to accompany each of the CSV files.

## Date range

You may view your consumption over the past week, month,
or year.
You may also select a custom date range.

## Requests chart

Requests are the HTTP requests sent to Fusion. Fusion receives requests through the API and user searches. The requests chart displays the number of requests that Fusion has processed each day over the given time interval.

To view the requests per pipeline, point your mouse over **Requests across pipelines** and select **Requests per pipeline**.

<img src="https://mintcdn.com/lucidworks/sBy1WWIeb2aVbL1d/assets/images/5.9/consumption-requests-across-pipelines.png?fit=max&auto=format&n=sBy1WWIeb2aVbL1d&q=85&s=775461ccff0841526d18b021913e9651" alt="Consumption dashboard requests across pipelines" width="1810" height="1070" data-path="assets/images/5.9/consumption-requests-across-pipelines.png" />

<img src="https://mintcdn.com/lucidworks/sBy1WWIeb2aVbL1d/assets/images/5.9/consumption-requests-per-pipeline.png?fit=max&auto=format&n=sBy1WWIeb2aVbL1d&q=85&s=705c8894c86f5efdb2497741d893aa3d" alt="Consumption dashboard requests per pipeline" width="1792" height="832" data-path="assets/images/5.9/consumption-requests-per-pipeline.png" />

## Documents chart

Records are the basic items that Fusion searches. They are also called documents in Fusion. The records chart displays the total number of records that your instance of Fusion has stored and indexed over the selected time period.

To view the documents per collection, point your mouse over **Documents across collections** and select **Documents* per collection*\*.

<img src="https://mintcdn.com/lucidworks/sBy1WWIeb2aVbL1d/assets/images/5.9/consumption-documents-across-collections.png?fit=max&auto=format&n=sBy1WWIeb2aVbL1d&q=85&s=0f1851923d288e4cc0d9d6bfc0b5a500" alt="Consumption dashboard documents across collections" width="1786" height="824" data-path="assets/images/5.9/consumption-documents-across-collections.png" />

<img src="https://mintcdn.com/lucidworks/sBy1WWIeb2aVbL1d/assets/images/5.9/consumption-documents-per-collection.png?fit=max&auto=format&n=sBy1WWIeb2aVbL1d&q=85&s=6952ebc2c0908cf9e231b7c704a16714" alt="Consumption dashboard documents per collection" width="1786" height="834" data-path="assets/images/5.9/consumption-documents-per-collection.png" />
