sentry-ruby-core 4.6.4 → 4.7.2
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/LICENSE.txt +1 -1
- data/lib/sentry/breadcrumb/sentry_logger.rb +1 -1
- data/lib/sentry/client.rb +8 -3
- data/lib/sentry/configuration.rb +10 -1
- data/lib/sentry/dsn.rb +4 -0
- data/lib/sentry/hub.rb +4 -1
- data/lib/sentry/interfaces/request.rb +15 -2
- data/lib/sentry/scope.rb +1 -1
- data/lib/sentry/version.rb +1 -1
- data/lib/sentry-ruby.rb +48 -29
- data/sentry-ruby-core.gemspec +1 -1
- data/sentry-ruby.gemspec +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: a52a74b95eb5a763ce6d21da44dfc2c1cbbdd733c2f140888fd3d7645e4cf890
|
4
|
+
data.tar.gz: e275f2ecd44578e4e604fed42b104e0c191137199ea61572191295def1526c58
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 267c6dc30e8e43f2b051932165d5ce8631ba650285552e49ed810c572b984b7f87d29115eedbae0ab8283f63cbc66fc205ce9b6273fae477787e9163dad13297
|
7
|
+
data.tar.gz: 989f509506d4dce0b1d45c52bc4efc7c6f909f79770703aa3ef5e8b9c00a10e8ee7776cbbce7cb10dc83a678adec9fb0be86b483f87330ce46be4044a888980d
|
data/LICENSE.txt
CHANGED
data/lib/sentry/client.rb
CHANGED
@@ -26,7 +26,12 @@ module Sentry
|
|
26
26
|
def capture_event(event, scope, hint = {})
|
27
27
|
return unless configuration.sending_allowed?
|
28
28
|
|
29
|
-
scope.apply_to_event(event, hint)
|
29
|
+
event = scope.apply_to_event(event, hint)
|
30
|
+
|
31
|
+
if event.nil?
|
32
|
+
log_info("Discarded event because one of the event processors returned nil")
|
33
|
+
return
|
34
|
+
end
|
30
35
|
|
31
36
|
if async_block = configuration.async
|
32
37
|
dispatch_async_event(async_block, event, hint)
|
@@ -52,10 +57,10 @@ module Sentry
|
|
52
57
|
end
|
53
58
|
end
|
54
59
|
|
55
|
-
def event_from_message(message, hint = {})
|
60
|
+
def event_from_message(message, hint = {}, backtrace: nil)
|
56
61
|
integration_meta = Sentry.integrations[hint[:integration]]
|
57
62
|
event = Event.new(configuration: configuration, integration_meta: integration_meta, message: message)
|
58
|
-
event.add_threads_interface(backtrace: caller)
|
63
|
+
event.add_threads_interface(backtrace: backtrace || caller)
|
59
64
|
event
|
60
65
|
end
|
61
66
|
|
data/lib/sentry/configuration.rb
CHANGED
@@ -324,6 +324,15 @@ module Sentry
|
|
324
324
|
log_error("Error detecting release", e, debug: debug)
|
325
325
|
end
|
326
326
|
|
327
|
+
def csp_report_uri
|
328
|
+
if dsn && dsn.valid?
|
329
|
+
uri = dsn.csp_report_uri
|
330
|
+
uri += "&sentry_release=#{CGI.escape(release)}" if release && !release.empty?
|
331
|
+
uri += "&sentry_environment=#{CGI.escape(environment)}" if environment && !environment.empty?
|
332
|
+
uri
|
333
|
+
end
|
334
|
+
end
|
335
|
+
|
327
336
|
private
|
328
337
|
|
329
338
|
def excluded_exception?(incoming_exception)
|
@@ -421,7 +430,7 @@ module Sentry
|
|
421
430
|
end
|
422
431
|
|
423
432
|
def environment_from_env
|
424
|
-
ENV['SENTRY_CURRENT_ENV'] || ENV['SENTRY_ENVIRONMENT'] || ENV['RAILS_ENV'] || ENV['RACK_ENV'] || '
|
433
|
+
ENV['SENTRY_CURRENT_ENV'] || ENV['SENTRY_ENVIRONMENT'] || ENV['RAILS_ENV'] || ENV['RACK_ENV'] || 'development'
|
425
434
|
end
|
426
435
|
|
427
436
|
def server_name_from_env
|
data/lib/sentry/dsn.rb
CHANGED
data/lib/sentry/hub.rb
CHANGED
@@ -108,7 +108,8 @@ module Sentry
|
|
108
108
|
|
109
109
|
options[:hint] ||= {}
|
110
110
|
options[:hint][:message] = message
|
111
|
-
|
111
|
+
backtrace = options.delete(:backtrace)
|
112
|
+
event = current_client.event_from_message(message, options[:hint], backtrace: backtrace)
|
112
113
|
capture_event(event, **options, &block)
|
113
114
|
end
|
114
115
|
|
@@ -135,6 +136,8 @@ module Sentry
|
|
135
136
|
end
|
136
137
|
|
137
138
|
def add_breadcrumb(breadcrumb, hint: {})
|
139
|
+
return unless configuration.enabled_in_current_env?
|
140
|
+
|
138
141
|
if before_breadcrumb = current_client.configuration.before_breadcrumb
|
139
142
|
breadcrumb = before_breadcrumb.call(breadcrumb, hint)
|
140
143
|
end
|
@@ -57,7 +57,7 @@ module Sentry
|
|
57
57
|
request.POST
|
58
58
|
elsif request.body # JSON requests, etc
|
59
59
|
data = request.body.read(MAX_BODY_LIMIT)
|
60
|
-
data =
|
60
|
+
data = encode_to_utf_8(data.to_s)
|
61
61
|
request.body.rewind
|
62
62
|
data
|
63
63
|
end
|
@@ -76,7 +76,8 @@ module Sentry
|
|
76
76
|
# Rack stores headers as HTTP_WHAT_EVER, we need What-Ever
|
77
77
|
key = key.sub(/^HTTP_/, "")
|
78
78
|
key = key.split('_').map(&:capitalize).join('-')
|
79
|
-
|
79
|
+
|
80
|
+
memo[key] = encode_to_utf_8(value.to_s)
|
80
81
|
rescue StandardError => e
|
81
82
|
# Rails adds objects to the Rack env that can sometimes raise exceptions
|
82
83
|
# when `to_s` is called.
|
@@ -87,6 +88,18 @@ module Sentry
|
|
87
88
|
end
|
88
89
|
end
|
89
90
|
|
91
|
+
def encode_to_utf_8(value)
|
92
|
+
if value.encoding != Encoding::UTF_8 && value.respond_to?(:force_encoding)
|
93
|
+
value = value.dup.force_encoding(Encoding::UTF_8)
|
94
|
+
end
|
95
|
+
|
96
|
+
if !value.valid_encoding?
|
97
|
+
value = value.scrub
|
98
|
+
end
|
99
|
+
|
100
|
+
value
|
101
|
+
end
|
102
|
+
|
90
103
|
def is_skippable_header?(key)
|
91
104
|
key.upcase != key || # lower-case envs aren't real http headers
|
92
105
|
key == "HTTP_COOKIE" || # Cookies don't go here, they go somewhere else
|
data/lib/sentry/scope.rb
CHANGED
@@ -23,6 +23,7 @@ module Sentry
|
|
23
23
|
event.user = user.merge(event.user)
|
24
24
|
event.extra = extra.merge(event.extra)
|
25
25
|
event.contexts = contexts.merge(event.contexts)
|
26
|
+
event.transaction = transaction_name if transaction_name
|
26
27
|
|
27
28
|
if span
|
28
29
|
event.contexts[:trace] = span.get_trace_context
|
@@ -30,7 +31,6 @@ module Sentry
|
|
30
31
|
|
31
32
|
event.fingerprint = fingerprint
|
32
33
|
event.level = level
|
33
|
-
event.transaction = transaction_names.last
|
34
34
|
event.breadcrumbs = breadcrumbs
|
35
35
|
event.rack_env = rack_env if rack_env
|
36
36
|
|
data/lib/sentry/version.rb
CHANGED
data/lib/sentry-ruby.rb
CHANGED
@@ -36,15 +36,27 @@ module Sentry
|
|
36
36
|
|
37
37
|
THREAD_LOCAL = :sentry_hub
|
38
38
|
|
39
|
-
|
40
|
-
|
41
|
-
end
|
39
|
+
class << self
|
40
|
+
attr_accessor :background_worker
|
42
41
|
|
43
|
-
|
44
|
-
|
45
|
-
|
42
|
+
##### Patch Registration #####
|
43
|
+
#
|
44
|
+
def register_patch(&block)
|
45
|
+
registered_patches << block
|
46
|
+
end
|
46
47
|
|
47
|
-
|
48
|
+
def apply_patches(config)
|
49
|
+
registered_patches.each do |patch|
|
50
|
+
patch.call(config)
|
51
|
+
end
|
52
|
+
end
|
53
|
+
|
54
|
+
def registered_patches
|
55
|
+
@registered_patches ||= []
|
56
|
+
end
|
57
|
+
|
58
|
+
##### Integrations #####
|
59
|
+
#
|
48
60
|
# Returns a hash that contains all the integrations that have been registered to the main SDK.
|
49
61
|
def integrations
|
50
62
|
@integrations ||= {}
|
@@ -55,32 +67,16 @@ module Sentry
|
|
55
67
|
meta = { name: "sentry.ruby.#{name}", version: version }.freeze
|
56
68
|
integrations[name.to_s] = meta
|
57
69
|
end
|
58
|
-
end
|
59
70
|
|
60
|
-
|
71
|
+
##### Method Delegation #####
|
72
|
+
#
|
61
73
|
extend Forwardable
|
62
74
|
|
63
75
|
def_delegators :get_current_client, :configuration, :send_event
|
64
76
|
def_delegators :get_current_scope, :set_tags, :set_extras, :set_user, :set_context
|
65
77
|
|
66
|
-
|
67
|
-
|
68
|
-
@@registered_patches = []
|
69
|
-
|
70
|
-
def register_patch(&block)
|
71
|
-
registered_patches << block
|
72
|
-
end
|
73
|
-
|
74
|
-
def apply_patches(config)
|
75
|
-
registered_patches.each do |patch|
|
76
|
-
patch.call(config)
|
77
|
-
end
|
78
|
-
end
|
79
|
-
|
80
|
-
def registered_patches
|
81
|
-
@@registered_patches
|
82
|
-
end
|
83
|
-
|
78
|
+
##### Main APIs #####
|
79
|
+
#
|
84
80
|
def init(&block)
|
85
81
|
config = Configuration.new
|
86
82
|
yield(config) if block_given?
|
@@ -94,14 +90,26 @@ module Sentry
|
|
94
90
|
@background_worker = Sentry::BackgroundWorker.new(config)
|
95
91
|
end
|
96
92
|
|
93
|
+
# Returns an uri for security policy reporting that's generated from the given DSN
|
94
|
+
# (To learn more about security policy reporting: https://docs.sentry.io/product/security-policy-reporting/)
|
95
|
+
#
|
96
|
+
# It returns nil if
|
97
|
+
#
|
98
|
+
# 1. The SDK is not initialized yet.
|
99
|
+
# 2. The DSN is not provided or is invalid.
|
100
|
+
def csp_report_uri
|
101
|
+
return unless initialized?
|
102
|
+
configuration.csp_report_uri
|
103
|
+
end
|
104
|
+
|
97
105
|
# Returns the main thread's active hub.
|
98
106
|
def get_main_hub
|
99
107
|
@main_hub
|
100
108
|
end
|
101
109
|
|
102
110
|
# Takes an instance of Sentry::Breadcrumb and stores it to the current active scope.
|
103
|
-
def add_breadcrumb(breadcrumb)
|
104
|
-
get_current_hub&.add_breadcrumb(breadcrumb)
|
111
|
+
def add_breadcrumb(breadcrumb, **options)
|
112
|
+
get_current_hub&.add_breadcrumb(breadcrumb, **options)
|
105
113
|
end
|
106
114
|
|
107
115
|
# Returns the current active hub.
|
@@ -193,6 +201,9 @@ module Sentry
|
|
193
201
|
get_current_hub&.last_event_id
|
194
202
|
end
|
195
203
|
|
204
|
+
|
205
|
+
##### Helpers #####
|
206
|
+
#
|
196
207
|
def sys_command(command)
|
197
208
|
result = `#{command} 2>&1` rescue nil
|
198
209
|
return if result.nil? || result.empty? || ($CHILD_STATUS && $CHILD_STATUS.exitstatus != 0)
|
@@ -207,6 +218,14 @@ module Sentry
|
|
207
218
|
def logger
|
208
219
|
configuration.logger
|
209
220
|
end
|
221
|
+
|
222
|
+
def sdk_meta
|
223
|
+
META
|
224
|
+
end
|
225
|
+
|
226
|
+
def utc_now
|
227
|
+
Time.now.utc
|
228
|
+
end
|
210
229
|
end
|
211
230
|
end
|
212
231
|
|
data/sentry-ruby-core.gemspec
CHANGED
@@ -6,7 +6,7 @@ Gem::Specification.new do |spec|
|
|
6
6
|
spec.authors = ["Sentry Team"]
|
7
7
|
spec.description = spec.summary = "A gem that provides a client interface for the Sentry error logger"
|
8
8
|
spec.email = "accounts@sentry.io"
|
9
|
-
spec.license = '
|
9
|
+
spec.license = 'MIT'
|
10
10
|
spec.homepage = "https://github.com/getsentry/sentry-ruby"
|
11
11
|
|
12
12
|
spec.platform = Gem::Platform::RUBY
|
data/sentry-ruby.gemspec
CHANGED
@@ -6,7 +6,7 @@ Gem::Specification.new do |spec|
|
|
6
6
|
spec.authors = ["Sentry Team"]
|
7
7
|
spec.description = spec.summary = "A gem that provides a client interface for the Sentry error logger"
|
8
8
|
spec.email = "accounts@sentry.io"
|
9
|
-
spec.license = '
|
9
|
+
spec.license = 'MIT'
|
10
10
|
spec.homepage = "https://github.com/getsentry/sentry-ruby"
|
11
11
|
|
12
12
|
spec.platform = Gem::Platform::RUBY
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: sentry-ruby-core
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 4.
|
4
|
+
version: 4.7.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Sentry Team
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2021-
|
11
|
+
date: 2021-09-09 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: faraday
|
@@ -103,7 +103,7 @@ files:
|
|
103
103
|
- sentry-ruby.gemspec
|
104
104
|
homepage: https://github.com/getsentry/sentry-ruby
|
105
105
|
licenses:
|
106
|
-
-
|
106
|
+
- MIT
|
107
107
|
metadata:
|
108
108
|
homepage_uri: https://github.com/getsentry/sentry-ruby
|
109
109
|
source_code_uri: https://github.com/getsentry/sentry-ruby
|