PgBeam Docs
db

db inspect

Show database details

Display detailed information about a database connection, including its ID, name, host, port, SSL mode, cache configuration, and connection pool settings.

Usage

pgbeam db inspect <id>

Options

OptionDescriptionRequiredDefault
<id>ID of the database to inspectYes-

Global options

All global options (--token, --profile, --project, --org, --json, --no-color, --debug) are also available on this command.

Examples

# Inspect a database
pgbeam db inspect db_xxx

# Get database details as JSON
pgbeam db inspect db_xxx --json

Output

Displays database ID, name, host:port, SSL mode, cache status (enabled/disabled), and pool mode. With --json, returns the full database object including cache_config and pool_config.

On this page