active-record-query-count 0.1.9 → 0.1.10

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 7c046d3b131f42ddba7b95dfb268363e8125fb6db8409874391f5b52e49a6a05
4
- data.tar.gz: 6d78754de10ab33e69fe52af796b5da3d7aaaf57dca845900ac5e020a4ed2830
3
+ metadata.gz: 5e096d3cec37f7e239d764e55922750e755f465ef3dedbcf8f6108c108502426
4
+ data.tar.gz: e4ca222c0281cdc061611677b326eb48a726bbb021fea3557dbb2244c110c180
5
5
  SHA512:
6
- metadata.gz: 97d92a02a56f4a20c8a93cef3fb3484ccabd7c8c34b8773782b2e50734f02bb6c85d4872f82a70a4d628ed46554d7b27cd81827a3320af1723f02dfc597d834b
7
- data.tar.gz: dcffef1c47d8aa2449785ac6a5eae8da89b1910792840815cf66d2f7ba9bd763e70bced85396919e987885ec10c9b50aa9ccf0e09db3b80c0914dbb4a9da427f
6
+ metadata.gz: 7dd1128fc0fd3353c057a9cf385be6d48bc4281283e342fe0502847fa250a32635f22a7f524a837fb41000072386d03abbc9fe98e8f6f62eb1e004a5600d42b3
7
+ data.tar.gz: ac9537f52f0bbce5a36c063b3156ea5826f529b76509a205a44907136c2f45f7259528ba357338de01613d7808527eeb4f5ff9aa15c2173b99014e4ffebf5cea
data/README.md CHANGED
@@ -94,7 +94,7 @@ If you use `html` with WSL enviroment, you need to set on your enviroments varia
94
94
 
95
95
  ### Configuration options
96
96
 
97
- When visualizing the html table or the console output, tables with less than `ignore_table_count` will not be shown. Also, the amount of locations to show is given by `max_locations_per_table`
97
+ When visualizing the html table or the console output, tables with less than `ignore_table_count` will not be shown. Also, the amount of locations to show is given by `max_locations_per_table`. If `max_locations_per_table` is set to 0, all locations will be displayed without any limit.
98
98
 
99
99
  ```ruby
100
100
  config.after_initialize do
@@ -5,8 +5,12 @@
5
5
  <h2>Query Count Report</h2>
6
6
  <p>Total number of queries in this process: <%= total_query_count %></p>
7
7
  <p>Total time spent on queries in this process (ms): <%= total_duration_time %></p>
8
- <p>Only tables with <%= ::ActiveRecordQueryCount::Configuration.ignore_table_count %> or more queries will be displayed.</p>
8
+ <% if ::ActiveRecordQueryCount::Configuration.ignore_table_count > 1 %>
9
+ <p>Only tables with <%= ::ActiveRecordQueryCount::Configuration.ignore_table_count %> or more queries will be displayed.</p>
10
+ <% end %>
11
+ <% unless ::ActiveRecordQueryCount::Configuration.unlimited_locations_per_table? %>
9
12
  <p>The top <%= ::ActiveRecordQueryCount::Configuration.max_locations_per_table %> locations with the highest occurrences will be shown for each table.</p>
13
+ <% end %>
10
14
  <button id="toggleButton" onclick="toggleView()">Show Chart View</button>
11
15
  <button id="toggleColumnButton" onclick="toggleColumnContent()">Show SQL</button>
12
16
 
@@ -19,5 +19,9 @@ module ActiveRecordQueryCount
19
19
  def self.ignore_table_count
20
20
  ENV['QUERY_COUNT_IGNORE_TABLE_COUNT'] || @@ignore_table_count
21
21
  end
22
+
23
+ def self.unlimited_locations_per_table?
24
+ max_locations_per_table.zero?
25
+ end
22
26
  end
23
27
  end
@@ -19,6 +19,8 @@ module ActiveRecordQueryCount
19
19
  end
20
20
  data = data.select { |_, v| v[:count] >= Configuration.ignore_table_count }
21
21
  data = data.sort_by { |_, v| -v[:count] }.each do |_category, info|
22
+ next if Configuration.max_locations_per_table.zero?
23
+
22
24
  info[:location] = info[:location].sort_by do |_, detail|
23
25
  -detail[:count]
24
26
  end.first(Configuration.max_locations_per_table).to_h
@@ -11,8 +11,12 @@ module ActiveRecordQueryCount
11
11
  data = filter_data(@data)
12
12
  puts '[ActiveRecordQueryCount] Query count per table:'.colorize(:blue)
13
13
  puts "Total query count: #{data.values.sum { |v| v[:count] }}\n\n"
14
- puts "All tables with less than #{Configuration.ignore_table_count} queries are ignored. \n\n"
15
- puts "For each table, the top #{Configuration.max_locations_per_table} locations with the most queries will be shown.\n\n"
14
+ if Configuration.ignore_table_count > 1
15
+ puts "All tables with less than #{Configuration.ignore_table_count} queries are ignored. \n\n"
16
+ end
17
+ unless Configuration.unlimited_locations_per_table?
18
+ puts "For each table, the top #{Configuration.max_locations_per_table} locations with the most queries will be shown.\n\n"
19
+ end
16
20
  data.each do |category, info|
17
21
  puts "Table #{category.colorize(:cyan)}"
18
22
  puts " Total query count: #{info[:count].to_s.colorize(:blue)}"
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module ActiveRecordQueryCount
4
- VERSION = '0.1.9'
4
+ VERSION = '0.1.10'
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: active-record-query-count
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.9
4
+ version: 0.1.10
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jose Lara
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2025-02-24 00:00:00.000000000 Z
11
+ date: 2025-04-02 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activesupport
@@ -293,7 +293,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
293
293
  - !ruby/object:Gem::Version
294
294
  version: '0'
295
295
  requirements: []
296
- rubygems_version: 3.4.10
296
+ rubygems_version: 3.5.15
297
297
  signing_key:
298
298
  specification_version: 4
299
299
  summary: Display an overview of the quantity of queries being made and their origins