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 +4 -4
- data/CHANGELOG.rdoc +4 -0
- data/Gemfile.lock +2 -2
- data/lib/raygun/apm/rails.rb +6 -2
- data/lib/raygun/apm/rails/middleware.rb +8 -3
- data/lib/raygun/apm/rails/railtie.rb +1 -1
- data/lib/raygun/apm/rails/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ea8f7d9bbb65a25774299def9ae689e7ff22003e9b71112025a7f29a3b181652
|
4
|
+
data.tar.gz: 697f7f475692ac06d6ea36ae2d41ae4340cc460ac5e1cc4f88e0aeb1ecc7f6a0
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4f715173c739ba06d2e4e8640460d3ed30587edb4825e8879ef9053784ce603f4e7cfa47afd89fc4f590380b9e4976b772528438cbb64e129817e0b208c1e6ff
|
7
|
+
data.tar.gz: 1a01116e541a900054a0b9b376e37de8cf10b75d54f05b0953f8f8797657ee7a2c5498d6a10ea536eab70cc988a78a8bdf6714ecd614ef6fcfaf02d469b1131d
|
data/CHANGELOG.rdoc
CHANGED
data/Gemfile.lock
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
raygun-apm-rails (1.0.
|
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.
|
12
|
+
raygun-apm (1.0.43-universal-darwin)
|
13
13
|
|
14
14
|
PLATFORMS
|
15
15
|
ruby
|
data/lib/raygun/apm/rails.rb
CHANGED
@@ -107,8 +107,12 @@ module Raygun
|
|
107
107
|
will_save_change_to_
|
108
108
|
}
|
109
109
|
|
110
|
-
def self.raygun4ruby?
|
111
|
-
|
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
|
-
|
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
|
-
|
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
|
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.
|
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-
|
12
|
+
date: 2020-06-07 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: raygun-apm
|