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

> Use this reference to learn about the metadata available about storage metering history using the information schema.

# Storage Metering History

You can use the `information_schema.storage_metering_history` view to see daily information about aggregated storage consumption within an account.

```sql theme={"theme":{"light":"github-light","dark":"github-dark"}}
SELECT
  *
FROM
  information_schema.storage_metering_history;
```

## Columns in information\_schema.storage\_metering\_history

Each row has the following columns.

| Column Name               | Data Type | Description                                   |
| :------------------------ | :-------- | :-------------------------------------------- |
| usage\_date               | DATE      | Date for which the usage is reported          |
| consumed\_gib\_per\_month | NUMERIC   | Average amount of data stored over given date |

<Note>
  For detailed information about `consumed_gib_per_month` usage and calculations, see [Understanding Storage Billing](/guides/managing-your-organization/billing#understanding-storage-billing).
</Note>
