raygun-apm-rails 1.0.29 → 1.0.34
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/CHANGELOG.rdoc +20 -0
- data/Gemfile.lock +3 -3
- data/lib/raygun/apm/rails.rb +8 -8
- data/lib/raygun/apm/rails/middleware.rb +8 -4
- data/lib/raygun/apm/rails/railtie.rb +2 -1
- data/lib/raygun/apm/rails/version.rb +1 -1
- data/raygun-apm-rails.gemspec +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: beb20eea5ef905a8ee0e68c7dc35fbba266ee1a850e6080713ec8514f6daee32
|
4
|
+
data.tar.gz: c73e8df54d8207257bd2b4966d87e6d9305224b3015de5d0959b524f0835d7d2
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: '085cbd4ce49a5cb07043e5922df609a695ae3e745f5c37979814cd1d4172fd63c4f69566bd806bb5eda41f67d39ba3f77409f50db93995f3dbbfffef739c160f'
|
7
|
+
data.tar.gz: a1363d58458e3146041693d4136b8a50b0cb4b2762c6b003849e07f588be9d54d64d6b65f30876c9231f89125a4c9227678f43eb0a948a0655ac9c37a19adb8b
|
data/CHANGELOG.rdoc
CHANGED
@@ -1,5 +1,25 @@
|
|
1
1
|
= Changelog
|
2
2
|
|
3
|
+
== 1.0.34 (June 17, 2020)
|
4
|
+
|
5
|
+
* Align with rubyesque blacklist syntax support from profiler version 1.0.44
|
6
|
+
|
7
|
+
== 1.0.33 (June 7, 2020)
|
8
|
+
|
9
|
+
* Integrate exception correlation with rayrun4ruby
|
10
|
+
|
11
|
+
== 1.0.32 (June 6, 2020)
|
12
|
+
|
13
|
+
* Move raygun4ruby whitelisting and blacklisting out to profiler core
|
14
|
+
|
15
|
+
== 1.0.31 (May 17, 2020)
|
16
|
+
|
17
|
+
* Remove the Tracer#process_started callback (set on begin transaction command now)
|
18
|
+
|
19
|
+
== 1.0.30 (May 15, 2020)
|
20
|
+
|
21
|
+
* Introduce support for Redis as client adapter
|
22
|
+
|
3
23
|
== 1.0.29 (May 3, 2020)
|
4
24
|
|
5
25
|
* Blacklist a new set of methods injected at runtime by Rails which leads to messy traces
|
data/Gemfile.lock
CHANGED
@@ -1,15 +1,15 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
raygun-apm-rails (1.0.
|
5
|
-
raygun-apm (~> 1.0.
|
4
|
+
raygun-apm-rails (1.0.34)
|
5
|
+
raygun-apm (~> 1.0.44)
|
6
6
|
|
7
7
|
GEM
|
8
8
|
remote: https://rubygems.org/
|
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.44-x86-linux)
|
13
13
|
|
14
14
|
PLATFORMS
|
15
15
|
ruby
|
data/lib/raygun/apm/rails.rb
CHANGED
@@ -77,12 +77,8 @@ module Raygun
|
|
77
77
|
Grape
|
78
78
|
Mustermann
|
79
79
|
Enumeration
|
80
|
-
Raygun::
|
81
|
-
Raygun::
|
82
|
-
Raygun::config
|
83
|
-
+Raygun::Apm::Rails::Middleware::Ruby_APM_profiler_trace
|
84
|
-
+Raygun::Apm::Rails::Middleware::Ruby_APM_request_error
|
85
|
-
+Raygun::track_exception
|
80
|
+
+Raygun::Apm::Rails::Middleware#Ruby_APM_profiler_trace
|
81
|
+
+Raygun::Apm::Rails::Middleware#Ruby_APM_request_error
|
86
82
|
WebpackHelper
|
87
83
|
Ripper
|
88
84
|
Webpack
|
@@ -111,8 +107,12 @@ module Raygun
|
|
111
107
|
will_save_change_to_
|
112
108
|
}
|
113
109
|
|
114
|
-
def self.raygun4ruby?
|
115
|
-
|
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
|
116
116
|
end
|
117
117
|
end
|
118
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
|
@@ -62,7 +61,6 @@ module Raygun
|
|
62
61
|
def init_tracer
|
63
62
|
tracer = Raygun::Apm::Tracer.new
|
64
63
|
tracer.udp_sink!
|
65
|
-
tracer.process_started
|
66
64
|
ObjectSpace.define_finalizer(self, self.class.finalize(tracer))
|
67
65
|
|
68
66
|
ActiveSupport::Notifications.unsubscribe(@http_in_subscriber) if @http_in_subscriber
|
@@ -182,6 +180,12 @@ module Raygun
|
|
182
180
|
yield
|
183
181
|
end
|
184
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
|
+
|
185
189
|
def self.finalize(tracer)
|
186
190
|
proc {tracer.process_ended}
|
187
191
|
end
|
@@ -6,13 +6,14 @@ 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
|
13
13
|
app.middleware.use Raygun::Apm::Rails::Middleware
|
14
14
|
# Explictly enable instrumenting HTTP until a good control API is figured out
|
15
15
|
require "raygun/apm/hooks/net_http"
|
16
|
+
require "raygun/apm/hooks/redis" if defined?(Redis::Client)
|
16
17
|
end
|
17
18
|
end
|
18
19
|
end
|
data/raygun-apm-rails.gemspec
CHANGED
@@ -20,7 +20,7 @@ Gem::Specification.new do |spec|
|
|
20
20
|
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
21
21
|
spec.require_paths = ["lib"]
|
22
22
|
|
23
|
-
spec.add_dependency "raygun-apm", "~> 1.0.
|
23
|
+
spec.add_dependency "raygun-apm", "~> 1.0.44"
|
24
24
|
spec.add_development_dependency "bundler", "~> 2.1.4"
|
25
25
|
spec.add_development_dependency "rake", "~> 10.0"
|
26
26
|
spec.add_development_dependency "minitest", "~> 5.0"
|
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.34
|
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-
|
12
|
+
date: 2020-06-17 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: raygun-apm
|
@@ -17,14 +17,14 @@ dependencies:
|
|
17
17
|
requirements:
|
18
18
|
- - "~>"
|
19
19
|
- !ruby/object:Gem::Version
|
20
|
-
version: 1.0.
|
20
|
+
version: 1.0.44
|
21
21
|
type: :runtime
|
22
22
|
prerelease: false
|
23
23
|
version_requirements: !ruby/object:Gem::Requirement
|
24
24
|
requirements:
|
25
25
|
- - "~>"
|
26
26
|
- !ruby/object:Gem::Version
|
27
|
-
version: 1.0.
|
27
|
+
version: 1.0.44
|
28
28
|
- !ruby/object:Gem::Dependency
|
29
29
|
name: bundler
|
30
30
|
requirement: !ruby/object:Gem::Requirement
|