sidekiq-logstash 3.2.0 → 3.3.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 7da540744ff32bbe1218075f40fa979c9b5a9bdb7211c45df40ec8191b2b51cc
4
- data.tar.gz: '09e58a7cd2504538079fc8493e7fef3a59a9217736a0b1bf1425f6ba208f20c8'
3
+ metadata.gz: f64be7ef6c83dfa222803106ef0f335851dcf9711197cc910323f6e73f7b33b0
4
+ data.tar.gz: 9669782de8205832ac862926a024955edb4c994eb7ab2710f1b0e4608895b74a
5
5
  SHA512:
6
- metadata.gz: 746c123b2341c14f1d565d830f489a5eddb6591ba56f6c72ffaafd737524126cd24df17fdc808af5b8271fa88f94c5e5356d37e923ba5327cf849a56080d7d7e
7
- data.tar.gz: f79226102532246d67bffcbe478d6e30781838d995d7c50f627e6a309f49f1a1b347aa7dbc1720733985a217a98d9c97d77db71ff53097d4b29c8fcd217012bc
6
+ metadata.gz: 9121ef3c47bfb9ba1e51ba7b6916cc92e98160efc0b393ead66003534729f92b00732216263812552eab10240f8f9f1664135f48550b81501ec7160d7fd8a103
7
+ data.tar.gz: 172dfaff1de740be03eea5787e0bae44ed766169569dba233c5845a0db48a3e3adfdc8f84be3ae2ca04b3a387193c73c968634eb355e5a322bfcbfe8623f10cd
@@ -21,7 +21,7 @@ jobs:
21
21
  - uses: actions/checkout@v4
22
22
  - uses: ruby/setup-ruby@v1
23
23
  with:
24
- ruby-version: 3
24
+ ruby-version: 3.2
25
25
  bundler-cache: true
26
26
 
27
27
  - name: Run rubocop
@@ -31,7 +31,7 @@ jobs:
31
31
  runs-on: ubuntu-latest
32
32
  strategy:
33
33
  matrix:
34
- ruby: ['3.0', '3.1', '3.2', '3.3']
34
+ ruby: ['3.2', '3.3', '3.4']
35
35
 
36
36
  steps:
37
37
  - uses: actions/checkout@v4
@@ -13,7 +13,7 @@ jobs:
13
13
  - uses: actions/checkout@v4
14
14
  - uses: actions/setup-ruby@v1
15
15
  with:
16
- ruby-version: 3
16
+ ruby-version: 3.2
17
17
 
18
18
  - name: Publish to RubyGems
19
19
  run: |
data/.rubocop.yml CHANGED
@@ -7,7 +7,7 @@ AllCops:
7
7
  DisplayCopNames: true
8
8
  DisplayStyleGuide: true
9
9
  NewCops: enable
10
- TargetRubyVersion: 3.0
10
+ TargetRubyVersion: 3.2
11
11
 
12
12
  Metrics/BlockLength:
13
13
  Exclude:
