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

# Get status overview

> Scout Extended provides an overview of your application indices for tracking key metrics such as the number of records.

export const Index = () => <Tooltip tip="An Algolia index is a searchable dataset that consists of records and configuration settings. These settings define how the records are searched and ranked.">
    index
  </Tooltip>;

To get an overview of your application indexes, use the `scout:status` Artisan command:

```sh Command line icon=square-terminal theme={"system"}
php artisan scout:status
```

This Artisan command outputs a table with the following content:

<img src="https://mintcdn.com/algolia/n_gdBwT_QFZcudWB/doc/framework-integration/laravel/production/status.png?fit=max&auto=format&n=n_gdBwT_QFZcudWB&q=85&s=f96ce9e7ef2998a16c91f5d0848dcec4" alt="Screenshot of terminal output for the scout:status Artisan command showing searchable items, index, settings, and record counts." width="3288" height="1210" data-path="doc/framework-integration/laravel/production/status.png" />

* `Searchable`: the name of the `searchable` class.
* `Index`: the <Index /> name.
* `Settings`: whether the settings file is up-to-date or not.
* `Local records`: the number of `searchable` records in the database.
* `Remote records`: the number of records in the Algolia index.
