From c660b4a13c83825f56490451c30ac0e123e6f37b Mon Sep 17 00:00:00 2001 From: Hari Sekhon Date: Wed, 5 Aug 2020 15:30:27 +0100 Subject: [PATCH] added postgres_indexes_caches_hit_ratio.sql --- sql/postgres_indexes_caches_hit_ratio.sql | 27 +++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 sql/postgres_indexes_caches_hit_ratio.sql diff --git a/sql/postgres_indexes_caches_hit_ratio.sql b/sql/postgres_indexes_caches_hit_ratio.sql new file mode 100644 index 00000000..e11df5be --- /dev/null +++ b/sql/postgres_indexes_caches_hit_ratio.sql @@ -0,0 +1,27 @@ +-- +-- Author: Hari Sekhon +-- Date: 2020-08-05 15:28:12 +0100 (Wed, 05 Aug 2020) +-- +-- vim:ts=2:sts=2:sw=2:et:filetype=sql +-- +-- https://github.com/harisekhon/bash-tools +-- +-- License: see accompanying Hari Sekhon LICENSE file +-- +-- If you're using my code you're welcome to connect with me on LinkedIn and optionally send me feedback to help steer this or other code I publish +-- +-- https://www.linkedin.com/in/harisekhon +-- + +-- PostgreSQL Indexes Cache-hit Ratio +-- +-- should be closer to 1, eg. 0.99 + +SELECT + SUM(idx_blks_read) AS idx_read, + SUM(idx_blks_hit) AS idx_hit, + (SUM(idx_blks_hit) - SUM(idx_blks_read)) / + SUM(idx_blks_hit) + AS ratio +FROM + pg_statio_user_indexes;