data/README.md CHANGED
@@ -33,7 +33,7 @@ Sidekiq::Logstash turns your [Sidekiq](https://github.com/mperham/sidekiq) log i
33
33
  Add one of the following lines to your application's Gemfile:
34
34
 
35
35
  ```ruby
36
- gem 'sidekiq-logstash', '~> 3.0' # Sidekiq 7
36
+ gem 'sidekiq-logstash', '~> 3.0' # Sidekiq 7 or 8
37
37
  gem 'sidekiq-logstash', '~> 2.0' # Sidekiq 6
38
38
  gem 'sidekiq-logstash', '< 2' # Sidekiq 5 or older
39
39
  ```
@@ -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
@@ -7,7 +7,7 @@ module Sidekiq
7
7
  # Class that takes a log payload and format it to be Logstash-compatible.
8
8
  class LogstashFormatter
9
9
  def call(severity, _time, _progname, data)
10
- json_data = { severity: severity }
10
+ json_data = { severity: }
11
11
 
12
12
  if data.is_a? Hash
13
13
  json_data.merge!(data)
@@ -1,6 +1,6 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- require 'sidekiq/exception_utils'
3
+ require 'sidekiq/logging/exception_utils'
4
4
 
5
5
  module Sidekiq
6
6
  module Logging
@@ -54,7 +54,7 @@ module Sidekiq
54
54
 
55
55
  config = Sidekiq::Logstash.configuration
56
56
  if config.log_job_exception_with_causes
57
- payload['error'] = ExceptionUtils.get_exception_with_cause_hash(
57
+ payload['error'] = Sidekiq::Logging::ExceptionUtils.get_exception_with_cause_hash(
58
58
  exc, max_depth_left: config.causes_logging_max_depth
59
59
  )
60
60
  else
@@ -66,7 +66,7 @@ module Sidekiq
66
66
  payload['error_cause'] = {
67
67
  'class' => cause.class.to_s,
68
68
  'message' => cause.message,
69
- 'backtrace' => ExceptionUtils.backtrace_for(cause, exc.backtrace)
69
+ 'backtrace' => Sidekiq::Logging::ExceptionUtils.backtrace_for(cause, exc.backtrace)
70
70
  }
71
71
  end
72
72
  end
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Sidekiq
4
4
  module Logstash
5
- VERSION = '3.2.0'
5
+ VERSION = '3.3.0'
6
6
  end
7
7
  end
@@ -8,8 +8,8 @@ module Sidekiq
8
8
  class LogstashJobLogger < ::Sidekiq::JobLogger
9
9
  include Sidekiq::Logging::Shared
10
10
 
11
- def call(job, _queue, &block)
12
- log_job(job, &block)
11
+ def call(job, _queue, &)
12
+ log_job(job, &)
13
13
  end
14
14
  end
15
15
  end
@@ -19,10 +19,10 @@ Gem::Specification.new do |spec|
19
19
 
20
20
  spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
21
21
  spec.require_paths = ['lib']
22
- spec.required_ruby_version = '>= 3.0.0'
22
+ spec.required_ruby_version = '>= 3.2.0'
23
23
 
24
24
  spec.add_dependency 'logstash-event', '~> 1.2'
25
- spec.add_dependency 'sidekiq', '~> 7.0'
25
+ spec.add_dependency 'sidekiq', '~> 8.0'
26
26
 
27
27
  spec.metadata['rubygems_mfa_required'] = 'true'
28
28
  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.2.0
4
+ version: 3.3.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Mattia Giuffrida
8
- autorequire:
8
+ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-11-29 00:00:00.000000000 Z
11
+ date: 2025-04-03 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: logstash-event
@@ -30,14 +30,14 @@ dependencies:
30
30
  requirements:
31
31
  - - "~>"
32
32
  - !ruby/object:Gem::Version
33
- version: '7.0'
33
+ version: '8.0'
34
34
  type: :runtime
35
35
  prerelease: false
36
36
  version_requirements: !ruby/object:Gem::Requirement
37
37
  requirements:
38
38
  - - "~>"
39
39
  - !ruby/object:Gem::Version
40
- version: '7.0'
40
+ version: '8.0'
41
41
  description: 'Sidekiq::Logstash turns your Sidekiq log into an organised, aggregated,
42
42
  JSON-syntax log ready to be sent to a logstash server.
43
43
 
@@ -60,8 +60,8 @@ files:
60
60
  - bin/console
61
61
  - bin/setup
62
62
  - bin/test_console
63
- - lib/sidekiq/exception_utils.rb
64
63
  - lib/sidekiq/logging/argument_filter.rb
64
+ - lib/sidekiq/logging/exception_utils.rb
65
65
  - lib/sidekiq/logging/logstash_formatter.rb
66
66
  - lib/sidekiq/logging/shared.rb
67
67
  - lib/sidekiq/logstash.rb
@@ -74,7 +74,7 @@ licenses:
74
74
  - MIT
75
75
  metadata:
76
76
  rubygems_mfa_required: 'true'
77
- post_install_message:
77
+ post_install_message:
78
78
  rdoc_options: []
79
79
  require_paths:
80
80
  - lib
@@ -82,7 +82,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
82
82
  requirements:
83
83
  - - ">="
84
84
  - !ruby/object:Gem::Version
85
- version: 3.0.0
85
+ version: 3.2.0
86
86
  required_rubygems_version: !ruby/object:Gem::Requirement
87
87
  requirements:
88
88
  - - ">="
@@ -90,7 +90,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
90
90
  version: '0'
91
91
  requirements: []
92
92
  rubygems_version: 3.4.19
93
- signing_key:
93
+ signing_key:
94
94
  specification_version: 4
95
95
  summary: Logstash plugin for Sidekiq
96
96
  test_files: []
@@ -1,32 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- # Utility that allows us to get a hash representation of an exception
4
- module ExceptionUtils
5
- module_function
6
-
7
- def get_exception_with_cause_hash(exc, parent_backtrace = nil, max_depth_left: 1)
8
- error_hash = {
9
- 'class' => exc.class.to_s,
10
- 'message' => exc.message,
11
- 'backtrace' => backtrace_for(exc, parent_backtrace)
12
- }
13
-
14
- if (cause = exc.cause) && max_depth_left.positive?
15
- # Pass the current backtrace as the parent_backtrace to the cause to shorten cause's backtrace list
16
- error_hash['cause'] = get_exception_with_cause_hash(cause, exc.backtrace, max_depth_left: max_depth_left - 1)
17
- end
18
-
19
- error_hash
20
- end
21
-
22
- def backtrace_for(exception, parent_backtrace = nil)
23
- backtrace = exception.backtrace || []
24
- if parent_backtrace
25
- common_lines = backtrace.reverse.zip(parent_backtrace.reverse).take_while { |a, b| a == b }
26
-
27
- backtrace = backtrace[0...-common_lines.length] if common_lines.any?
28
- end
29
-
30
- backtrace
31
- end
32
- end