raygun-apm-rails 1.0.32 → 1.0.33

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: cbfeaa5764448f37763271c00efe86f96521db6b3d75ed339769d68b9484e656
4
- data.tar.gz: 311c208e215c8efa26a10b12981cc6a553f36ecee50241c02b0363f324348548
3
+ metadata.gz: ea8f7d9bbb65a25774299def9ae689e7ff22003e9b71112025a7f29a3b181652
4
+ data.tar.gz: 697f7f475692ac06d6ea36ae2d41ae4340cc460ac5e1cc4f88e0aeb1ecc7f6a0
5
5
  SHA512:
6
- metadata.gz: fc0cb6606e7d22c8eda85a20b2bef9a9619b5beac1a6f4245308e5192d61946d9208da387fd751935420b09ff661d217c05a05f96a8491b68b7943d7cdfdf131
7
- data.tar.gz: 89f6166d481fb5b8172176292c9ba87501f15116e3266b1f8766180bd03a165d0fb33637f055e4e00153227e97b620e9591e73faf6c4865401555321f6567b41
6
+ metadata.gz: 4f715173c739ba06d2e4e8640460d3ed30587edb4825e8879ef9053784ce603f4e7cfa47afd89fc4f590380b9e4976b772528438cbb64e129817e0b208c1e6ff
7
+ data.tar.gz: 1a01116e541a900054a0b9b376e37de8cf10b75d54f05b0953f8f8797657ee7a2c5498d6a10ea536eab70cc988a78a8bdf6714ecd614ef6fcfaf02d469b1131d
@@ -1,5 +1,9 @@
1
1
  = Changelog
2
2
 
3
+ == 1.0.33 (June 7, 2020)
4
+
5
+ * Integrate exception correlation with rayrun4ruby
6
+
3
7
  == 1.0.32 (June 6, 2020)
4
8
 
5
9
  * Move raygun4ruby whitelisting and blacklisting out to profiler core
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- raygun-apm-rails (1.0.32)
4
+ raygun-apm-rails (1.0.33)
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.42-universal-darwin)
12
+ raygun-apm (1.0.43-universal-darwin)
13
13
 
14
14
  PLATFORMS
15
15
  ruby
@@ -107,8 +107,12 @@ module Raygun
107
107
  will_save_change_to_
108
108
  }
109
109
 
110
- def self.raygun4ruby?
111
- defined?(Raygun) && Raygun.respond_to?(:configured?) && Raygun.configured?
110
+ def self.raygun4ruby?(configured = true)
111
+ if configured
112
+ defined?(Raygun) && Raygun.respond_to?(:configured?) && Raygun.configured?
113
+ else
114
+ defined?(Raygun) && Raygun.respond_to?(:configured?)
115
+ end
112
116
  end
113
117
  end
114
118
  end
@@ -34,15 +34,14 @@ module Raygun
34
34
  begin
35
35
  raise "HTTP #{status} #{message}"
36
36
  rescue => e
37
- Raygun.track_exception(e, env) if Raygun::Apm::Rails.raygun4ruby?
37
+ crash_report_exception(e)
38
38
  end
39
39
  exceptional_http_in_handler(env, status) if @tracer
40
40
  end
41
41
  end
42
42
  rescue => e
43
43
  Ruby_APM_request_error do
44
- raise e rescue nil
45
- Raygun.track_exception(e, env) if Raygun::Apm::Rails.raygun4ruby?
44
+ crash_report_exception(e)
46
45
  exceptional_http_in_handler(env, 500) if @tracer
47
46
  end
48
47
  exception = e
@@ -181,6 +180,12 @@ module Raygun
181
180
  yield
182
181
  end
183
182
 
183
+ def crash_report_exception(exception)
184
+ if Raygun::Apm::Rails.raygun4ruby?
185
+ Raygun.track_exception(exception, correlation_id: exception.instance_variable_get(:@__raygun_correlation_id))
186
+ end
187
+ end
188
+
184
189
  def self.finalize(tracer)
185
190
  proc {tracer.process_ended}
186
191
  end
@@ -6,7 +6,7 @@ module Raygun
6
6
  require "raygun/apm"
7
7
  require "raygun/apm/rails/middleware"
8
8
  Raygun::Apm::Blacklist.extend_with Raygun::Apm::Rails::BLACKLIST
9
- if Raygun::Apm::Rails.raygun4ruby?
9
+ if Raygun::Apm::Rails.raygun4ruby?(false)
10
10
  # Remove the exception notifier because we handle it in the APM middleware now instead
11
11
  app.middleware.delete Raygun::Middleware::RackExceptionInterceptor
12
12
  end
@@ -1,7 +1,7 @@
1
1
  module Raygun
2
2
  module Apm
3
3
  module Rails
4
- VERSION = "1.0.32"
4
+ VERSION = "1.0.33"
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-rails
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.32
4
+ version: 1.0.33
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-06-05 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