semantic_logger_ecs_addon 0.1.8 → 0.1.9

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: d97e95704e7b702f7b074ca810b708b2ed4525f724d513aa8c1a85b96b0946b4
4
- data.tar.gz: d3d1a40446ac60bfa744475a08bb7a1e788d886bb540a09cf015a61ebb8ee3c4
3
+ metadata.gz: f53530b3500cfdea92d84066a209c2c3f449b44adea38e425d88bed41424bf3e
4
+ data.tar.gz: b766fb2e188d3e65efe102c32f917f005278220be28ce8110b7a9026d8610356
5
5
  SHA512:
6
- metadata.gz: 6b71ec9ad44a55906324767394a92c622b69f877c80d4d8b2b7460cd10247ae6ec29f6eb438a803598160e37fc1f3a86d80e47d7d186998fcce0b17f4920db52
7
- data.tar.gz: 7b1c09644d4618f74a4e487468dc8059986221bc013f1024ef6b9fd33bb436237486612483b6247823b89bd3644959ecf898431af41fce0b029c2981319d94b7
6
+ metadata.gz: 4117727bccc4493029e20622f19ce10c284a39a73d680fdc76f4e6e875734a3d76f8343bf1a90ef77fed2b65b99db19f593fbb98b6bf1dcdee09eb9b5657f66f
7
+ data.tar.gz: 98ae627d2a8793e7b00c30f4da865c81dfef64642402a070cc436ebefbaf9d62ec74973fd6be736e190383d78295efea09adb02ff9ca535e4c8d9dfc33064e92
checksums.yaml.gz.sig CHANGED
Binary file
@@ -1,91 +1,91 @@
1
- # frozen_string_literal: true
2
-
3
- if defined?(Sequel) && defined? ActiveSupport::LogSubscriber
4
- module RailsSemanticLogger
5
- module Sequel
6
- class LogSubscriber < ActiveSupport::LogSubscriber
7
- class << self
8
- attr_reader :logger
9
- end
10
-
11
- def self.runtime= value
12
- # ::ActiveRecord::RuntimeRegistry.sql_runtime = value
13
- RequestStore.store[:sql_runtime] = value
14
- end
15
-
16
- def self.runtime
17
- # ::ActiveRecord::RuntimeRegistry.sql_runtime ||= 0
18
- RequestStore.fetch(:sql_runtime) { 0 }
19
- end
20
-
21
- def self.count= value
22
- RequestStore.store[:sql_count] = value
23
- end
24
-
25
- def self.count
26
- RequestStore.fetch(:sql_count) { 0 }
27
- end
28
-
29
- def self.reset_runtime
30
- previous = runtime
31
- self.runtime = 0
32
- previous
33
- end
34
-
35
- def self.reset_count
36
- previous = count
37
- self.count = 0
38
- previous
39
- end
40
-
41
- def sql event
42
- self.class.runtime += event.duration
43
- self.class.count += 1
44
- return unless logger.debug?
45
-
46
- payload = event.payload
47
- name = payload[:name]
48
-
49
- log_payload = {sql: payload[:sql].squeeze(" ")}
50
- log_payload[:binds] = bind_values payload unless (payload[:binds] || []).empty?
51
- log_payload[:allocations] = event.allocations if event.respond_to? :allocations
52
- log_payload[:cached] = event.payload[:cached]
53
-
54
- log = {message: name, payload: log_payload, duration: event.duration}
55
-
56
- # Log the location of the query itself.
57
- if logger.send(:level_index) >= SemanticLogger.backtrace_level_index
58
- log[:backtrace] = SemanticLogger::Utils.strip_backtrace caller
59
- end
60
-
61
- logger.debug log
62
- end
63
-
64
- private
65
-
66
- @logger = SemanticLogger["Sequel"]
67
-
68
- # When multiple values are received for a single bound field, it is converted into an array
69
- def add_bind_value binds, key, value
70
- key = key.downcase.to_sym unless key.nil?
71
- value = (Array(binds[key]) << value) if binds.key? key
72
- binds[key] = value
73
- end
74
-
75
- def logger
76
- self.class.logger
77
- end
78
-
79
- def bind_values payload
80
- binds = {}
81
- binds = " " + payload[:binds].map { |col, v| [col.name, v] }
82
- .inspect
83
- payload[:binds].each { |col, value| add_bind_value binds, col.name, value }
84
- binds
85
- end
86
- end
87
- end
88
- end
89
-
90
- RailsSemanticLogger::Sequel::LogSubscriber.attach_to :sequel
91
- end
1
+ # # frozen_string_literal: true
2
+
3
+ # if defined?(Sequel) && defined? ActiveSupport::LogSubscriber
4
+ # module RailsSemanticLogger
5
+ # module Sequel
6
+ # class LogSubscriber < ActiveSupport::LogSubscriber
7
+ # class << self
8
+ # attr_reader :logger
9
+ # end
10
+
11
+ # def self.runtime= value
12
+ # # ::ActiveRecord::RuntimeRegistry.sql_runtime = value
13
+ # RequestStore.store[:sql_runtime] = value
14
+ # end
15
+
16
+ # def self.runtime
17
+ # # ::ActiveRecord::RuntimeRegistry.sql_runtime ||= 0
18
+ # RequestStore.fetch(:sql_runtime) { 0 }
19
+ # end
20
+
21
+ # def self.count= value
22
+ # RequestStore.store[:sql_count] = value
23
+ # end
24
+
25
+ # def self.count
26
+ # RequestStore.fetch(:sql_count) { 0 }
27
+ # end
28
+
29
+ # def self.reset_runtime
30
+ # previous = runtime
31
+ # self.runtime = 0
32
+ # previous
33
+ # end
34
+
35
+ # def self.reset_count
36
+ # previous = count
37
+ # self.count = 0
38
+ # previous
39
+ # end
40
+
41
+ # def sql event
42
+ # self.class.runtime += event.duration
43
+ # self.class.count += 1
44
+ # return unless logger.debug?
45
+
46
+ # payload = event.payload
47
+ # name = payload[:name]
48
+
49
+ # log_payload = {sql: payload[:sql].squeeze(" ")}
50
+ # log_payload[:binds] = bind_values payload unless (payload[:binds] || []).empty?
51
+ # log_payload[:allocations] = event.allocations if event.respond_to? :allocations
52
+ # log_payload[:cached] = event.payload[:cached]
53
+
54
+ # log = {message: name, payload: log_payload, duration: event.duration}
55
+
56
+ # # Log the location of the query itself.
57
+ # if logger.send(:level_index) >= SemanticLogger.backtrace_level_index
58
+ # log[:backtrace] = SemanticLogger::Utils.strip_backtrace caller
59
+ # end
60
+
61
+ # logger.debug log
62
+ # end
63
+
64
+ # private
65
+
66
+ # @logger = SemanticLogger["Sequel"]
67
+
68
+ # # When multiple values are received for a single bound field, it is converted into an array
69
+ # def add_bind_value binds, key, value
70
+ # key = key.downcase.to_sym unless key.nil?
71
+ # value = (Array(binds[key]) << value) if binds.key? key
72
+ # binds[key] = value
73
+ # end
74
+
75
+ # def logger
76
+ # self.class.logger
77
+ # end
78
+
79
+ # def bind_values payload
80
+ # binds = {}
81
+ # binds = " " + payload[:binds].map { |col, v| [col.name, v] }
82
+ # .inspect
83
+ # payload[:binds].each { |col, value| add_bind_value binds, col.name, value }
84
+ # binds
85
+ # end
86
+ # end
87
+ # end
88
+ # end
89
+
90
+ # RailsSemanticLogger::Sequel::LogSubscriber.attach_to :sequel
91
+ # end
@@ -5,7 +5,7 @@ module SemanticLoggerEcsAddon
5
5
  module Identity
