traces-backend-open_telemetry 0.1.0 → 0.3.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
- checksums.yaml.gz.sig +0 -0
- data/lib/traces/backend/open_telemetry/interface.rb +60 -51
- data/lib/traces/backend/open_telemetry/version.rb +3 -20
- data/lib/traces/backend/open_telemetry.rb +3 -21
- data/license.md +21 -0
- data/readme.md +51 -0
- data/releases.md +20 -0
- data.tar.gz.sig +0 -0
- metadata +39 -53
- metadata.gz.sig +1 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e827995b4fdb7c14068483b4a7796eb958378f4ad093c59f7d86be165d8b91f2
|
4
|
+
data.tar.gz: 1fa19c544b849a9a761ae757ec9198767432517106187d801d6f0e0f836522a1
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3d08dd5e72d329c9f114e7f10bad100144ca856f52d2e966cc52161a6cbf59c3c4bfa4ed4b5653e33c6c036f96ca6b4b71fa534ef944d5b68176a08623a0444c
|
7
|
+
data.tar.gz: d7115c5989a4ecb957a285382744b61e565cf9951668998cc0edd4596bd35507cde8f913b5fd34c95a2f2788d9891182d3f7e8e02462a3f68e0eeff33eff7091
|
checksums.yaml.gz.sig
CHANGED
Binary file
|
@@ -1,29 +1,12 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
|
-
#
|
4
|
-
#
|
5
|
-
# Permission is hereby granted, free of charge, to any person obtaining a copy
|
6
|
-
# of this software and associated documentation files (the "Software"), to deal
|
7
|
-
# in the Software without restriction, including without limitation the rights
|
8
|
-
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
9
|
-
# copies of the Software, and to permit persons to whom the Software is
|
10
|
-
# furnished to do so, subject to the following conditions:
|
11
|
-
#
|
12
|
-
# The above copyright notice and this permission notice shall be included in
|
13
|
-
# all copies or substantial portions of the Software.
|
14
|
-
#
|
15
|
-
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
16
|
-
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
17
|
-
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
18
|
-
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
19
|
-
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
20
|
-
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
21
|
-
# THE SOFTWARE.
|
3
|
+
# Released under the MIT License.
|
4
|
+
# Copyright, 2021-2025, by Samuel Williams.
|
22
5
|
|
23
|
-
require
|
6
|
+
require "opentelemetry"
|
24
7
|
|
25
|
-
require
|
26
|
-
require_relative
|
8
|
+
require "traces/context"
|
9
|
+
require_relative "version"
|
27
10
|
|
28
11
|
module Traces
|
29
12
|
module Backend
|
@@ -34,53 +17,79 @@ module Traces
|
|
34
17
|
|
35
18
|
module Interface
|
36
19
|
def trace(name, attributes: nil, &block)
|
37
|
-
|
38
|
-
|
39
|
-
begin
|
40
|
-
if block.arity.zero?
|
41
|
-
yield
|
42
|
-
else
|
43
|
-
yield span
|
44
|
-
end
|
45
|
-
rescue Exception => error
|
46
|
-
span&.record_exception(error)
|
47
|
-
span&.status = ::OpenTelemetry::Traces::Status.error("Unhandled exception of type: #{error.class}")
|
48
|
-
raise
|
49
|
-
ensure
|
50
|
-
span&.finish
|
51
|
-
end
|
20
|
+
TRACER.in_span(name, attributes: attributes&.transform_keys(&:to_s), &block)
|
52
21
|
end
|
53
22
|
|
54
23
|
def trace_context=(context)
|
55
|
-
|
56
|
-
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
|
61
|
-
|
62
|
-
|
63
|
-
|
64
|
-
|
65
|
-
|
24
|
+
if context
|
25
|
+
span_context = ::OpenTelemetry::Trace::SpanContext.new(
|
26
|
+
trace_id: context.trace_id,
|
27
|
+
span_id: context.parent_id,
|
28
|
+
trace_flags: ::OpenTelemetry::Trace::TraceFlags.from_byte(context.flags),
|
29
|
+
tracestate: context.state,
|
30
|
+
remote: context.remote?
|
31
|
+
)
|
32
|
+
|
33
|
+
span = ::OpenTelemetry::Trace.non_recording_span(span_context)
|
34
|
+
context = ::OpenTelemetry::Trace.context_with_span(span)
|
35
|
+
::OpenTelemetry::Context.attach(context)
|
36
|
+
end
|
66
37
|
end
|
67
38
|
|
68
39
|
def trace_context(span = ::OpenTelemetry::Trace.current_span)
|
69
40
|
if span_context = span.context
|
70
|
-
|
41
|
+
flags = 0
|
42
|
+
|
43
|
+
if span_context.trace_flags.sampled?
|
44
|
+
flags |= Context::SAMPLED
|
45
|
+
end
|
71
46
|
|
72
47
|
return Context.new(
|
73
48
|
span_context.trace_id,
|
74
49
|
span_context.span_id,
|
75
|
-
|
50
|
+
flags,
|
76
51
|
span_context.tracestate,
|
77
52
|
remote: span_context.remote?
|
78
53
|
)
|
79
54
|
end
|
80
55
|
end
|
56
|
+
|
57
|
+
def current_context
|
58
|
+
::OpenTelemetry::Context.current
|
59
|
+
end
|
60
|
+
|
61
|
+
def with_context(context)
|
62
|
+
if block_given?
|
63
|
+
::OpenTelemetry::Context.with_current(context) do
|
64
|
+
yield
|
65
|
+
end
|
66
|
+
else
|
67
|
+
::OpenTelemetry::Context.attach(context)
|
68
|
+
end
|
69
|
+
end
|
70
|
+
|
71
|
+
def inject(headers = nil, context = nil)
|
72
|
+
context ||= ::OpenTelemetry::Context.current
|
73
|
+
headers ||= Hash.new
|
74
|
+
|
75
|
+
count = headers.count
|
76
|
+
|
77
|
+
::OpenTelemetry.propagation.inject(headers, context: context)
|
78
|
+
|
79
|
+
if count == headers.count
|
80
|
+
# No injection was performed, so return nil:
|
81
|
+
headers = nil
|
82
|
+
end
|
83
|
+
|
84
|
+
return headers
|
85
|
+
end
|
86
|
+
|
87
|
+
def extract(headers)
|
88
|
+
::OpenTelemetry.propagation.extract(headers)
|
89
|
+
end
|
81
90
|
end
|
82
91
|
end
|
83
92
|
|
84
93
|
Interface = OpenTelemetry::Interface
|
85
94
|
end
|
86
|
-
end
|
95
|
+
end
|
@@ -1,29 +1,12 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
|
-
#
|
4
|
-
#
|
5
|
-
# Permission is hereby granted, free of charge, to any person obtaining a copy
|
6
|
-
# of this software and associated documentation files (the "Software"), to deal
|
7
|
-
# in the Software without restriction, including without limitation the rights
|
8
|
-
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
9
|
-
# copies of the Software, and to permit persons to whom the Software is
|
10
|
-
# furnished to do so, subject to the following conditions:
|
11
|
-
#
|
12
|
-
# The above copyright notice and this permission notice shall be included in
|
13
|
-
# all copies or substantial portions of the Software.
|
14
|
-
#
|
15
|
-
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
16
|
-
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
17
|
-
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
18
|
-
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
19
|
-
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
20
|
-
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
21
|
-
# THE SOFTWARE.
|
3
|
+
# Released under the MIT License.
|
4
|
+
# Copyright, 2021-2025, by Samuel Williams.
|
22
5
|
|
23
6
|
module Traces
|
24
7
|
module Backend
|
25
8
|
module OpenTelemetry
|
26
|
-
VERSION = "0.
|
9
|
+
VERSION = "0.3.0"
|
27
10
|
end
|
28
11
|
end
|
29
12
|
end
|
@@ -1,24 +1,6 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
|
-
#
|
4
|
-
#
|
5
|
-
# Permission is hereby granted, free of charge, to any person obtaining a copy
|
6
|
-
# of this software and associated documentation files (the "Software"), to deal
|
7
|
-
# in the Software without restriction, including without limitation the rights
|
8
|
-
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
9
|
-
# copies of the Software, and to permit persons to whom the Software is
|
10
|
-
# furnished to do so, subject to the following conditions:
|
11
|
-
#
|
12
|
-
# The above copyright notice and this permission notice shall be included in
|
13
|
-
# all copies or substantial portions of the Software.
|
14
|
-
#
|
15
|
-
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
16
|
-
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
17
|
-
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
18
|
-
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
19
|
-
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
20
|
-
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
21
|
-
# THE SOFTWARE.
|
3
|
+
# Released under the MIT License.
|
4
|
+
# Copyright, 2021-2025, by Samuel Williams.
|
22
5
|
|
23
|
-
|
24
|
-
require_relative 'open_telemetry/interface'
|
6
|
+
require_relative "open_telemetry/interface"
|
data/license.md
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
# MIT License
|
2
|
+
|
3
|
+
Copyright, 2021-2025, by Samuel Williams.
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
7
|
+
in the Software without restriction, including without limitation the rights
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
10
|
+
furnished to do so, subject to the following conditions:
|
11
|
+
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
13
|
+
copies or substantial portions of the Software.
|
14
|
+
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
21
|
+
SOFTWARE.
|
data/readme.md
ADDED
@@ -0,0 +1,51 @@
|
|
1
|
+
# Traces::Backend::OpenTelemetry
|
2
|
+
|
3
|
+
A backend for sending traces to OpenTelemetry.
|
4
|
+
|
5
|
+
[](https://github.com/socketry/traces-backend-open_telemetry/actions?workflow=Test)
|
6
|
+
|
7
|
+
## Installation
|
8
|
+
|
9
|
+
``` shell
|
10
|
+
$ bundle add traces-backend-open_telemetry
|
11
|
+
```
|
12
|
+
|
13
|
+
## Usage
|
14
|
+
|
15
|
+
Please see the [project documentation](https://github.com/socketry/traces-backend-open_telemetry) for more details.
|
16
|
+
|
17
|
+
- [Getting Started](https://github.com/socketry/traces-backend-open_telemetryguides/getting-started/index) - This guide explains how to get started with `traces-backend-open_telemetry` to send application traces to OpenTelemetry.
|
18
|
+
|
19
|
+
## Releases
|
20
|
+
|
21
|
+
Please see the [project releases](https://github.com/socketry/traces-backend-open_telemetryreleases/index) for all releases.
|
22
|
+
|
23
|
+
### v0.3.0
|
24
|
+
|
25
|
+
- [New Context Propagation Interface](https://github.com/socketry/traces-backend-open_telemetryreleases/index#new-context-propagation-interface)
|
26
|
+
|
27
|
+
### v0.2.0
|
28
|
+
|
29
|
+
- Prefer to use `Tracer#in_span`.
|
30
|
+
|
31
|
+
### v0.1.0
|
32
|
+
|
33
|
+
- Complete implementation of traces backend for OpenTelemetry.
|
34
|
+
|
35
|
+
## Contributing
|
36
|
+
|
37
|
+
We welcome contributions to this project.
|
38
|
+
|
39
|
+
1. Fork it.
|
40
|
+
2. Create your feature branch (`git checkout -b my-new-feature`).
|
41
|
+
3. Commit your changes (`git commit -am 'Add some feature'`).
|
42
|
+
4. Push to the branch (`git push origin my-new-feature`).
|
43
|
+
5. Create new Pull Request.
|
44
|
+
|
45
|
+
### Developer Certificate of Origin
|
46
|
+
|
47
|
+
In order to protect users of this project, we require all contributors to comply with the [Developer Certificate of Origin](https://developercertificate.org/). This ensures that all contributions are properly licensed and attributed.
|
48
|
+
|
49
|
+
### Community Guidelines
|
50
|
+
|
51
|
+
This project is best served by a collaborative and respectful environment. Treat each other professionally, respect differing viewpoints, and engage constructively. Harassment, discrimination, or harmful behavior is not tolerated. Communicate clearly, listen actively, and support one another. If any issues arise, please inform the project maintainers.
|
data/releases.md
ADDED
@@ -0,0 +1,20 @@
|
|
1
|
+
# Releases
|
2
|
+
|
3
|
+
## v0.3.0
|
4
|
+
|
5
|
+
### New Context Propagation Interface
|
6
|
+
|
7
|
+
This release adds comprehensive support for OpenTelemetry's context propagation system, enabling efficient inter-process and intra-process tracing with full W3C compliance.
|
8
|
+
|
9
|
+
- `Traces.current_context` - Capture the current trace context for local propagation between execution contexts (threads, fibers).
|
10
|
+
- `Traces.with_context(context)` - Execute code within a specific trace context, with automatic restoration when used with blocks.
|
11
|
+
- `Traces.inject(headers = nil, context = nil)` - Inject W3C Trace Context and Baggage headers into a headers hash for distributed propagation.
|
12
|
+
- `Traces.extract(headers)` - Extract trace context from W3C Trace Context headers.
|
13
|
+
|
14
|
+
## v0.2.0
|
15
|
+
|
16
|
+
- Prefer to use `Tracer#in_span`.
|
17
|
+
|
18
|
+
## v0.1.0
|
19
|
+
|
20
|
+
- Complete implementation of traces backend for OpenTelemetry.
|
data.tar.gz.sig
CHANGED
Binary file
|
metadata
CHANGED
@@ -1,57 +1,43 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: traces-backend-open_telemetry
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.3.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Samuel Williams
|
8
|
-
autorequire:
|
9
8
|
bindir: bin
|
10
9
|
cert_chain:
|
11
10
|
- |
|
12
11
|
-----BEGIN CERTIFICATE-----
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
12
|
+
MIIE2DCCA0CgAwIBAgIBATANBgkqhkiG9w0BAQsFADBhMRgwFgYDVQQDDA9zYW11
|
13
|
+
ZWwud2lsbGlhbXMxHTAbBgoJkiaJk/IsZAEZFg1vcmlvbnRyYW5zZmVyMRIwEAYK
|
14
|
+
CZImiZPyLGQBGRYCY28xEjAQBgoJkiaJk/IsZAEZFgJuejAeFw0yMjA4MDYwNDUz
|
15
|
+
MjRaFw0zMjA4MDMwNDUzMjRaMGExGDAWBgNVBAMMD3NhbXVlbC53aWxsaWFtczEd
|
16
|
+
MBsGCgmSJomT8ixkARkWDW9yaW9udHJhbnNmZXIxEjAQBgoJkiaJk/IsZAEZFgJj
|
17
|
+
bzESMBAGCgmSJomT8ixkARkWAm56MIIBojANBgkqhkiG9w0BAQEFAAOCAY8AMIIB
|
18
|
+
igKCAYEAomvSopQXQ24+9DBB6I6jxRI2auu3VVb4nOjmmHq7XWM4u3HL+pni63X2
|
19
|
+
9qZdoq9xt7H+RPbwL28LDpDNflYQXoOhoVhQ37Pjn9YDjl8/4/9xa9+NUpl9XDIW
|
20
|
+
sGkaOY0eqsQm1pEWkHJr3zn/fxoKPZPfaJOglovdxf7dgsHz67Xgd/ka+Wo1YqoE
|
21
|
+
e5AUKRwUuvaUaumAKgPH+4E4oiLXI4T1Ff5Q7xxv6yXvHuYtlMHhYfgNn8iiW8WN
|
22
|
+
XibYXPNP7NtieSQqwR/xM6IRSoyXKuS+ZNGDPUUGk8RoiV/xvVN4LrVm9upSc0ss
|
23
|
+
RZ6qwOQmXCo/lLcDUxJAgG95cPw//sI00tZan75VgsGzSWAOdjQpFM0l4dxvKwHn
|
24
|
+
tUeT3ZsAgt0JnGqNm2Bkz81kG4A2hSyFZTFA8vZGhp+hz+8Q573tAR89y9YJBdYM
|
25
|
+
zp0FM4zwMNEUwgfRzv1tEVVUEXmoFCyhzonUUw4nE4CFu/sE3ffhjKcXcY//qiSW
|
26
|
+
xm4erY3XAgMBAAGjgZowgZcwCQYDVR0TBAIwADALBgNVHQ8EBAMCBLAwHQYDVR0O
|
27
|
+
BBYEFO9t7XWuFf2SKLmuijgqR4sGDlRsMC4GA1UdEQQnMCWBI3NhbXVlbC53aWxs
|
28
|
+
aWFtc0BvcmlvbnRyYW5zZmVyLmNvLm56MC4GA1UdEgQnMCWBI3NhbXVlbC53aWxs
|
29
|
+
aWFtc0BvcmlvbnRyYW5zZmVyLmNvLm56MA0GCSqGSIb3DQEBCwUAA4IBgQB5sxkE
|
30
|
+
cBsSYwK6fYpM+hA5B5yZY2+L0Z+27jF1pWGgbhPH8/FjjBLVn+VFok3CDpRqwXCl
|
31
|
+
xCO40JEkKdznNy2avOMra6PFiQyOE74kCtv7P+Fdc+FhgqI5lMon6tt9rNeXmnW/
|
32
|
+
c1NaMRdxy999hmRGzUSFjozcCwxpy/LwabxtdXwXgSay4mQ32EDjqR1TixS1+smp
|
33
|
+
8C/NCWgpIfzpHGJsjvmH2wAfKtTTqB9CVKLCWEnCHyCaRVuKkrKjqhYCdmMBqCws
|
34
|
+
JkxfQWC+jBVeG9ZtPhQgZpfhvh+6hMhraUYRQ6XGyvBqEUe+yo6DKIT3MtGE2+CP
|
35
|
+
eX9i9ZWBydWb8/rvmwmX2kkcBbX0hZS1rcR593hGc61JR6lvkGYQ2MYskBveyaxt
|
36
|
+
Q2K9NVun/S785AP05vKkXZEFYxqG6EW012U4oLcFl5MySFajYXRYbuUpH6AY+HP8
|
37
|
+
voD0MPg1DssDLKwXyt1eKD/+Fq0bFWhwVM/1XiAXL7lyYUyOq24KHgQ2Csg=
|
38
38
|
-----END CERTIFICATE-----
|
39
|
-
date:
|
39
|
+
date: 1980-01-02 00:00:00.000000000 Z
|
40
40
|
dependencies:
|
41
|
-
- !ruby/object:Gem::Dependency
|
42
|
-
name: traces
|
43
|
-
requirement: !ruby/object:Gem::Requirement
|
44
|
-
requirements:
|
45
|
-
- - "~>"
|
46
|
-
- !ruby/object:Gem::Version
|
47
|
-
version: 0.4.0
|
48
|
-
type: :runtime
|
49
|
-
prerelease: false
|
50
|
-
version_requirements: !ruby/object:Gem::Requirement
|
51
|
-
requirements:
|
52
|
-
- - "~>"
|
53
|
-
- !ruby/object:Gem::Version
|
54
|
-
version: 0.4.0
|
55
41
|
- !ruby/object:Gem::Dependency
|
56
42
|
name: opentelemetry-api
|
57
43
|
requirement: !ruby/object:Gem::Requirement
|
@@ -67,21 +53,19 @@ dependencies:
|
|
67
53
|
- !ruby/object:Gem::Version
|
68
54
|
version: '1.0'
|
69
55
|
- !ruby/object:Gem::Dependency
|
70
|
-
name:
|
56
|
+
name: traces
|
71
57
|
requirement: !ruby/object:Gem::Requirement
|
72
58
|
requirements:
|
73
59
|
- - "~>"
|
74
60
|
- !ruby/object:Gem::Version
|
75
|
-
version: '
|
76
|
-
type: :
|
61
|
+
version: '0.10'
|
62
|
+
type: :runtime
|
77
63
|
prerelease: false
|
78
64
|
version_requirements: !ruby/object:Gem::Requirement
|
79
65
|
requirements:
|
80
66
|
- - "~>"
|
81
67
|
- !ruby/object:Gem::Version
|
82
|
-
version: '
|
83
|
-
description:
|
84
|
-
email:
|
68
|
+
version: '0.10'
|
85
69
|
executables: []
|
86
70
|
extensions: []
|
87
71
|
extra_rdoc_files: []
|
@@ -89,11 +73,14 @@ files:
|
|
89
73
|
- lib/traces/backend/open_telemetry.rb
|
90
74
|
- lib/traces/backend/open_telemetry/interface.rb
|
91
75
|
- lib/traces/backend/open_telemetry/version.rb
|
76
|
+
- license.md
|
77
|
+
- readme.md
|
78
|
+
- releases.md
|
92
79
|
homepage: https://github.com/socketry/traces-backend-open_telemetry
|
93
80
|
licenses:
|
94
81
|
- MIT
|
95
|
-
metadata:
|
96
|
-
|
82
|
+
metadata:
|
83
|
+
source_code_uri: https://github.com/socketry/traces-backend-open_telemetry.git
|
97
84
|
rdoc_options: []
|
98
85
|
require_paths:
|
99
86
|
- lib
|
@@ -101,15 +88,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
101
88
|
requirements:
|
102
89
|
- - ">="
|
103
90
|
- !ruby/object:Gem::Version
|
104
|
-
version: '
|
91
|
+
version: '3.2'
|
105
92
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
106
93
|
requirements:
|
107
94
|
- - ">="
|
108
95
|
- !ruby/object:Gem::Version
|
109
96
|
version: '0'
|
110
97
|
requirements: []
|
111
|
-
rubygems_version: 3.
|
112
|
-
signing_key:
|
98
|
+
rubygems_version: 3.6.9
|
113
99
|
specification_version: 4
|
114
100
|
summary: A traces backend for Open Telemetry.
|
115
101
|
test_files: []
|
metadata.gz.sig
CHANGED