raygun-apm-sidekiq 1.0.15 → 1.0.16

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: 581ec769754c0244a88fb3f491dd4accc330f2c7e79bbe2edf163db526945730
4
- data.tar.gz: 8bb6329650b61038fda303a779165683adeb00281c103f2edd9778dcb837fab3
3
+ metadata.gz: e8b45cd686413df0cefdc5546fbf08a31e36060b7393e828bd83c19239ad43c0
4
+ data.tar.gz: 1b3662d09b9d64a04539c9f5fceba35d73c34ec1847c492688170ee66de3ff85
5
5
  SHA512:
6
- metadata.gz: e18f9af5fa7d6bcbf1f59d0d60cff3904ad1a8079b19a5133bbbacfc9f60df9b38ea849ccbacb169c38664973f541c51151a7ca3ce60237bb25eb7ff4750c150
7
- data.tar.gz: 7833146aa6710d8fc118dcd80349caa3eff5c7007f24616621c059f51204335e5e86333813b45841455ba8ca12255aa74f70c026e28a83d77cc082a2e00d3307
6
+ metadata.gz: dce241ad3576c65f8943d666b22db69b715fb1baa898a44f68ea16a03cb8e2ab35615cba1c47b61f5e05072a5a06f9458c871c3cede06683b88c383f51f49677
7
+ data.tar.gz: 2263c613a2deefeab136f326cf5a7cc2500975a587a4be6f9754fdc21688730312fcdece83c66c242cb827c90085539c1e28d502eee4f7cbe35664b73f668b1a
@@ -1,5 +1,10 @@
1
1
  = Changelog
2
2
 
3
+ == 1.0.16 (June 8, 2020)
4
+
5
+ * Integrate exception correlation with rayrun4ruby
6
+ * Move raygun4ruby whitelisting and blacklisting out to profiler core
7
+
3
8
  == 1.0.15 (May 17, 2020)
4
9
 
5
10
  * Remove the Tracer#process_started callback (set on begin transaction command now)
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- raygun-apm-sidekiq (1.0.15)
4
+ raygun-apm-sidekiq (1.0.16)
5
5
  raygun-apm (~> 1.0.15)
6
6
 
7
7
  GEM
@@ -9,7 +9,7 @@ GEM
9
9
  specs:
10
10
  minitest (5.13.0)
11
11
  rake (10.5.0)
12
- raygun-apm (1.0.38-universal-darwin)
12
+ raygun-apm (1.0.43-universal-darwin)
13
13
 
14
14
  PLATFORMS
15
15
  ruby
@@ -7,12 +7,7 @@ module Raygun
7
7
 
8
8
  BLACKLIST = %w{
9
9
  Sidekiq
10
- Redis
11
- Raygun::Breadcrumbs
12
- Raygun::Configuration
13
- Raygun::config
14
10
  +Raygun::Apm::Sidekiq::Hook::Ruby_APM_profiler_trace
15
- +Raygun::track_exception
16
11
  }
17
12
 
18
13
  end
@@ -9,6 +9,11 @@ module Raygun
9
9
  # Explictly enable instrumenting HTTP until a good control API is figured out
10
10
  require "raygun/apm/hooks/net_http"
11
11
  require "raygun/apm/hooks/redis" if defined?(Redis::Client)
12
+ # Attempt to explicitly require the raygun4ruby sidekiq integration
13
+ begin
14
+ require "raygun/sidekiq"
15
+ rescue LoadError
16
+ end
12
17
  end
13
18
  end
14
19
  end
@@ -1,7 +1,7 @@
1
1
  module Raygun
2
2
  module Apm
3
3
  module Sidekiq
4
- VERSION = "1.0.15"
4
+ VERSION = "1.0.16"
5
5
  end
6
6
  end
7
7
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: raygun-apm-sidekiq
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.15
4
+ version: 1.0.16
5
5
  platform: ruby
6
6
  authors:
7
7
  - Raygun
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: exe
11
11
  cert_chain: []
12
- date: 2020-05-17 00:00:00.000000000 Z
12
+ date: 2020-06-07 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: raygun-apm