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 +4 -4
- data/README.md +1 -1
- data/assets/template_base_query_counter.html.erb +5 -1
- data/lib/active_record_query_count/configuration.rb +4 -0
- data/lib/active_record_query_count/printer/base.rb +2 -0
- data/lib/active_record_query_count/printer/console.rb +6 -2
- data/lib/active_record_query_count/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 5e096d3cec37f7e239d764e55922750e755f465ef3dedbcf8f6108c108502426
|
4
|
+
data.tar.gz: e4ca222c0281cdc061611677b326eb48a726bbb021fea3557dbb2244c110c180
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
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
|
-
|
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,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
|
-
|
15
|
-
|
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)}"
|
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.
|
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
|
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.
|
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
|