opentelemetry-api 1.1.0 → 1.2.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/lib/opentelemetry/trace/propagation/trace_context/trace_parent.rb +1 -1
- data/lib/opentelemetry/trace/span.rb +1 -1
- data/lib/opentelemetry/trace/tracer.rb +8 -0
- data/lib/opentelemetry/trace/tracestate.rb +1 -1
- data/lib/opentelemetry/version.rb +1 -1
- metadata +6 -6
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 9ea7fb5085d8220f4b01ebb65df32177ec8ce608f849db6fe2e5db6828bc5f02
|
4
|
+
data.tar.gz: 574d5917f10f1d5c1252be784d9e1c53bd80948e8fc0db9916ed589573e12633
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 31e79256933559788d450620683945620126bea8e0035912550672b5134d0c688f15d4fe2b3c739c9b765b57e0f54d2d978c7543ad426646de456a3c235d58c4
|
7
|
+
data.tar.gz: 937b56f92d4bd058b39309502636ceec389590f0592c317acad4f51ea45d99763427496e423d0e7a449af3c6e14e31616de1f91da54259665b0978a01da1e34b
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,15 @@
|
|
1
1
|
# Release History: opentelemetry-api
|
2
2
|
|
3
|
+
### v1.2.1 / 2023-07-29
|
4
|
+
|
5
|
+
* DOCS: Describe Tracer#in_span arguments
|
6
|
+
|
7
|
+
### v1.2.0 / 2023-06-08
|
8
|
+
|
9
|
+
* BREAKING CHANGE: Remove support for EoL Ruby 2.7
|
10
|
+
|
11
|
+
* ADDED: Remove support for EoL Ruby 2.7
|
12
|
+
|
3
13
|
### v1.1.0 / 2022-09-14
|
4
14
|
|
5
15
|
* ADDED: Consistent probability sampler
|
@@ -22,7 +22,7 @@ module OpenTelemetry
|
|
22
22
|
MAX_VERSION = 254
|
23
23
|
private_constant :MAX_VERSION
|
24
24
|
|
25
|
-
REGEXP = /^(?<version>[A-Fa-f0-9]{2})-(?<trace_id>[A-Fa-f0-9]{32})-(?<span_id>[A-Fa-f0-9]{16})-(?<flags>[A-Fa-f0-9]{2})(?<ignored>-.*)
|
25
|
+
REGEXP = /^(?<version>[A-Fa-f0-9]{2})-(?<trace_id>[A-Fa-f0-9]{32})-(?<span_id>[A-Fa-f0-9]{16})-(?<flags>[A-Fa-f0-9]{2})(?<ignored>-.*)?$/
|
26
26
|
private_constant :REGEXP
|
27
27
|
|
28
28
|
INVALID_TRACE_ID = OpenTelemetry::Trace::SpanContext::INVALID.hex_trace_id
|
@@ -115,7 +115,7 @@ module OpenTelemetry
|
|
115
115
|
|
116
116
|
# Sets the Status to the Span
|
117
117
|
#
|
118
|
-
# If used, this will override the default Span status. Default is
|
118
|
+
# If used, this will override the default Span status. Default status is unset.
|
119
119
|
#
|
120
120
|
# Only the value of the last call will be recorded, and implementations
|
121
121
|
# are free to ignore previous calls.
|
@@ -21,6 +21,14 @@ module OpenTelemetry
|
|
21
21
|
# On exit, the Span that was active before calling this method will be reactivated. If an
|
22
22
|
# exception occurs during the execution of the provided block, it will be recorded on the
|
23
23
|
# span and reraised.
|
24
|
+
#
|
25
|
+
# @param name [String] the name of the span
|
26
|
+
# @param attributes [optional Hash] attributes to attach to the span {String => String,
|
27
|
+
# Numeric, Boolean, Array<String, Numeric, Boolean>}
|
28
|
+
# @param links [optional Array] an array of OpenTelemetry::Trace::Link instances
|
29
|
+
# @param start_timestamp [optional Integer] nanoseconds since Epoch
|
30
|
+
# @param kind [optional Symbol] One of :internal, :server, :client, :producer, :consumer
|
31
|
+
#
|
24
32
|
# @yield [span, context] yields the newly created span and a context containing the
|
25
33
|
# span to the block.
|
26
34
|
def in_span(name, attributes: nil, links: nil, start_timestamp: nil, kind: nil, &block)
|
@@ -63,7 +63,7 @@ module OpenTelemetry
|
|
63
63
|
|
64
64
|
MAX_MEMBER_COUNT = 32 # Defined by https://www.w3.org/TR/trace-context/
|
65
65
|
VALID_KEY = Regexp.union(%r(^[a-z][a-z0-9_\-*/]{,255}$), %r(^[a-z0-9][a-z0-9_\-*/]{,240}@[a-z][a-z0-9_\-*/]{,13}$)).freeze
|
66
|
-
VALID_VALUE = /^[ -~&&[^,=]]{,255}[!-~&&[^,=]]
|
66
|
+
VALID_VALUE = /^[ -~&&[^,=]]{,255}[!-~&&[^,=]]$/
|
67
67
|
private_constant(:MAX_MEMBER_COUNT, :VALID_KEY, :VALID_VALUE)
|
68
68
|
|
69
69
|
# @api private
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: opentelemetry-api
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.1
|
4
|
+
version: 1.2.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- OpenTelemetry Authors
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2023-08-01 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: benchmark-ipsa
|
@@ -201,10 +201,10 @@ homepage: https://github.com/open-telemetry/opentelemetry-ruby
|
|
201
201
|
licenses:
|
202
202
|
- Apache-2.0
|
203
203
|
metadata:
|
204
|
-
changelog_uri: https://open-telemetry.github.io/opentelemetry-ruby/opentelemetry-api/v1.1
|
204
|
+
changelog_uri: https://open-telemetry.github.io/opentelemetry-ruby/opentelemetry-api/v1.2.1/file.CHANGELOG.html
|
205
205
|
source_code_uri: https://github.com/open-telemetry/opentelemetry-ruby/tree/main/api
|
206
206
|
bug_tracker_uri: https://github.com/open-telemetry/opentelemetry-ruby/issues
|
207
|
-
documentation_uri: https://open-telemetry.github.io/opentelemetry-ruby/opentelemetry-api/v1.1
|
207
|
+
documentation_uri: https://open-telemetry.github.io/opentelemetry-ruby/opentelemetry-api/v1.2.1
|
208
208
|
post_install_message:
|
209
209
|
rdoc_options: []
|
210
210
|
require_paths:
|
@@ -213,14 +213,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
213
213
|
requirements:
|
214
214
|
- - ">="
|
215
215
|
- !ruby/object:Gem::Version
|
216
|
-
version:
|
216
|
+
version: '3.0'
|
217
217
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
218
218
|
requirements:
|
219
219
|
- - ">="
|
220
220
|
- !ruby/object:Gem::Version
|
221
221
|
version: '0'
|
222
222
|
requirements: []
|
223
|
-
rubygems_version: 3.
|
223
|
+
rubygems_version: 3.2.33
|
224
224
|
signing_key:
|
225
225
|
specification_version: 4
|
226
226
|
summary: A stats collection and distributed tracing framework
|