sentry-ruby 5.23.0 → 5.25.0
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/.rspec +3 -1
- data/README.md +11 -6
- data/Rakefile +5 -6
- data/lib/sentry/background_worker.rb +2 -3
- data/lib/sentry/backpressure_monitor.rb +1 -1
- data/lib/sentry/breadcrumb.rb +5 -4
- data/lib/sentry/check_in_event.rb +2 -1
- data/lib/sentry/client.rb +82 -4
- data/lib/sentry/configuration.rb +37 -2
- data/lib/sentry/envelope/item.rb +1 -1
- data/lib/sentry/event.rb +2 -1
- data/lib/sentry/hub.rb +10 -0
- data/lib/sentry/interfaces/request.rb +1 -1
- data/lib/sentry/log_event.rb +206 -0
- data/lib/sentry/log_event_buffer.rb +75 -0
- data/lib/sentry/metrics/aggregator.rb +1 -1
- data/lib/sentry/profiler.rb +3 -2
- data/lib/sentry/propagation_context.rb +4 -4
- data/lib/sentry/scope.rb +13 -3
- data/lib/sentry/session_flusher.rb +1 -1
- data/lib/sentry/span.rb +4 -3
- data/lib/sentry/structured_logger.rb +138 -0
- data/lib/sentry/test_helper.rb +7 -0
- data/lib/sentry/threaded_periodic_worker.rb +3 -3
- data/lib/sentry/transaction.rb +1 -7
- data/lib/sentry/transport.rb +16 -8
- data/lib/sentry/utils/logging_helper.rb +10 -3
- data/lib/sentry/utils/uuid.rb +13 -0
- data/lib/sentry/vernier/profiler.rb +3 -2
- data/lib/sentry/version.rb +1 -1
- data/lib/sentry-ruby.rb +62 -4
- metadata +13 -9
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: sentry-ruby
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 5.
|
4
|
+
version: 5.25.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Sentry Team
|
8
8
|
bindir: bin
|
9
9
|
cert_chain: []
|
10
|
-
date:
|
10
|
+
date: 1980-01-02 00:00:00.000000000 Z
|
11
11
|
dependencies:
|
12
12
|
- !ruby/object:Gem::Dependency
|
13
13
|
name: concurrent-ruby
|
@@ -48,8 +48,8 @@ email: accounts@sentry.io
|
|
48
48
|
executables: []
|
49
49
|
extensions: []
|
50
50
|
extra_rdoc_files:
|
51
|
-
- README.md
|
52
51
|
- LICENSE.txt
|
52
|
+
- README.md
|
53
53
|
files:
|
54
54
|
- ".gitignore"
|
55
55
|
- ".rspec"
|
@@ -101,6 +101,8 @@ files:
|
|
101
101
|
- lib/sentry/interfaces/stacktrace_builder.rb
|
102
102
|
- lib/sentry/interfaces/threads.rb
|
103
103
|
- lib/sentry/linecache.rb
|
104
|
+
- lib/sentry/log_event.rb
|
105
|
+
- lib/sentry/log_event_buffer.rb
|
104
106
|
- lib/sentry/logger.rb
|
105
107
|
- lib/sentry/metrics.rb
|
106
108
|
- lib/sentry/metrics/aggregator.rb
|
@@ -127,6 +129,7 @@ files:
|
|
127
129
|
- lib/sentry/session.rb
|
128
130
|
- lib/sentry/session_flusher.rb
|
129
131
|
- lib/sentry/span.rb
|
132
|
+
- lib/sentry/structured_logger.rb
|
130
133
|
- lib/sentry/test_helper.rb
|
131
134
|
- lib/sentry/threaded_periodic_worker.rb
|
132
135
|
- lib/sentry/transaction.rb
|
@@ -145,20 +148,21 @@ files:
|
|
145
148
|
- lib/sentry/utils/logging_helper.rb
|
146
149
|
- lib/sentry/utils/real_ip.rb
|
147
150
|
- lib/sentry/utils/request_id.rb
|
151
|
+
- lib/sentry/utils/uuid.rb
|
148
152
|
- lib/sentry/vernier/output.rb
|
149
153
|
- lib/sentry/vernier/profiler.rb
|
150
154
|
- lib/sentry/version.rb
|
151
155
|
- sentry-ruby-core.gemspec
|
152
156
|
- sentry-ruby.gemspec
|
153
|
-
homepage: https://github.com/getsentry/sentry-ruby/tree/5.
|
157
|
+
homepage: https://github.com/getsentry/sentry-ruby/tree/5.25.0/sentry-ruby
|
154
158
|
licenses:
|
155
159
|
- MIT
|
156
160
|
metadata:
|
157
|
-
homepage_uri: https://github.com/getsentry/sentry-ruby/tree/5.
|
158
|
-
source_code_uri: https://github.com/getsentry/sentry-ruby/tree/5.
|
159
|
-
changelog_uri: https://github.com/getsentry/sentry-ruby/blob/5.
|
161
|
+
homepage_uri: https://github.com/getsentry/sentry-ruby/tree/5.25.0/sentry-ruby
|
162
|
+
source_code_uri: https://github.com/getsentry/sentry-ruby/tree/5.25.0/sentry-ruby
|
163
|
+
changelog_uri: https://github.com/getsentry/sentry-ruby/blob/5.25.0/CHANGELOG.md
|
160
164
|
bug_tracker_uri: https://github.com/getsentry/sentry-ruby/issues
|
161
|
-
documentation_uri: http://www.rubydoc.info/gems/sentry-ruby/5.
|
165
|
+
documentation_uri: http://www.rubydoc.info/gems/sentry-ruby/5.25.0
|
162
166
|
rdoc_options: []
|
163
167
|
require_paths:
|
164
168
|
- lib
|
@@ -173,7 +177,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
173
177
|
- !ruby/object:Gem::Version
|
174
178
|
version: '0'
|
175
179
|
requirements: []
|
176
|
-
rubygems_version: 3.6.
|
180
|
+
rubygems_version: 3.6.7
|
177
181
|
specification_version: 4
|
178
182
|
summary: A gem that provides a client interface for the Sentry error logger
|
179
183
|
test_files: []
|