Download the module and modify ROOT_PGstub.ps1 - out of the box it lists just the current server. You will probably want to add more from one of the inventories. Contribute more on Github.
Powershell uses ODBC to connect to Postgres, so you need to have psqlodbc_ver-x64.zip
installed on a server.
At the top level, you have a few server-wide reports and a list of databases with their sizes.
At a database level, you get several performance charts (you have to wait 30 seconds or 10 seconds for each, the module builds charts by calculating deltas of the increasing cumulative values) and the "biggest tables" report.
You can click on any stored procedure to inspect the source code:
Finally, for every table you can get fragmentation and selectivity reports, and for tables with datetime columns distribution of the values by date (number of records per date):
The index coverage report lists all columns, covered by any index at least once. Leading column in an index is marked with '1', second with '2' etc. You can easily spot overindexing and bad indexing.