6
6
  NAME = "semantic_logger_ecs_addon"
7
7
  LABEL = "Semantic Logger Ecs Addon"
8
- VERSION = "0.1.8"
8
+ VERSION = "0.1.9"
9
9
  VERSION_LABEL = "#{LABEL} #{VERSION}"
10
10
  SUMMARY = "A semantic logger formatter that formats the logs according to Elastic Common Schema, adds APM trace data if ElasticAPM is enabled and instruments sequel logs for rails if available."
11
11
  end
@@ -1,35 +1,35 @@
1
- # frozen_string_literal: true
1
+ # # frozen_string_literal: true
2
2
 
3
- if defined?(Sequel) && defined?(ActiveSupport::Notifications)
4
- require "sequel/database/logging"
3
+ # if defined?(Sequel) && defined?(ActiveSupport::Notifications)
4
+ # require "sequel/database/logging"
5
5
 
6
- module Sequel
7
- class Database
8
- def log_connection_yield sql, conn, args = nil
9
- log_connection_info = (connection_info conn if conn && log_connection_info)
10
- log_args = ("; #{args.inspect}" if args)
11
- sql_for_log = "#{log_connection_info}#{sql}#{log_args}"
12
- start = Time.now
13
- begin
14
- ::ActiveSupport::Notifications.instrument(
15
- "sql.sequel",
16
- sql: sql,
17
- name: self.class,
18
- binds: args
19
- ) do
20
- yield
21
- end
22
- rescue StandardError => error
23
- log_exception error, sql_for_log unless @loggers.empty?
24
- raise
25
- ensure
26
- log_duration Time.now - start, sql_for_log unless error || @loggers.empty?
27
- end
28
- end
6
+ # module Sequel
7
+ # class Database
8
+ # def log_connection_yield sql, conn, args = nil
9
+ # log_connection_info = (connection_info conn if conn && log_connection_info)
10
+ # log_args = ("; #{args.inspect}" if args)
11
+ # sql_for_log = "#{log_connection_info}#{sql}#{log_args}"
12
+ # start = Time.now
13
+ # begin
14
+ # ::ActiveSupport::Notifications.instrument(
15
+ # "sql.sequel",
16
+ # sql: sql,
17
+ # name: self.class,
18
+ # binds: args
19
+ # ) do
20
+ # yield
21
+ # end
22
+ # rescue StandardError => error
23
+ # log_exception error, sql_for_log unless @loggers.empty?
24
+ # raise
25
+ # ensure
26
+ # log_duration Time.now - start, sql_for_log unless error || @loggers.empty?
27
+ # end
28
+ # end
29
29
 
