trace 0.3.1 → 0.4.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/trace/backend/console.rb +0 -19
- data/lib/trace/backend/datadog.rb +68 -0
- data/lib/trace/backend/open_telemetry.rb +0 -15
- data/lib/trace/version.rb +1 -1
- metadata +3 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 54c4527ca062f533a6c0e085d4dba7b9c484e23791d43e0401462e87c40cce31
|
4
|
+
data.tar.gz: 9861c09eae777671040e08ee5dcc2465381bb83566f9e3f69b08a1ffe68cb2a2
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b5bbf6b42a4236f7fa548be739b9f697d69974509a1f7f6e497f7c023cf2283934b9b07a97c8509f095c5ef6b523656278c6fcd2022bd3dd5005da1e941bc845
|
7
|
+
data.tar.gz: 9df11d2f2bc4ddfe1694622b38db3cfa54005ad276d25ceedea52600290f3fe0b7c602de1502b4ade12039ad7f08377dcfede944b2db27339171aaf648c288aa
|
@@ -26,25 +26,6 @@ module Trace
|
|
26
26
|
module Backend
|
27
27
|
private
|
28
28
|
|
29
|
-
# Increment or decrement (part of a count) a named metric.
|
30
|
-
def adjust_metric(name, amount, **attributes)
|
31
|
-
if amount > 0
|
32
|
-
Console.logger.info(self, "#{name} +#{amount}")
|
33
|
-
else
|
34
|
-
Console.logger.info(self, "#{name} -#{amount}")
|
35
|
-
end
|
36
|
-
end
|
37
|
-
|
38
|
-
# Record a specific value (part of a distribution) for a named metric.
|
39
|
-
def record_metric(name, value, **attributes)
|
40
|
-
Console.logger.info(self, "#{name} << #{value}")
|
41
|
-
end
|
42
|
-
|
43
|
-
# Record a specific value (part of a gauge) for a named metric.
|
44
|
-
def observe_metric(name, value, **attributes)
|
45
|
-
Console.logger.info(self, "#{name} = #{value}")
|
46
|
-
end
|
47
|
-
|
48
29
|
def trace(name, parent = nil, **attributes, &block)
|
49
30
|
Console.logger.measure(self, name, parent: parent, **attributes) do
|
50
31
|
begin
|
@@ -0,0 +1,68 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
# Copyright, 2021, by Samuel G. D. Williams. <http://www.codeotaku.com>
|
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.
|
22
|
+
|
23
|
+
require 'console'
|
24
|
+
|
25
|
+
module Trace
|
26
|
+
module Backend
|
27
|
+
private
|
28
|
+
|
29
|
+
def trace(name, parent = nil, **attributes, &block)
|
30
|
+
if parent
|
31
|
+
parent = Datadog::Context.new(
|
32
|
+
trace_id: parent.trace_id,
|
33
|
+
span_id: parent.span_id,
|
34
|
+
sampled: parent.sampled?,
|
35
|
+
)
|
36
|
+
end
|
37
|
+
|
38
|
+
Datadog.tracer.trace(name, child_of: parent, tags: attributes) do |span|
|
39
|
+
begin
|
40
|
+
if block.arity.zero?
|
41
|
+
yield
|
42
|
+
else
|
43
|
+
yield trace_span_context(span)
|
44
|
+
end
|
45
|
+
rescue Exception => error
|
46
|
+
Console.logger.error(self, error)
|
47
|
+
raise
|
48
|
+
end
|
49
|
+
end
|
50
|
+
end
|
51
|
+
|
52
|
+
def trace_span_context(span)
|
53
|
+
flags = 0
|
54
|
+
|
55
|
+
if span.sampled
|
56
|
+
flags |= Context::SAMPLED
|
57
|
+
end
|
58
|
+
|
59
|
+
return Context.new(
|
60
|
+
span.trace_id,
|
61
|
+
span.span_id,
|
62
|
+
flags,
|
63
|
+
nil,
|
64
|
+
remote: false
|
65
|
+
)
|
66
|
+
end
|
67
|
+
end
|
68
|
+
end
|
@@ -26,21 +26,6 @@ module Trace
|
|
26
26
|
module Backend
|
27
27
|
private
|
28
28
|
|
29
|
-
# Increment or decrement (part of a count) a named metric.
|
30
|
-
def adjust_metric(name, amount, **attributes)
|
31
|
-
# No-op.
|
32
|
-
end
|
33
|
-
|
34
|
-
# Record a specific value (part of a distribution) for a named metric.
|
35
|
-
def record_metric(name, value, **attributes)
|
36
|
-
# No-op.
|
37
|
-
end
|
38
|
-
|
39
|
-
# Record a specific value (part of a gauge) for a named metric.
|
40
|
-
def observe_metric(name, value, **attributes)
|
41
|
-
# No-op.
|
42
|
-
end
|
43
|
-
|
44
29
|
# Provides a backend that writes data to OpenTelemetry.
|
45
30
|
# See <https://github.com/open-telemetry/opentelemetry-ruby> for more details.
|
46
31
|
TRACER = ::OpenTelemetry.tracer_provider.tracer(Trace, Trace::VERSION)
|
data/lib/trace/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: trace
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.4.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Samuel Williams
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2021-09-
|
11
|
+
date: 2021-09-03 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rspec
|
@@ -32,6 +32,7 @@ extra_rdoc_files: []
|
|
32
32
|
files:
|
33
33
|
- lib/trace.rb
|
34
34
|
- lib/trace/backend/console.rb
|
35
|
+
- lib/trace/backend/datadog.rb
|
35
36
|
- lib/trace/backend/open_telemetry.rb
|
36
37
|
- lib/trace/backend/test.rb
|
37
38
|
- lib/trace/context.rb
|