sidekiq-logstash 3.1.0 → 3.2.1

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: '09e505554a5ed16d442f68da725e3647a2cd77d12f36897a657d54ff8a3cb8b8'
4
- data.tar.gz: 917723b1952886cfd29070668209e254198d2d9f3d2807aabbd10af0a5b46608
3
+ metadata.gz: 5a83b2031669c8519371e3b02819cc9646488ffa1bfd3cbcb7fe679f61c8b05e
4
+ data.tar.gz: c638f2ad14e73977de141ae082b1b68bd87b0186c6e81507b5e6c564171c5c26
5
5
  SHA512:
6
- metadata.gz: f168b77deb49ef0eab0ff308ddfc8539d2b9cf6e1756373ed82301b5a7d5ac063ebefb16fd8a9941b4f0995066b5afcae54b8c9abf6caa1eea190841ca192c15
7
- data.tar.gz: ad292af73bb01ef763a1e171d1e960c345775db0128f2d904f32ee7166a654a33c065f2d0838c766e2f4057d5a84c054051c21e1945e1728ebb92bfbbb7018ce
6
+ metadata.gz: 2bce930465248b9328c29eb593802ec0b90be6265a9efa9e079245c5b84c06eed11166b4e0e9afc283292c6fef1e75cd1e95825dd869726995925b6d96f8dbfa
7
+ data.tar.gz: 5eb1304578dceac2d372e4dc794cc118f88e73e13784646d5582185329f0ffddfd57759464c9a8606640e2027beca72d9e91cd18f00dd61de7e3d7630b30301f
data/.rubocop.yml CHANGED
@@ -13,6 +13,9 @@ Metrics/BlockLength:
13
13
  Exclude:
14
14
  - spec/**/*.rb
15
15
 
16
+ Metrics/ModuleLength:
17
+ Enabled: false
18
+
16
19
  Layout/LineLength:
17
20
  Max: 120
18
21
  Exclude:
data/README.md CHANGED
@@ -83,6 +83,13 @@ Sidekiq::Logstash.configure do |config|
83
83
  # by default, sidekiq-logstash removes the default error handler
84
84
  # to keep it, simply set this to true
85
85
  config.keep_default_error_handler = true
86
+
87
+ # To enable a log structure that includes details about exception causes,
88
+ # uncomment the following lines:
89
+ #
90
+ # config.log_job_exception_with_causes = true
91
+ # # To specify the maximum depth of causes to log:
92
+ # config.causes_logging_max_depth = 3 # Default is 2
86
93
  end
87
94
  ```
88
95
 
@@ -0,0 +1,36 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Sidekiq
4
+ module Logging
5
+ # Utility that allows us to get a hash representation of an exception
6
+ module ExceptionUtils
7
+ module_function
8
+
9
+ def get_exception_with_cause_hash(exc, parent_backtrace = nil, max_depth_left: 1)
10
+ error_hash = {
11
+ 'class' => exc.class.to_s,
12
+ 'message' => exc.message,
13
+ 'backtrace' => backtrace_for(exc, parent_backtrace)
14
+ }
15
+
16
+ if (cause = exc.cause) && max_depth_left.positive?
17
+ # Pass the current backtrace as the parent_backtrace to the cause to shorten cause's backtrace list
18
+ error_hash['cause'] = get_exception_with_cause_hash(cause, exc.backtrace, max_depth_left: max_depth_left - 1)
19
+ end
20
+
21
+ error_hash
22
+ end
23
+
24
+ def backtrace_for(exception, parent_backtrace = nil)
25
+ backtrace = exception.backtrace || []
26
+ if parent_backtrace
27
+ common_lines = backtrace.reverse.zip(parent_backtrace.reverse).take_while { |a, b| a == b }
28
+
29
+ backtrace = backtrace[0...-common_lines.length] if common_lines.any?
30
+ end
31
+
32
+ backtrace
33
+ end
34
+ end
35
+ end
36
+ end
@@ -1,5 +1,7 @@
1
1
  # frozen_string_literal: true
2
2
 
3
+ require 'sidekiq/logging/exception_utils'
4
+
3
5
  module Sidekiq
4
6
  module Logging
5
7
  # Shared module with all the logics used by job loggers.
@@ -50,10 +52,24 @@ module Sidekiq
50
52
  payload['message'] += ": fail: #{payload['duration']} sec"
51
53
  payload['job_status'] = 'fail'
52
54
 
53
- exc = exc.cause || exc if exc.is_a? Sidekiq::JobRetry::Handled
54
- payload['error_message'] = exc.message
55
- payload['error'] = exc.class
56
- payload['error_backtrace'] = %('#{exc.backtrace.join("\n")}')
55
+ config = Sidekiq::Logstash.configuration
56
+ if config.log_job_exception_with_causes
57
+ payload['error'] = Sidekiq::Logging::ExceptionUtils.get_exception_with_cause_hash(
58
+ exc, max_depth_left: config.causes_logging_max_depth
59
+ )
60
+ else
61
+ exc = exc.cause || exc if exc.is_a? Sidekiq::JobRetry::Handled
62
+ payload['error_message'] = exc.message
63
+ payload['error'] = exc.class.to_s
64
+ payload['error_backtrace'] = %('#{exc.backtrace.join("\n")}')
65
+ if (cause = exc.cause)
66
+ payload['error_cause'] = {
67
+ 'class' => cause.class.to_s,
68
+ 'message' => cause.message,
69
+ 'backtrace' => Sidekiq::Logging::ExceptionUtils.backtrace_for(cause, exc.backtrace)
70
+ }
71
+ end
72
+ end
57
73
 
58
74
  process_payload(payload)
59
75
  end
@@ -4,11 +4,18 @@ module Sidekiq
4
4
  module Logstash
5
5
  # Class that allows to configure the gem behaviour.
6
6
  class Configuration
7
- attr_accessor :custom_options, :filter_args, :job_start_log, :keep_default_error_handler
7
+ attr_accessor :custom_options,
8
+ :filter_args,
9
+ :job_start_log,
10
+ :keep_default_error_handler,
11
+ :log_job_exception_with_causes,
12
+ :causes_logging_max_depth
8
13
 
9
14
  def initialize
10
15
  @filter_args = []
11
16
  @job_start_log = false
17
+ @log_job_exception_with_causes = false
18
+ @causes_logging_max_depth = 2
12
19
  end
13
20
 
14
21
  # Added to ensure custom_options is a Proc
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Sidekiq
4
4
  module Logstash
5
- VERSION = '3.1.0'
5
+ VERSION = '3.2.1'
6
6
  end
7
7
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: sidekiq-logstash
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.1.0
4
+ version: 3.2.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Mattia Giuffrida
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-09-03 00:00:00.000000000 Z
11
+ date: 2024-12-03 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: logstash-event
@@ -61,6 +61,7 @@ files:
61
61
  - bin/setup
62
62
  - bin/test_console
63
63
  - lib/sidekiq/logging/argument_filter.rb
64
+ - lib/sidekiq/logging/exception_utils.rb
64
65
  - lib/sidekiq/logging/logstash_formatter.rb
65
66
  - lib/sidekiq/logging/shared.rb
66
67
  - lib/sidekiq/logstash.rb