30
- def log_yield sql, args = nil, &block
31
- log_connection_yield(sql, nil, args, &block)
32
- end
33
- end
34
- end
35
- end
30
+ # def log_yield sql, args = nil, &block
31
+ # log_connection_yield(sql, nil, args, &block)
32
+ # end
33
+ # end
34
+ # end
35
+ # end
@@ -1,65 +1,65 @@
1
- # frozen_string_literal: true
1
+ # # frozen_string_literal: true
2
2
 
3
- if defined?(Sequel) && defined?(ActionController)
4
- require "active_support/core_ext/module/attr_internal"
5
- unless defined?(RailsSemanticLogger::Sequel::LogSubscriber)
6
- require_relative "../../rails_semantic_logger/sequel/log_subscriber"
7
- end
3
+ # if defined?(Sequel) && defined?(ActionController)
4
+ # require "active_support/core_ext/module/attr_internal"
5
+ # unless defined?(RailsSemanticLogger::Sequel::LogSubscriber)
6
+ # require_relative "../../rails_semantic_logger/sequel/log_subscriber"
7
+ # end
8
8
 
9
- module Sequel
10
- module Railties
11
- module ControllerRuntime
12
- extend ActiveSupport::Concern
9
+ # module Sequel
10
+ # module Railties
11
+ # module ControllerRuntime
12
+ # extend ActiveSupport::Concern
13
13
 
