ruby-pg-extras 4.4.4 → 4.5.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: ebce0b7bd6c80956895062aafe69e19d0c3763f63133111c5aeefa884bf82e0f
4
- data.tar.gz: 48ae616bb871befed1dc781f7860118fc4cbb6a15f0df7b2b393b6478aebd286
3
+ metadata.gz: eccdaebec580ef42cfdb092693f1adf4db2b1b3dbfcb42a929d7d867fc4b853c
4
+ data.tar.gz: 87aefe7bf42510e3b3d1df787ce046eadef69965470edffd7cf02b462156a841
5
5
  SHA512:
6
- metadata.gz: 99367200be303ca90cbc95535059c37b6ad88e2ac1022d43d8713096e82dae50417159541f1a67be405aca92675a3455b88f68eed73368ac96261dccaae6ba01
7
- data.tar.gz: 97f7b56efd06e58067c22c1c540cbeb49c032622b3693183f2d8f66b82f68499eda3db88bf873181bb05554ffaccbd2630cc2d4d4d9334e8eea916b586344923
6
+ metadata.gz: 28bfa046456ae5fd15183d56c185ca5fc30ab8e2f3208e7640c53e5cdb4ad6d9df223f97d81b8e529405c44d6041ebefd0fe92b0135a1762a7a72fc83b3e5617
7
+ data.tar.gz: 1189fe24c64b2de4dfaa807f1b98e380b33cd60a4a8d209ba453d14cd41e726718dc42d6ca35300d4f812dcdd2d8730ce298bfebaa4911b29cf0441f105f9ae9
@@ -34,8 +34,17 @@ module RubyPgExtras
34
34
  outliers_legacy: { limit: 10 },
35
35
  buffercache_stats: { limit: 10 },
36
36
  buffercache_usage: { limit: 20 },
37
- unused_indexes: { max_scans: 50 },
38
- null_indexes: { min_relation_size_mb: 10 }
37
+ unused_indexes: { max_scans: 50, schema: "public" },
38
+ null_indexes: { min_relation_size_mb: 10 },
39
+ index_usage: { schema: "public" },
40
+ index_cache_hit: { schema: "public" },
41
+ table_cache_hit: { schema: "public" },
42
+ index_scans: { schema: "public" },
43
+ cache_hit: { schema: "public" },
44
+ seq_scans: { schema: "public" },
45
+ table_index_scans: { schema: "public" },
46
+ records_rank: { schema: "public" },
47
+ tables: { schema: "public" }
39
48
  })
40
49
 
41
50
  QUERIES.each do |query_name|
@@ -4,8 +4,10 @@ SELECT
4
4
  'index hit rate' AS name,
5
5
  (sum(idx_blks_hit)) / nullif(sum(idx_blks_hit + idx_blks_read),0) AS ratio
6
6
  FROM pg_statio_user_indexes
7
+ WHERE schemaname = '%{schema}'
7
8
  UNION ALL
8
9
  SELECT
9
10
  'table hit rate' AS name,
10
11
  sum(heap_blks_hit) / nullif(sum(heap_blks_hit) + sum(heap_blks_read),0) AS ratio
11
- FROM pg_statio_user_tables;
12
+ FROM pg_statio_user_tables
13
+ WHERE schemaname = '%{schema}';
@@ -11,5 +11,7 @@ SELECT
11
11
  END ratio
12
12
  FROM
13
13
  pg_statio_user_tables
14
+ WHERE
15
+ schemaname = '%{schema}'
14
16
  ORDER BY
15
17
  idx_blks_hit / (idx_blks_hit + idx_blks_read + 1)::float DESC;
@@ -8,5 +8,6 @@ SELECT
8
8
  idx_scan as index_scans
9
9
  FROM pg_stat_user_indexes ui
10
10
  JOIN pg_index i ON ui.indexrelid = i.indexrelid
11
+ WHERE schemaname = '%{schema}'
11
12
  ORDER BY pg_relation_size(i.indexrelid) / nullif(idx_scan, 0) DESC NULLS FIRST,
12
13
  pg_relation_size(i.indexrelid) DESC;
@@ -1,4 +1,4 @@
1
- /* Index hit rate (effective databases are at 99% and up) */
1
+ /* Index hit rate (effective databases are at 99 percent and up) */
2
2
 
3
3
  SELECT relname,
4
4
  CASE idx_scan
@@ -8,5 +8,7 @@ SELECT relname,
8
8
  n_live_tup rows_in_table
9
9
  FROM
10
10
  pg_stat_user_tables
11
+ WHERE
12
+ schemaname = '%{schema}'
11
13
  ORDER BY
12
14
  n_live_tup DESC;
@@ -5,5 +5,7 @@ SELECT
5
5
  n_live_tup AS estimated_count
6
6
  FROM
7
7
  pg_stat_user_tables
8
+ WHERE
9
+ schemaname = '%{schema}'
8
10
  ORDER BY
9
11
  n_live_tup DESC;
@@ -4,4 +4,6 @@ SELECT relname AS name,
4
4
  seq_scan as count
5
5
  FROM
6
6
  pg_stat_user_tables
7
+ WHERE
8
+ schemaname = '%{schema}'
7
9
  ORDER BY seq_scan DESC;
@@ -11,5 +11,7 @@ SELECT
11
11
  END ratio
12
12
  FROM
13
13
  pg_statio_user_tables
14
+ WHERE
15
+ schemaname = '%{schema}'
14
16
  ORDER BY
15
17
  heap_blks_hit / (heap_blks_hit + heap_blks_read + 1)::float DESC;
@@ -4,4 +4,6 @@ SELECT relname AS name,
4
4
  idx_scan as count
5
5
  FROM
6
6
  pg_stat_user_tables
7
+ WHERE
8
+ schemaname = '%{schema}'
7
9
  ORDER BY idx_scan DESC;
@@ -1,3 +1,3 @@
1
1
  /* List all the tables. */
2
2
 
3
- select relname as tablename, schemaname from pg_statio_user_tables;
3
+ select relname as tablename, schemaname from pg_statio_user_tables where schemaname = '%{schema}';
@@ -12,5 +12,6 @@ SELECT
12
12
  FROM pg_stat_user_indexes ui
13
13
  JOIN pg_index i ON ui.indexrelid = i.indexrelid
14
14
  WHERE NOT indisunique AND idx_scan < %{max_scans} AND pg_relation_size(relid) > 5 * 8192
15
+ AND schemaname = '%{schema}'
15
16
  ORDER BY pg_relation_size(i.indexrelid) / nullif(idx_scan, 0) DESC NULLS FIRST,
16
17
  pg_relation_size(i.indexrelid) DESC;
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module RubyPgExtras
4
- VERSION = "4.4.4"
4
+ VERSION = "4.5.0"
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ruby-pg-extras
3
3
  version: !ruby/object:Gem::Version
4
- version: 4.4.4
4
+ version: 4.5.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - pawurb
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-03-24 00:00:00.000000000 Z
11
+ date: 2022-04-08 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: pg