https://github.com/derhuerst/pev2-cli
Run the PostgreSQL Explain Visualizer 2 (pev2) from the command line.
https://github.com/derhuerst/pev2-cli
pev2 postgres postgresql query-optimization query-optimizer query-plan query-planner query-planning
Last synced: about 1 month ago
JSON representation
Run the PostgreSQL Explain Visualizer 2 (pev2) from the command line.
- Host: GitHub
- URL: https://github.com/derhuerst/pev2-cli
- Owner: derhuerst
- License: isc
- Created: 2020-10-18T16:54:39.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2025-03-13T14:56:03.000Z (3 months ago)
- Last Synced: 2025-04-15T04:57:16.904Z (about 1 month ago)
- Topics: pev2, postgres, postgresql, query-optimization, query-optimizer, query-plan, query-planner, query-planning
- Language: JavaScript
- Homepage:
- Size: 95.7 KB
- Stars: 25
- Watchers: 2
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: readme.md
- License: license.md
Awesome Lists containing this project
README
# pev2-cli
**Run the [PostgreSQL Explain Visualizer 2 (pev2)](https://github.com/dalibo/pev2) from the command line.**
[](https://www.npmjs.com/package/pev2-cli)


[](https://github.com/sponsors/derhuerst)
[](https://matrix.to/#/@derhuerst:matrix.org)## Installation
```shell
npm install -g pev2-cli
```## Usage
```shell
Usage:
pev2 [path-to-execution-plan]
Notes:
This tool uses the pev2 to visualize PostgreSQL's execution plan including
costs associated to each operation.
more info: https://www.postgresql.org/docs/14/using-explain.html
To let PostgreSQL generate the plan, prefix it with the following line:
EXPLAIN (ANALYZE, COSTS, VERBOSE, BUFFERS, FORMAT JSON)If you don't pass an execution plan, this tool will spawn `psql` to run the
the query. Use the `PG*` environment variables to make sure `psql` can
connect to the right database.
more info: https://www.postgresql.org/docs/14/libpq-envars.html
Options:
--open -o Open the URL in the browser.
--app The browser to open the URL with.
--quiet -q Don't report what's going on.
--once -1 Stop serving after pev2 has received the data.
--name -n Give the execution plan a name within pev2.
Default: filename and ISO date+time
Examples:
pev2 --open --app firefox -q path/to/some-explain-query.sql
```## Contributing
If you have a question or need support using `pev2-cli`, please double-check your code and setup first. If you think you have found a bug or want to propose a feature, use [the issues page](https://github.com/derhuerst/pev2-cli/issues).