opentelemetry-sdk 1.7.0 → 1.8.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/CHANGELOG.md +166 -163
- data/lib/opentelemetry/sdk/version.rb +1 -1
- metadata +8 -8
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: d1b9513adb27dcf96c5716384292d146537bd8cd441d7a038afe1165df062b36
|
4
|
+
data.tar.gz: 226a87adf018fcd8a5d34372861ddace5d00b5da3e532cd55327443a469b1993
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2c5165f0d97609cc4f444472e1c8503105f44d19e2bd8678f8c3723e3fbc84ad88cbb7b10d613088daa0fcd0ec2c2449f65cf941cd1537a4c0812f616a9c4886
|
7
|
+
data.tar.gz: ecd367edd842e2fd4f3cbd05b7d619dc8431a8dd9870eee39d0435c7176d326b3b98be49c0df9896726c9f3b7f2ac0082601763a7532fb51a9a2165640947040
|
data/CHANGELOG.md
CHANGED
@@ -1,277 +1,280 @@
|
|
1
1
|
# Release History: opentelemetry-sdk
|
2
2
|
|
3
|
+
### v1.8.0 / 2025-02-25
|
4
|
+
|
5
|
+
- ADDED: Support 3.1 Min Version
|
6
|
+
|
3
7
|
### v1.7.0 / 2025-02-04
|
4
8
|
|
5
|
-
|
9
|
+
- ADDED: Add compatibility with env OTEL_SDK_DISABLED
|
6
10
|
|
7
11
|
### v1.6.0 / 2024-12-04
|
8
12
|
|
9
|
-
|
13
|
+
- ADDED: Add hooks to configure logs
|
10
14
|
|
11
15
|
### v1.5.0 / 2024-07-24
|
12
16
|
|
13
|
-
|
14
|
-
|
17
|
+
- ADDED: Add add_link to span api/sdk
|
18
|
+
- FIXED: Update `untraced` to suppress logging "Calling finish on an ended Span" warnings
|
15
19
|
|
16
20
|
### v1.4.1 / 2024-03-21
|
17
21
|
|
18
|
-
|
22
|
+
- FIXED: ForwardingLogger should forward block param.
|
19
23
|
|
20
24
|
### v1.4.0 / 2024-01-25
|
21
25
|
|
22
|
-
|
26
|
+
- ADDED: Add spans to Trace::ExportError
|
23
27
|
|
24
28
|
### v1.3.2 / 2024-01-23
|
25
29
|
|
26
|
-
|
27
|
-
|
30
|
+
- FIXED: Reduce allocations on GraphQL hot paths
|
31
|
+
- FIXED: Add context to metrics reporting of buffer-full events
|
28
32
|
|
29
33
|
### v1.3.1 / 2023-11-02
|
30
34
|
|
31
|
-
|
32
|
-
|
35
|
+
- FIXED: Spec compliance for span attribute limit
|
36
|
+
- FIXED: BatchSpanProcessor#force_flush: purge inherited spans even on shutdown
|
33
37
|
|
34
38
|
### v1.3.0 / 2023-06-08
|
35
39
|
|
36
|
-
|
40
|
+
- BREAKING CHANGE: Remove support for EoL Ruby 2.7
|
37
41
|
|
38
|
-
|
39
|
-
|
42
|
+
- ADDED: Remove support for EoL Ruby 2.7
|
43
|
+
- FIXED: SDK requires opentelemetry-common 0.19.7
|
40
44
|
|
41
45
|
### v1.2.1 / 2023-05-30
|
42
46
|
|
43
|
-
|
44
|
-
|
47
|
+
- FIXED: Untraced only works with parent-based sampler
|
48
|
+
- DOCS: Improve formatting of usage examples in OpenTelemetry SDK rubydocs
|
45
49
|
|
46
50
|
### v1.2.0 / 2022-09-14
|
47
51
|
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
+
- ADDED: Support OTEL_PROPAGATORS=none
|
53
|
+
- ADDED: Support OTEL*ATTRIBUTE*{COUNT,VALUE_LENGTH}\_LIMIT env vars
|
54
|
+
- ADDED: Support InstrumentationScope, and update OTLP proto to 0.18.0
|
55
|
+
- FIXED: SpanLimits setting event attributes length limit
|
52
56
|
|
53
57
|
### v1.1.0 / 2022-05-26
|
54
58
|
|
55
|
-
|
56
|
-
|
59
|
+
- BREAKING CHANGE: This requires upgrading both the SDK and Instrumentation gem in tandem
|
57
60
|
|
58
61
|
### v1.0.3 / 2022-05-02
|
59
62
|
|
60
|
-
|
61
|
-
|
62
|
-
|
63
|
-
|
64
|
-
|
63
|
+
- ADDED: Truncate the strings in an array attribute value if length_limit is configured
|
64
|
+
- FIXED: Update attribute length limit env var name to match spec
|
65
|
+
- FIXED: Warning about Struct initialization in Ruby 3.2+
|
66
|
+
- FIXED: Warn on unsupported otlp transport protocols
|
67
|
+
- FIXED: Only allow certain types of Numeric values as attribute values.
|
65
68
|
|
66
69
|
### v1.0.2 / 2021-12-01
|
67
70
|
|
68
|
-
|
69
|
-
|
71
|
+
- FIXED: Default span kind
|
72
|
+
- FIXED: Use monotonic clock where possible
|
70
73
|
|
71
74
|
### v1.0.1 / 2021-10-29
|
72
75
|
|
73
|
-
|
76
|
+
- FIXED: Add unexpected error handlign in BSP and OTLP exporter (#995)
|
74
77
|
|
75
78
|
### v1.0.0 / 2021-09-29
|
76
79
|
|
77
|
-
|
80
|
+
- (No significant changes)
|
78
81
|
|
79
82
|
### v1.0.0.rc3 / 2021-08-12
|
80
83
|
|
81
|
-
|
82
|
-
|
83
|
-
|
84
|
-
|
85
|
-
|
86
|
-
|
87
|
-
|
88
|
-
|
89
|
-
|
90
|
-
|
91
|
-
|
92
|
-
|
93
|
-
|
94
|
-
|
95
|
-
|
96
|
-
|
97
|
-
|
98
|
-
|
99
|
-
|
100
|
-
|
101
|
-
|
102
|
-
|
103
|
-
|
104
|
-
|
105
|
-
|
106
|
-
|
107
|
-
|
108
|
-
|
84
|
+
- BREAKING CHANGE: Remove optional parent_context from in_span
|
85
|
+
- BREAKING CHANGE: Replace Time.now with Process.clock_gettime
|
86
|
+
- BREAKING CHANGE: Refactor Baggage to remove Noop\*
|
87
|
+
- BREAKING CHANGE: Remove unnecessary readers from SDK Tracer
|
88
|
+
- BREAKING CHANGE: Total order constraint on span.status=
|
89
|
+
- BREAKING CHANGE: Use auto-generated resource constants in sdk and resource_detectors
|
90
|
+
- BREAKING CHANGE: Span limits env vars
|
91
|
+
|
92
|
+
- ADDED: Add Tracer.non_recording_span to API
|
93
|
+
- ADDED: Add unnamed tracer warning message
|
94
|
+
- ADDED: Allow disabling of install messages
|
95
|
+
- ADDED: Make API's NoopTextMapPropagator private
|
96
|
+
- ADDED: Use auto-generated resource constants in sdk and resource_detectors
|
97
|
+
- ADDED: Allow selecting multiple exporter
|
98
|
+
- ADDED: Add explicit BSP export error
|
99
|
+
- FIXED: Remove optional parent_context from in_span
|
100
|
+
- FIXED: Replace Time.now with Process.clock_gettime
|
101
|
+
- FIXED: Rename cloud.zone to cloud.availability_zone
|
102
|
+
- FIXED: Improve attribute error messages
|
103
|
+
- FIXED: Refactor Baggage to remove Noop\*
|
104
|
+
- FIXED: Support OTEL_SERVICE_NAME env var
|
105
|
+
- FIXED: Remove unnecessary readers from SDK Tracer
|
106
|
+
- FIXED: Total order constraint on span.status=
|
107
|
+
- FIXED: Flakey tracer provider test
|
108
|
+
- FIXED: Split lock in TracerProvider
|
109
|
+
- FIXED: Span limits env vars
|
110
|
+
- FIXED: Prune invalid links
|
111
|
+
- DOCS: Update docs to rely more on environment variable configuration
|
109
112
|
|
110
113
|
### v1.0.0.rc2 / 2021-06-23
|
111
114
|
|
112
|
-
|
113
|
-
|
114
|
-
|
115
|
-
|
115
|
+
- BREAKING CHANGE: Remove optional parent_context from in_span [729](https://github.com/open-telemetry/opentelemetry-ruby/pull/729)
|
116
|
+
- BREAKING CHANGE: Replace Time.now with Process.clock_gettime [717](https://github.com/open-telemetry/opentelemetry-ruby/pull/717)
|
117
|
+
- BREAKING CHANGE: Refactor Baggage to remove Noop\* [800](https://github.com/open-telemetry/opentelemetry-ruby/pull/800)
|
118
|
+
- BREAKING CHANGE: Remove unnecessary readers from SDK Tracer [820](https://github.com/open-telemetry/opentelemetry-ruby/pull/820)
|
116
119
|
- Tracer no longer surfaces attribute readers for the name, version, or tracer_provider
|
117
|
-
|
120
|
+
- BREAKING CHANGE: Total order constraint on span.status= [805](https://github.com/open-telemetry/opentelemetry-ruby/pull/805)
|
118
121
|
|
119
|
-
|
120
|
-
|
121
|
-
|
122
|
-
|
123
|
-
|
124
|
-
|
125
|
-
|
122
|
+
- ADDED: Add Tracer.non_recording_span to API [799](https://github.com/open-telemetry/opentelemetry-ruby/pull/799)
|
123
|
+
- ADDED: Add unnamed tracer warning message [830](https://github.com/open-telemetry/opentelemetry-ruby/pull/830)
|
124
|
+
- ADDED: Allow disabling of install messages [831](https://github.com/open-telemetry/opentelemetry-ruby/pull/831)
|
125
|
+
- FIXED: Rename cloud.zone to cloud.availability_zone [734](https://github.com/open-telemetry/opentelemetry-ruby/pull/734)
|
126
|
+
- FIXED: Improve attribute error messages [742](https://github.com/open-telemetry/opentelemetry-ruby/pull/742)
|
127
|
+
- FIXED: Support OTEL_SERVICE_NAME env var [806]https://github.com/open-telemetry/opentelemetry-ruby/pull/806
|
128
|
+
- FIXED: Flakey tracer provider test
|
126
129
|
|
127
130
|
### v1.0.0.rc1 / 2021-05-21
|
128
131
|
|
129
|
-
|
130
|
-
|
132
|
+
- BREAKING CHANGE: Remove optional parent_context from in_span
|
133
|
+
- BREAKING CHANGE: Replace Time.now with Process.clock_gettime
|
131
134
|
|
132
|
-
|
133
|
-
|
134
|
-
|
135
|
-
|
135
|
+
- FIXED: Remove optional parent_context from in_span
|
136
|
+
- FIXED: Replace Time.now with Process.clock_gettime
|
137
|
+
- FIXED: Rename cloud.zone to cloud.availability_zone
|
138
|
+
- FIXED: Improve attribute error messages
|
136
139
|
|
137
140
|
### v0.17.0 / 2021-04-22
|
138
141
|
|
139
|
-
|
142
|
+
- BREAKING CHANGE: Replace TextMapInjector/TextMapExtractor pairs with a TextMapPropagator.
|
140
143
|
|
141
144
|
[Check the propagator documentation](https://open-telemetry.github.io/opentelemetry-ruby/) for the new usage.
|
142
145
|
|
143
|
-
|
144
|
-
|
145
|
-
|
146
|
-
|
147
|
-
|
148
|
-
|
149
|
-
|
146
|
+
- ADDED: Add zipkin exporter
|
147
|
+
- ADDED: Processors validate exporters on init.
|
148
|
+
- ADDED: Add configurable truncation of span and event attribute values
|
149
|
+
- ADDED: Add simple 'recording' attr_accessor to InMemorySpanExporter
|
150
|
+
- FIXED: Typo in error message
|
151
|
+
- FIXED: Improve configuration error reporting
|
152
|
+
- FIXED: Refactor propagators to add #fields
|
150
153
|
|
151
154
|
### v0.16.0 / 2021-03-17
|
152
155
|
|
153
|
-
|
154
|
-
|
156
|
+
- BREAKING CHANGE: Update SDK BaggageManager to match API
|
157
|
+
- BREAKING CHANGE: Implement Exporter#force_flush
|
155
158
|
|
156
|
-
|
157
|
-
|
158
|
-
|
159
|
-
|
160
|
-
|
161
|
-
|
162
|
-
|
159
|
+
- ADDED: Add force_flush to SDK's TracerProvider
|
160
|
+
- ADDED: Add k8s node to gcp resource detector
|
161
|
+
- ADDED: Add console option for OTEL_TRACES_EXPORTER
|
162
|
+
- ADDED: Span#add_attributes
|
163
|
+
- ADDED: Implement Exporter#force_flush
|
164
|
+
- FIXED: Update SDK BaggageManager to match API
|
165
|
+
- DOCS: Replace Gitter with GitHub Discussions
|
163
166
|
|
164
167
|
### v0.15.0 / 2021-02-18
|
165
168
|
|
166
|
-
|
169
|
+
- BREAKING CHANGE: Streamline processor pipeline
|
167
170
|
|
168
|
-
|
169
|
-
|
170
|
-
|
171
|
-
|
172
|
-
|
173
|
-
|
174
|
-
|
171
|
+
- ADDED: Add instrumentation config validation
|
172
|
+
- FIXED: Streamline processor pipeline
|
173
|
+
- FIXED: OTEL_TRACE -> OTEL_TRACES env vars
|
174
|
+
- FIXED: Change limits from 1000 to 128
|
175
|
+
- FIXED: OTEL_TRACES_EXPORTER and OTEL_PROPAGATORS
|
176
|
+
- FIXED: Add thread error handling to the BSP
|
177
|
+
- DOCS: Clarify nil attribute values not allowed
|
175
178
|
|
176
179
|
### v0.14.0 / 2021-02-03
|
177
180
|
|
178
|
-
|
181
|
+
- BREAKING CHANGE: Replace getter and setter callables and remove rack specific propagators
|
179
182
|
|
180
|
-
|
183
|
+
- ADDED: Replace getter and setter callables and remove rack specific propagators
|
181
184
|
|
182
185
|
### v0.13.1 / 2021-02-01
|
183
186
|
|
184
|
-
|
185
|
-
|
187
|
+
- FIXED: Leaky test
|
188
|
+
- FIXED: Allow env var override of service.name
|
186
189
|
|
187
190
|
### v0.13.0 / 2021-01-29
|
188
191
|
|
189
|
-
|
192
|
+
- BREAKING CHANGE: Remove MILLIS from BatchSpanProcessor vars
|
190
193
|
|
191
|
-
|
192
|
-
|
193
|
-
|
194
|
-
|
195
|
-
|
194
|
+
- ADDED: Process.runtime resource
|
195
|
+
- ADDED: Provide default resource in SDK
|
196
|
+
- ADDED: Add optional attributes to record_exception
|
197
|
+
- FIXED: Resource.merge consistency
|
198
|
+
- FIXED: Remove MILLIS from BatchSpanProcessor vars
|
196
199
|
|
197
200
|
### v0.12.1 / 2021-01-13
|
198
201
|
|
199
|
-
|
200
|
-
|
202
|
+
- FIXED: Fix several BatchSpanProcessor errors related to fork safety
|
203
|
+
- FIXED: Define default value for traceid ratio
|
201
204
|
|
202
205
|
### v0.12.0 / 2020-12-24
|
203
206
|
|
204
|
-
|
205
|
-
|
206
|
-
|
207
|
-
|
208
|
-
|
207
|
+
- ADDED: Structured error handling
|
208
|
+
- ADDED: Pluggable ID generation
|
209
|
+
- FIXED: BSP dropped span buffer full reporting
|
210
|
+
- FIXED: Implement SDK environment variables
|
211
|
+
- FIXED: Remove incorrect TODO
|
209
212
|
|
210
213
|
### v0.11.1 / 2020-12-16
|
211
214
|
|
212
|
-
|
215
|
+
- FIXED: BSP dropped span buffer full reporting
|
213
216
|
|
214
217
|
### v0.11.0 / 2020-12-11
|
215
218
|
|
216
|
-
|
217
|
-
|
219
|
+
- ADDED: Metrics reporting from trace export
|
220
|
+
- FIXED: Copyright comments to not reference year
|
218
221
|
|
219
222
|
### v0.10.0 / 2020-12-03
|
220
223
|
|
221
|
-
|
224
|
+
- BREAKING CHANGE: Allow samplers to modify tracestate
|
222
225
|
|
223
|
-
|
226
|
+
- FIXED: Allow samplers to modify tracestate
|
224
227
|
|
225
228
|
### v0.9.0 / 2020-11-27
|
226
229
|
|
227
|
-
|
228
|
-
|
230
|
+
- BREAKING CHANGE: Pass full Context to samplers
|
231
|
+
- BREAKING CHANGE: Add timeout for force_flush and shutdown
|
229
232
|
|
230
|
-
|
231
|
-
|
232
|
-
|
233
|
-
|
234
|
-
|
235
|
-
|
233
|
+
- ADDED: Add OTEL_RUBY_BSP_START_THREAD_ON_BOOT env var
|
234
|
+
- ADDED: Add timeout for force_flush and shutdown
|
235
|
+
- FIXED: Signal at batch_size
|
236
|
+
- FIXED: SDK Span.recording? after finish
|
237
|
+
- FIXED: Pass full Context to samplers
|
238
|
+
- DOCS: Add documentation on usage scenarios for span processors
|
236
239
|
|
237
240
|
### v0.8.0 / 2020-10-27
|
238
241
|
|
239
|
-
|
240
|
-
|
241
|
-
|
242
|
+
- BREAKING CHANGE: Move context/span methods to Trace module
|
243
|
+
- BREAKING CHANGE: Remove 'canonical' from status codes
|
244
|
+
- BREAKING CHANGE: Assorted SpanContext fixes
|
242
245
|
|
243
|
-
|
244
|
-
|
245
|
-
|
246
|
+
- FIXED: Move context/span methods to Trace module
|
247
|
+
- FIXED: Remove 'canonical' from status codes
|
248
|
+
- FIXED: Assorted SpanContext fixes
|
246
249
|
|
247
250
|
### v0.7.0 / 2020-10-07
|
248
251
|
|
249
|
-
|
250
|
-
|
251
|
-
|
252
|
-
|
253
|
-
|
254
|
-
|
252
|
+
- ADDED: Add service_name setter to configurator
|
253
|
+
- ADDED: Add service_version setter to configurator
|
254
|
+
- FIXED: Fork safety for batch processor
|
255
|
+
- FIXED: Don't generate a span ID unnecessarily
|
256
|
+
- DOCS: Fix Configurator#add_span_processor
|
257
|
+
- DOCS: Standardize toplevel docs structure and readme
|
255
258
|
|
256
259
|
### v0.6.0 / 2020-09-10
|
257
260
|
|
258
|
-
|
259
|
-
|
260
|
-
|
261
|
-
|
262
|
-
|
263
|
-
|
264
|
-
|
265
|
-
|
266
|
-
|
267
|
-
|
268
|
-
|
269
|
-
|
270
|
-
|
271
|
-
|
272
|
-
|
273
|
-
|
274
|
-
|
275
|
-
|
276
|
-
|
277
|
-
|
261
|
+
- BREAKING CHANGE: Rename Resource labels to attributes
|
262
|
+
- BREAKING CHANGE: Export resource from Span/SpanData instead of library_resource
|
263
|
+
- BREAKING CHANGE: Rename CorrelationContext to Baggage
|
264
|
+
- BREAKING CHANGE: Rename Text* to TextMap* (propagators, injectors, extractors)
|
265
|
+
- BREAKING CHANGE: Rename span.record_error to span.record_exception
|
266
|
+
- BREAKING CHANGE: Update samplers to match spec
|
267
|
+
- BREAKING CHANGE: Remove support for lazy event creation
|
268
|
+
|
269
|
+
- ADDED: Add OTLP exporter
|
270
|
+
- ADDED: Add support for OTEL_LOG_LEVEL env var
|
271
|
+
- FIXED: Rename Resource labels to attributes
|
272
|
+
- ADDED: Environment variable resource detection
|
273
|
+
- ADDED: BatchSpanProcessor environment variable support
|
274
|
+
- FIXED: Remove semver prefix
|
275
|
+
- FIXED: Docs for array valued attributes
|
276
|
+
- ADDED: Add hex_trace_id and hex_span_id helpers to SpanData
|
277
|
+
- FIXED: Fix ProbabilitySampler
|
278
|
+
- ADDED: Implement GetCorrelations
|
279
|
+
- FIXED: Change default Sampler to ParentOrElse(AlwaysOn)
|
280
|
+
- FIXED: Fix probability sampler
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: opentelemetry-sdk
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.8.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- OpenTelemetry Authors
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2025-02-
|
11
|
+
date: 2025-02-25 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: opentelemetry-api
|
@@ -100,14 +100,14 @@ dependencies:
|
|
100
100
|
requirements:
|
101
101
|
- - "~>"
|
102
102
|
- !ruby/object:Gem::Version
|
103
|
-
version: 5.
|
103
|
+
version: '5.0'
|
104
104
|
type: :development
|
105
105
|
prerelease: false
|
106
106
|
version_requirements: !ruby/object:Gem::Requirement
|
107
107
|
requirements:
|
108
108
|
- - "~>"
|
109
109
|
- !ruby/object:Gem::Version
|
110
|
-
version: 5.
|
110
|
+
version: '5.0'
|
111
111
|
- !ruby/object:Gem::Dependency
|
112
112
|
name: opentelemetry-exporter-zipkin
|
113
113
|
requirement: !ruby/object:Gem::Requirement
|
@@ -294,10 +294,10 @@ homepage: https://github.com/open-telemetry/opentelemetry-ruby
|
|
294
294
|
licenses:
|
295
295
|
- Apache-2.0
|
296
296
|
metadata:
|
297
|
-
changelog_uri: https://open-telemetry.github.io/opentelemetry-ruby/opentelemetry-sdk/v1.
|
297
|
+
changelog_uri: https://open-telemetry.github.io/opentelemetry-ruby/opentelemetry-sdk/v1.8.0/file.CHANGELOG.html
|
298
298
|
source_code_uri: https://github.com/open-telemetry/opentelemetry-ruby/tree/main/sdk
|
299
299
|
bug_tracker_uri: https://github.com/open-telemetry/opentelemetry-ruby/issues
|
300
|
-
documentation_uri: https://open-telemetry.github.io/opentelemetry-ruby/opentelemetry-sdk/v1.
|
300
|
+
documentation_uri: https://open-telemetry.github.io/opentelemetry-ruby/opentelemetry-sdk/v1.8.0
|
301
301
|
post_install_message:
|
302
302
|
rdoc_options: []
|
303
303
|
require_paths:
|
@@ -306,14 +306,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
306
306
|
requirements:
|
307
307
|
- - ">="
|
308
308
|
- !ruby/object:Gem::Version
|
309
|
-
version: '3.
|
309
|
+
version: '3.1'
|
310
310
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
311
311
|
requirements:
|
312
312
|
- - ">="
|
313
313
|
- !ruby/object:Gem::Version
|
314
314
|
version: '0'
|
315
315
|
requirements: []
|
316
|
-
rubygems_version: 3.
|
316
|
+
rubygems_version: 3.3.27
|
317
317
|
signing_key:
|
318
318
|
specification_version: 4
|
319
319
|
summary: A stats collection and distributed tracing framework
|