ruby-pg-extras 3.2.3 → 3.2.4

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: f1b62064eec105b0cc3efab13c7cb11bbe0421e3cda0bf6f6cd21fdb2fb48a3a
4
- data.tar.gz: e264e506bdbf0d3a782fd23437dd512f981782355521e6d83904750ede326011
3
+ metadata.gz: 297e1a74d8dc954314ed77c2da55a95747e33e0b5157c8371cc0f76efe6b9566
4
+ data.tar.gz: c11d9386d656671bf2adb0e15457df3cc6015104c6e6ba2e0634c67ee1fcbbe0
5
5
  SHA512:
6
- metadata.gz: 28c5d62d95d875b4a879598fe1d02695877f7d87614c2f8d93cc35b5cfb96b80cf29b640a45034c393e89cdaf795da2dc9cd5ed934b073892c6f687609fc4027
7
- data.tar.gz: f0215c2441ef1d2f05b8ecdeff8cb80dce3cfdb9e4dc2a699368b06ed88aba980dadc749ca562fd93118c50250e8bc69827e8ea8412c7afa60897b50e93e4a8e
6
+ metadata.gz: 2e3891c10419e58bc53e47394c12032fbcce5fdb68ac82bc98e38c4b7f98a07087899bb83861b783de449fe03153d062eaf4a252db1a6939245889b1435c1bb8
7
+ data.tar.gz: 9dbdf383fa6b81dbdcc09e79e7e88660b4a3c802559525c99f41757b8e46a0061c896b213f0b0aa7910b570c313f717f449dbd20a1da81fe7478652f45fba5a8
data/README.md CHANGED
@@ -112,6 +112,38 @@ Keep reading to learn about methods that `diagnose` uses under the hood.
112
112
 
113
113
  ## Available methods
114
114
 
115
+ ### `table_info`
116
+
117
+ This method displays metadata metrics for all or a selected table. You can use it to check the table's size, its cache hit metrics, and whether it is correctly indexed. Many sequential scans or no index scans are potential indicators of misconfigured indexes. This method aggregates data provided by other methods in an easy to analyze summary format.
118
+
119
+ ```ruby
120
+ RubyPGExtras.table_info(args: { table_name: "users" })
121
+
122
+ | Table name | Table size | Table cache hit | Indexes cache hit | Estimated rows | Sequential scans | Indexes scans |
123
+ +------------+------------+-------------------+--------------------+----------------+------------------+---------------+
124
+ | users | 2432 kB | 0.999966685701511 | 0.9988780464661853 | 16650 | 2128 | 512496 |
125
+
126
+ ```
127
+
128
+ ### `index_info`
129
+
130
+ This method returns summary info about database indexes. You can check index size, how often it is used and what percentage of its total size are NULL values. Like the previous method, it aggregates data from other helper methods in an easy-to-digest format.
131
+
132
+ ```ruby
133
+
134
+ RubyPGExtras.index_info(args: { table_name: "users" })
135
+
136
+ | Index name | Table name | Columns | Index size | Index scans | Null frac |
137
+ +-------------------------------+------------+----------------+------------+-------------+-----------+
138
+ | users_pkey | users | id | 1152 kB | 163007 | 0.00% |
139
+ | index_users_on_slack_id | users | slack_id | 1080 kB | 258870 | 0.00% |
140
+ | index_users_on_team_id | users | team_id | 816 kB | 70962 | 0.00% |
141
+ | index_users_on_uuid | users | uuid | 1032 kB | 0 | 0.00% |
142
+ | index_users_on_block_uuid | users | block_uuid | 776 kB | 19502 | 100.00% |
143
+ | index_users_on_api_auth_token | users | api_auth_token | 1744 kB | 156 | 0.00% |
144
+
145
+ ```
146
+
115
147
  ### `cache_hit`
116
148
 
117
149
  ```ruby
@@ -28,7 +28,7 @@ module RubyPGExtras
28
28
  end.fetch("index_scans", "N/A"),
29
29
  null_frac: null_indexes_data.find do |el|
30
30
  el.fetch("index") == index_name
31
- end&.fetch("null_frac", "N/A").strip || "0.00%"
31
+ end&.fetch("null_frac", "N/A")&.strip || "0.00%"
32
32
  }
33
33
  end
34
34
  end
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module RubyPGExtras
4
- VERSION = "3.2.3"
4
+ VERSION = "3.2.4"
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: 3.2.3
4
+ version: 3.2.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - pawurb
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-12-18 00:00:00.000000000 Z
11
+ date: 2021-12-21 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: pg