lograge-sql 2.0.0 → 2.1.0
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 +13 -2
- data/lib/lograge/active_record_log_subscriber.rb +16 -1
- data/lib/lograge/sql/version.rb +1 -1
- data/lib/lograge/sql.rb +12 -7
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz: '
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: '0794c5325c6cc647ab9e133b0ac1ebfee558311f12b26861c0776866a6cc27fb'
|
4
|
+
data.tar.gz: b2bae9007ad19926f3ba0fed85bb6a965b942e70a537ed50b4230f071834af8f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 72222b28288cc38a14533c3a3babe408aa2d834dc19ba7f323ac9f7aeca167d55ad7ba2fc3af777e35fa643f7850901378282ee6865bbe4246edc410dff68ad2
|
7
|
+
data.tar.gz: f4a956079f4562b3f24737adc851fb78ca41d70b6e8555e3eda42c436b0c88af28a109d3db4e54c2b36c1d0d21ef67a8c344bcb5a5b22b7884d2b9268fbca0cd
|
data/README.md
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
# Lograge::Sql
|
2
2
|
|
3
3
|
[](https://badge.fury.io/rb/lograge-sql)
|
4
|
-
[](https://github.com/iMacTia/lograge-sql/actions/workflows/ci.yml)
|
5
5
|
|
6
6
|
Lograge::Sql is an extension to the famous [Lograge](https://github.com/roidrage/lograge) gem, which adds SQL queries to the Lograge Event and disable default ActiveRecord logging.
|
7
7
|
This is extremely useful if you're using Lograge together with the ELK stack.
|
@@ -66,6 +66,18 @@ Rails.application.configure do
|
|
66
66
|
end
|
67
67
|
```
|
68
68
|
|
69
|
+
`Lograge-sql` only stores any events by `min_duration_ms` condition.
|
70
|
+
It very helpful if you want to detect `Slow SQL queries`
|
71
|
+
|
72
|
+
```ruby
|
73
|
+
# config/initializers/lograge.rb
|
74
|
+
Rails.application.configure do
|
75
|
+
# Set limitted of SQL duration if you want to filter (unit: milliseconds)
|
76
|
+
# Defaults is zero
|
77
|
+
config.lograge_sql.min_duration_ms = 5000
|
78
|
+
end
|
79
|
+
```
|
80
|
+
|
69
81
|
#### Thread-safety
|
70
82
|
|
71
83
|
[Depending on the web server in your project](https://github.com/steveklabnik/request_store#the-problem) you might benefit from improved thread-safety by adding [`request_store`](https://github.com/steveklabnik/request_store) to your Gemfile. It will be automatically picked up by `lograge-sql`.
|
@@ -73,4 +85,3 @@ end
|
|
73
85
|
## Contributing
|
74
86
|
|
75
87
|
Bug reports and pull requests are welcome on GitHub at https://github.com/iMacTia/lograge-sql.
|
76
|
-
|
@@ -6,11 +6,26 @@ module Lograge
|
|
6
6
|
# Every time there's an SQL query, stores it into the Thread.
|
7
7
|
# They'll later be access from the RequestLogSubscriber.
|
8
8
|
def sql(event)
|
9
|
-
|
9
|
+
increase_runtime_duration(event)
|
10
10
|
return if event.payload[:name] == 'SCHEMA'
|
11
11
|
|
12
|
+
# Only store SQL events if `event.duration` is greater than the configured +min_duration+
|
13
|
+
# No need to check if +min_duration+ is present before as it defaults to 0
|
14
|
+
return if event.duration.to_f.round(2) < Lograge::Sql.min_duration_ms.to_f
|
15
|
+
|
12
16
|
Lograge::Sql.store[:lograge_sql_queries] ||= []
|
13
17
|
Lograge::Sql.store[:lograge_sql_queries] << Lograge::Sql.extract_event.call(event)
|
14
18
|
end
|
19
|
+
|
20
|
+
private
|
21
|
+
|
22
|
+
# Add the event duration to the overall ActiveRecord::LogSubscriber.runtime;
|
23
|
+
# note we don't do this when `keep_default_active_record_log` is enabled,
|
24
|
+
# as ActiveRecord is already adding the duration.
|
25
|
+
def increase_runtime_duration(event)
|
26
|
+
return if Rails.application.config.lograge_sql.keep_default_active_record_log
|
27
|
+
|
28
|
+
ActiveRecord::LogSubscriber.runtime += event.duration
|
29
|
+
end
|
15
30
|
end
|
16
31
|
end
|
data/lib/lograge/sql/version.rb
CHANGED
data/lib/lograge/sql.rb
CHANGED
@@ -11,18 +11,17 @@ module Lograge
|
|
11
11
|
attr_accessor :formatter
|
12
12
|
# Extract information from SQL event
|
13
13
|
attr_accessor :extract_event
|
14
|
+
# Filter SQL events by duration
|
15
|
+
attr_accessor :min_duration_ms
|
14
16
|
|
15
17
|
# Initialise configuration with fallback to default values
|
16
18
|
def setup(config)
|
17
|
-
Lograge::Sql.formatter
|
18
|
-
Lograge::Sql.extract_event
|
19
|
+
Lograge::Sql.formatter = config.formatter || default_formatter
|
20
|
+
Lograge::Sql.extract_event = config.extract_event || default_extract_event
|
21
|
+
Lograge::Sql.min_duration_ms = config.min_duration_ms || 0
|
19
22
|
|
20
23
|
# Disable existing ActiveRecord logging
|
21
|
-
unless config.keep_default_active_record_log
|
22
|
-
ActiveSupport::LogSubscriber.log_subscribers.each do |subscriber|
|
23
|
-
Lograge.unsubscribe(:active_record, subscriber) if subscriber.is_a?(ActiveRecord::LogSubscriber)
|
24
|
-
end
|
25
|
-
end
|
24
|
+
unsubscribe_log_subscribers unless config.keep_default_active_record_log
|
26
25
|
|
27
26
|
return unless defined?(Lograge::ActiveRecordLogSubscriber)
|
28
27
|
|
@@ -51,6 +50,12 @@ module Lograge
|
|
51
50
|
"#{event.payload[:name]} (#{event.duration.to_f.round(2)}) #{event.payload[:sql]}"
|
52
51
|
end
|
53
52
|
end
|
53
|
+
|
54
|
+
def unsubscribe_log_subscribers
|
55
|
+
ActiveSupport::LogSubscriber.log_subscribers.each do |subscriber|
|
56
|
+
Lograge.unsubscribe(:active_record, subscriber) if subscriber.is_a?(ActiveRecord::LogSubscriber)
|
57
|
+
end
|
58
|
+
end
|
54
59
|
end
|
55
60
|
end
|
56
61
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: lograge-sql
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.
|
4
|
+
version: 2.1.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Mattia Giuffrida
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2023-02-25 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: activerecord
|