Comment on page
Postgres Actions
- Execute commands in a PostgreSQL transaction. : Given a set of PostgreSQL commands, this actions run them inside a transaction.
- PostgreSQL Get Cache Hit Ratio : The result of the action will show the total number of blocks read from disk, the total number of blocks found in the buffer cache, and the cache hit ratio as a percentage. For example, if the cache hit ratio is 99%, it means that 99% of all data requests were served from the buffer cache, and only 1% required reading data from disk.
- PostgreSQL Get Index Usage : The action result shows the data for table name, the percentage of times an index was used for that table, and the number of live rows in the table.
- PostgreSQL check active connections : Checks if the percentage of active connections to the database exceeds the provided threshold.
- Show tables in PostgreSQL Database : Show the tables existing in a PostgreSQL Database. We execute the following query to fetch this information SELECT * FROM pg_catalog.pg_tables WHERE schemaname != 'pg_catalog' AND schemaname != 'information_schema';
Last modified 2mo ago