raygun-apm-rails 1.0.30 → 1.0.35
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 +15 -8
- data/lib/raygun/apm/rails/middleware.rb +8 -4
- data/lib/raygun/apm/rails/railtie.rb +1 -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: 3cea0812f72af7620a40a595a0730f3bf817d9825866fd37757c425a9881165c
|
4
|
+
data.tar.gz: 0fed587c5e324fc4f788f3b389ef254e45eb99a5bfb3d73fc9f2e72feb014ec8
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 839f8b8331bd29c8ead748da1e2106e7e598721c831d6de54318c45f76e061c68151bd0b584d09d366068c27262878a0cd0a29475783bc702d203075103595d1
|
7
|
+
data.tar.gz: 272e548b7b7356983313a44a98d13487e886c047ae16af8acc30ddac5ef5373e561d1c29e80da889a71bc4478d91eeb8c713c716bb8a108543367563f8bb8179
|
data/CHANGELOG.rdoc
CHANGED
@@ -1,5 +1,25 @@
|
|
1
1
|
= Changelog
|
2
2
|
|
3
|
+
== 1.0.35 (June 27, 2020)
|
4
|
+
|
5
|
+
* Whitelist key ActiveStorage APIs
|
6
|
+
|
7
|
+
== 1.0.34 (June 17, 2020)
|
8
|
+
|
9
|
+
* Align with rubyesque blacklist syntax support from profiler version 1.0.44
|
10
|
+
|
11
|
+
== 1.0.33 (June 7, 2020)
|
12
|
+
|
13
|
+
* Integrate exception correlation with rayrun4ruby
|
14
|
+
|
15
|
+
== 1.0.32 (June 6, 2020)
|
16
|
+
|
17
|
+
* Move raygun4ruby whitelisting and blacklisting out to profiler core
|
18
|
+
|
19
|
+
== 1.0.31 (May 17, 2020)
|
20
|
+
|
21
|
+
* Remove the Tracer#process_started callback (set on begin transaction command now)
|
22
|
+
|
3
23
|
== 1.0.30 (May 15, 2020)
|
4
24
|
|
5
25
|
* Introduce support for Redis as client adapter
|
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.35)
|
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.45-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
|
@@ -109,10 +105,21 @@ module Raygun
|
|
109
105
|
autosave_associated_records_for_
|
110
106
|
validate_associated_records_for_
|
111
107
|
will_save_change_to_
|
108
|
+
+ActiveStorage::Blob#upload
|
109
|
+
+ActiveStorage::Blob#download
|
110
|
+
+ActiveStorage::DiskController#show
|
111
|
+
+ActiveStorage::DiskController#update
|
112
|
+
+ActiveStorage::DirectUploadsController#create
|
113
|
+
+ActiveStorage::BlobsController#show
|
114
|
+
+ActiveStorage::RepresentationsController#show
|
112
115
|
}
|
113
116
|
|
114
|
-
def self.raygun4ruby?
|
115
|
-
|
117
|
+
def self.raygun4ruby?(configured = true)
|
118
|
+
if configured
|
119
|
+
defined?(Raygun) && Raygun.respond_to?(:configured?) && Raygun.configured?
|
120
|
+
else
|
121
|
+
defined?(Raygun) && Raygun.respond_to?(:configured?)
|
122
|
+
end
|
116
123
|
end
|
117
124
|
end
|
118
125
|
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,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
|
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.35
|
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-26 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
|