14
- module ClassMethods
15
- def log_process_action payload
16
- messages = super
17
- db_runtime = payload[:db_runtime]
18
- db_query_count = payload[:db_query_count]
19
- if db_runtime && db_query_count
20
- messages << (format "Sequel: %.1fms & %d queries", db_runtime.to_f, db_query_count)
21
- end
22
- messages
23
- end
24
- end
14
+ # module ClassMethods
15
+ # def log_process_action payload
16
+ # messages = super
17
+ # db_runtime = payload[:db_runtime]
18
+ # db_query_count = payload[:db_query_count]
19
+ # if db_runtime && db_query_count
20
+ # messages << (format "Sequel: %.1fms & %d queries", db_runtime.to_f, db_query_count)
21
+ # end
22
+ # messages
23
+ # end
24
+ # end
25
25
 
26
- private
26
+ # private
27
27
 
28
- attr_internal :db_runtime, :db_query_count
28
+ # attr_internal :db_runtime, :db_query_count
29
29
 
30
- def process_action action, *args
31
- # We also need to reset the runtime before each action
32
- # because of queries in middleware or in cases we are streaming
33
- # and it won't be cleaned up by the method below.
34
- RailsSemanticLogger::Sequel::LogSubscriber.reset_runtime
35
- RailsSemanticLogger::Sequel::LogSubscriber.reset_count
36
- super
37
- end
30
+ # def process_action action, *args
31
+ # # We also need to reset the runtime before each action
32
+ # # because of queries in middleware or in cases we are streaming
33
+ # # and it won't be cleaned up by the method below.
34
+ # RailsSemanticLogger::Sequel::LogSubscriber.reset_runtime
35
+ # RailsSemanticLogger::Sequel::LogSubscriber.reset_count
36
+ # super
37
+ # end
38
38
 
39
- def cleanup_view_runtime
40
- if logger && logger.info?
41
- db_rt_before_render = RailsSemanticLogger::Sequel::LogSubscriber.reset_runtime
42
- self.db_runtime = (db_runtime || 0) + db_rt_before_render
43
- runtime = super
44
- db_rt_after_render = RailsSemanticLogger::Sequel::LogSubscriber.reset_runtime
45
- self.db_runtime += db_rt_after_render
46
- runtime - db_rt_after_render
47
- else
48
- super
49
- end
50
- end
39
+ # def cleanup_view_runtime
40
+ # if logger && logger.info?
41
+ # db_rt_before_render = RailsSemanticLogger::Sequel::LogSubscriber.reset_runtime
42
+ # self.db_runtime = (db_runtime || 0) + db_rt_before_render
43
+ # runtime = super
44
+ # db_rt_after_render = RailsSemanticLogger::Sequel::LogSubscriber.reset_runtime
45
+ # self.db_runtime += db_rt_after_render
46
+ # runtime - db_rt_after_render
47
+ # else
48
+ # super
49
+ # end
50
+ # end
51
51
 
52
- def append_info_to_payload payload
53
- super
54
- payload[:db_runtime] =
55
- (db_runtime || 0) + RailsSemanticLogger::Sequel::LogSubscriber.reset_runtime
56
- payload[:db_query_count] =
57
- (db_query_count || 0) + RailsSemanticLogger::Sequel::LogSubscriber.reset_count
58
- end
59
- end
60
- end
61
- end
52
+ # def append_info_to_payload payload
53
+ # super
54
+ # payload[:db_runtime] =
55
+ # (db_runtime || 0) + RailsSemanticLogger::Sequel::LogSubscriber.reset_runtime
56
+ # payload[:db_query_count] =
57
+ # (db_query_count || 0) + RailsSemanticLogger::Sequel::LogSubscriber.reset_count
58
+ # end
59
+ # end
60
+ # end
61
+ # end
62
62
 
63
- ActionController::Base.include Sequel::Railties::ControllerRuntime
64
- ActionController::API.include Sequel::Railties::ControllerRuntime
65
- end
63
+ # ActionController::Base.include Sequel::Railties::ControllerRuntime
64
+ # ActionController::API.include Sequel::Railties::ControllerRuntime
65
+ # end
data.tar.gz.sig CHANGED
Binary file
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: semantic_logger_ecs_addon
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.8
4
+ version: 0.1.9
5
5
  platform: ruby
6
6
  authors:
7
7
  - Sajeev Ramasamy
metadata.gz.sig CHANGED
Binary file