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 +4 -4
- data/.rubocop.yml +3 -0
- data/README.md +7 -0
- data/lib/sidekiq/logging/exception_utils.rb +36 -0
- data/lib/sidekiq/logging/shared.rb +20 -4
- data/lib/sidekiq/logstash/configuration.rb +8 -1
- data/lib/sidekiq/logstash/version.rb +1 -1
- metadata +3 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 5a83b2031669c8519371e3b02819cc9646488ffa1bfd3cbcb7fe679f61c8b05e
|
4
|
+
data.tar.gz: c638f2ad14e73977de141ae082b1b68bd87b0186c6e81507b5e6c564171c5c26
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2bce930465248b9328c29eb593802ec0b90be6265a9efa9e079245c5b84c06eed11166b4e0e9afc283292c6fef1e75cd1e95825dd869726995925b6d96f8dbfa
|
7
|
+
data.tar.gz: 5eb1304578dceac2d372e4dc794cc118f88e73e13784646d5582185329f0ffddfd57759464c9a8606640e2027beca72d9e91cd18f00dd61de7e3d7630b30301f
|
data/.rubocop.yml
CHANGED
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
|
-
|
54
|
-
|
55
|
-
|
56
|
-
|
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,
|
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
|
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
|
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-
|
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
|