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

# Check Provisioned Resources

<Warning>
  Important: We are not able to provide support or guidance for unmanaged Postgres. We now offer [Fly.io Managed Postgres](/mpg) , our fully-managed database service that handles all aspects of running production PostgreSQL databases.
</Warning>

## Instances

Get an overview of the app, including a list of its VM instances with Machine IDs:

```bash theme={null}
fly status --app <pg-app-name>
```

## VM Scale

List more details about an individual Machine:

```bash theme={null}
fly machine status <machine-id> --app <pg-app-name>
```

From this information you can get the scale of the VM (both `Memory` and `CPUs`), and the ID of its attached [Fly Volume](/volumes).

## Provisioned Volume Size

You can check the sizes of all the storage volumes provisioned for your Postgres App with

```bash theme={null}
fly vol list --app <pg-app-name>
```

## Public Anycast IP Addresses

If you've configured your Postgres cluster to be reachable by external services, you'll have provisioned at least one public anycast IP address. You can check these with

```bash theme={null}
fly ips list --app <pg-app-name>
```

Pricing for all resources can be found at [https://fly.io/pricing](https://fly.io/pricing).
