Reputation: 3
Using the heroku toolbelt a person can run the following command and receive some stats about the postgres database connected to the application:
pg:info
if you are not within an application directory you will recieve the following error:
"No app specified."
but if you specify an app, then you will only be able to pull stats on the databases that where created an connected to an application. But, Heroku Postgres lets you create databases that are not connected to a specific application.
How do you use pg:info with a databases that is outside a heroku application?
There is some information in the heroku docs about how to use the pg:info command, but they don't mention how to use it with a standalone database.
Upvotes: 0
Views: 413
Reputation: 11342
You cannot use pg:info
with Standalone Heroku Postgres databases at this time.
Upvotes: 0