traces 0.2.0 → 0.3.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: e8d74b7b8712105a772f7d9cde7108dc2218137570ba71f11632cd539808a740
4
- data.tar.gz: 4a63fcc5efe56b48a074a6e66587bab35395daf9a0b20864e59b4987db9530e3
3
+ metadata.gz: cebb7ae2c860c548687f52033498988db4098d4fe4cba8a14c3fc72cfe957049
4
+ data.tar.gz: 5d13eb16c1d4506680b675568caa8e6f34751a2e1c6cd3abe8a1985c2e20933b
5
5
  SHA512:
6
- metadata.gz: f2291cae8c41890078266aaedbd14f760e94b18d76e55b2b32c792e6188770cee4565e96972711bf0cc83f6ddaacd1700d767eca56584423e7c55ee322ce295c
7
- data.tar.gz: 33b0e8f87d219f8c4122d356b2ee1188d6df6f89aea9f8583757bf1cf288c4ed393cd2bda96804c84fb7812014d545d872923cb7bfff22a8e7152f87aeb2b8aa
6
+ metadata.gz: 31c2216adb04fdb0c0bb63efac6a1f3e542c9b631bba09f66661d0adc16f15cb68102f374b67c65215a945b3c3a3e9bb71d1bd4295749aed856e75bbe6c35942
7
+ data.tar.gz: fa7f67ae12ddd7c2bc71525e2b0390dc862689a87f6c92ffa10058ca7f788a7c0974891de94c003245531666a1335efa4ab10c4895f8c5b897ff9cd77e156e8c
checksums.yaml.gz.sig CHANGED
Binary file
@@ -20,16 +20,71 @@
20
20
  # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
21
  # THE SOFTWARE.
22
22
 
23
+ require_relative '../context'
24
+
23
25
  require 'console'
26
+ require 'fiber'
27
+
28
+ class Fiber
29
+ attr_accessor :traces_backend_context
30
+ end
24
31
 
25
32
  module Traces
26
33
  module Backend
27
- private
28
-
29
- def trace(name, parent = nil, attributes: nil, &block)
30
- Console.logger.info(self, name, attributes)
34
+ module Console
35
+ # A span which validates tag assignment.
36
+ class Span
37
+ def initialize(context, instance, name)
38
+ @context = context
39
+ @instance = instance
40
+ @name = name
41
+ end
42
+
43
+ attr :context
44
+
45
+ # Assign some metadata to the span.
46
+ # @parameter key [String] The metadata key.
47
+ # @parameter value [Object] The metadata value. Should be coercable to a string.
48
+ def []= key, value
49
+ ::Console.logger.info(@context, @name, "#{key} = #{value}")
50
+ end
51
+ end
31
52
 
32
- yield
53
+ private
54
+
55
+ # Trace the given block of code and log the execution.
56
+ # @parameter name [String] A useful name/annotation for the recorded span.
57
+ # @parameter attributes [Hash] Metadata for the recorded span.
58
+ def trace(name, attributes: {}, &block)
59
+ context = Context.nested(Fiber.current.traces_backend_context)
60
+ Fiber.current.traces_backend_context = context
61
+
62
+ ::Console.logger.info(self, name, attributes)
63
+
64
+ if block.arity.zero?
65
+ yield
66
+ else
67
+ yield Span.new(context, self, name)
68
+ end
69
+ end
70
+
71
+ # Assign a trace context to the current execution scope.
72
+ def trace_context= context
73
+ Fiber.current.traces_backend_context = context
74
+ end
75
+
76
+ # Get a trace context from the current execution scope.
77
+ # @parameter span [Span] An optional span from which to extract the context.
78
+ def trace_context(span = nil)
79
+ if span
80
+ span.context
81
+ else
82
+ Fiber.current.traces_backend_context
83
+ end
84
+ end
33
85
  end
86
+
87
+ # This is the default.
88
+ self.include(Console)
34
89
  end
35
90
  end
@@ -20,18 +20,75 @@
20
20
  # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
21
  # THE SOFTWARE.
22
22
 
23
- require 'console'
23
+ require_relative '../context'
24
+ require 'fiber'
25
+
26
+ class Fiber
27
+ attr_accessor :traces_backend_context
28
+ end
24
29
 
25
30
  module Traces
26
31
  module Backend
27
- private
28
-
29
- def trace(name, parent = nil, attributes: nil, &block)
30
- unless name.is_a?(String)
31
- raise ArgumentError, "Invalid name!"
32
+ module Test
33
+ # A span which validates tag assignment.
34
+ class Span
35
+ def initialize(context)
36
+ @context = context
37
+ end
38
+
39
+ attr :context
40
+
41
+ # Assign some metadata to the span.
42
+ # @parameter key [String] The metadata key.
43
+ # @parameter value [Object] The metadata value. Should be coercable to a string.
44
+ def []= key, value
45
+ unless key.is_a?(String)
46
+ raise ArgumentError, "Invalid name!"
47
+ end
48
+
49
+ unless String(Value)
50
+ raise ArgumentError, "Invalid value!"
51
+ end
52
+ end
53
+ end
54
+
55
+ private
56
+
57
+ # Trace the given block of code and validate the interface usage.
58
+ # @parameter name [String] A useful name/annotation for the recorded span.
59
+ # @parameter attributes [Hash] Metadata for the recorded span.
60
+ def trace(name, attributes: nil, &block)
61
+ unless name.is_a?(String)
62
+ raise ArgumentError, "Invalid name!"
63
+ end
64
+
65
+ context = Context.nested(Fiber.current.traces_backend_context)
66
+ Fiber.current.traces_backend_context = context
67
+
68
+ if block.arity.zero?
69
+ yield
70
+ else
71
+ span = Span.new(context)
72
+ yield span
73
+ end
32
74
  end
33
75
 
34
- yield
76
+ # Assign a trace context to the current execution scope.
77
+ def trace_context= context
78
+ Fiber.current.traces_backend_context = context
79
+ end
80
+
81
+ # Get a trace context from the current execution scope.
82
+ # @parameter span [Span] An optional span from which to extract the context.
83
+ def trace_context(span = nil)
84
+ if span
85
+ span.context
86
+ else
87
+ Fiber.current.traces_backend_context
88
+ end
89
+ end
35
90
  end
91
+
92
+ self.include(Test)
36
93
  end
37
- end
94
+ end
@@ -21,7 +21,12 @@
21
21
  # THE SOFTWARE.
22
22
 
23
23
  module Traces
24
+ # Require a specific trace backend.
24
25
  def self.require_backend(env = ENV)
26
+ if const_defined?(:Backend)
27
+ raise RuntimeError, "Backend already required!"
28
+ end
29
+
25
30
  if backend = env['TRACES_BACKEND']
26
31
  require(backend)
27
32
  end
@@ -20,15 +20,19 @@
20
20
  # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
21
  # THE SOFTWARE.
22
22
 
23
+ require 'securerandom'
24
+
23
25
  module Traces
24
- # A generic representation of the current span.
25
- # We follow the <https://github.com/openzipkin/b3-propagation> model.
26
+ # A generic representation of the current tracing context.
26
27
  class Context
27
- def self.parse(parent, state = nil)
28
+ # Parse a string representation of a distributed trace.
29
+ # @parameter parent [String] The parent trace context.
30
+ # @parameter state [Array(String)] Any attached trace state.
31
+ def self.parse(parent, state = nil, **options)
28
32
  version, trace_id, parent_id, flags = parent.split('-')
29
33
 
30
34
  if version == '00'
31
- flags = Integer(trace_flags, 16)
35
+ flags = Integer(flags, 16)
32
36
 
33
37
  if state.is_a?(String)
34
38
  state = state.split(',')
@@ -38,7 +42,23 @@ module Traces
38
42
  state = state.map{|item| item.split('=')}
39
43
  end
40
44
 
41
- self.new(trace_id, parent_id, flags, state)
45
+ self.new(trace_id, parent_id, flags, state, **options)
46
+ end
47
+ end
48
+
49
+ # Create a local trace context which is likley to be globally unique.
50
+ # @parameter flags [Integer] Any trace context flags.
51
+ def self.local(flags = 0, **options)
52
+ self.new(SecureRandom.hex(16), SecureRandom.hex(8), flags, options)
53
+ end
54
+
55
+ # Nest a local trace context in an optional parent context.
56
+ # @parameter parent [Context] An optional parent context.
57
+ def self.nested(parent, flags = 0)
58
+ if parent
59
+ parent.nested(flags)
60
+ else
61
+ self.local(flags)
42
62
  end
43
63
  end
44
64
 
@@ -46,25 +66,40 @@ module Traces
46
66
 
47
67
  def initialize(trace_id, parent_id, flags, state = nil, remote: false)
48
68
  @trace_id = trace_id
49
- @parent_id = span_id
69
+ @parent_id = parent_id
50
70
  @flags = flags
51
71
  @state = state
52
72
  @remote = remote
53
73
  end
54
74
 
75
+ # Create a new nested trace context in which spans can be recorded.
76
+ def nested(flags = @flags)
77
+ Context.new(@trace_id, SecureRandom.hex(8), flags, @state, remote: @remote)
78
+ end
79
+
80
+ # The ID of the whole trace forest and is used to uniquely identify a distributed trace through a system. It is represented as a 16-byte array, for example, 4bf92f3577b34da6a3ce929d0e0e4736. All bytes as zero (00000000000000000000000000000000) is considered an invalid value.
55
81
  attr :trace_id
56
- attr :span_id
82
+
83
+ # The ID of this request as known by the caller (in some tracing systems, this is known as the span-id, where a span is the execution of a client request). It is represented as an 8-byte array, for example, 00f067aa0ba902b7. All bytes as zero (0000000000000000) is considered an invalid value.
84
+ attr :parent_id
85
+
86
+ # An 8-bit field that controls tracing flags such as sampling, trace level, etc. These flags are recommendations given by the caller rather than strict rules.
57
87
  attr :flags
88
+
89
+ # Provides additional vendor-specific trace identification information across different distributed tracing systems. Conveys information about the request’s position in multiple distributed tracing graphs.
58
90
  attr :state
59
91
 
92
+ # Denotes that the caller may have recorded trace data. When unset, the caller did not record trace data out-of-band.
60
93
  def sampled?
61
94
  @flags & SAMPLED
62
95
  end
63
96
 
97
+ # Whether this context was created from a distributed trace header.
64
98
  def remote?
65
99
  @remote
66
100
  end
67
101
 
102
+ # A string representation of the trace context (excluding trace state).
68
103
  def to_s
69
104
  "00-#{@trace_id}-#{@parent_id}-#{@flags.to_s(16)}"
70
105
  end
@@ -23,6 +23,7 @@
23
23
  require_relative 'backend'
24
24
 
25
25
  module Traces
26
+ # A module which contains tracing specific wrappers.
26
27
  module Provider
27
28
  def traces_provider
28
29
  @traces_provider ||= Module.new
@@ -30,7 +31,8 @@ module Traces
30
31
  end
31
32
 
32
33
  # Bail out if there is no backend configured.
33
- if Traces.const_defined?(:Backend)
34
+ if self.const_defined?(:Backend)
35
+ # Extend the specified class in order to emit traces.
34
36
  def self.Provider(klass, &block)
35
37
  klass.extend(Provider)
36
38
 
@@ -21,5 +21,5 @@
21
21
  # THE SOFTWARE.
22
22
 
23
23
  module Traces
24
- VERSION = "0.2.0"
24
+ VERSION = "0.3.0"
25
25
  end
data.tar.gz.sig CHANGED
Binary file
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: traces
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.0
4
+ version: 0.3.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Samuel Williams
@@ -36,7 +36,7 @@ cert_chain:
36
36
  RAOsIl+HOBTb252nx1kIRN5hqQx272AJCbCjKx8egcUQKffFVVCI0nye09v5CK+a
37
37
  HiLJ8VOFx6w=
38
38
  -----END CERTIFICATE-----
39
- date: 2021-10-17 00:00:00.000000000 Z
39
+ date: 2021-10-18 00:00:00.000000000 Z
40
40
  dependencies:
41
41
  - !ruby/object:Gem::Dependency
42
42
  name: rspec
metadata.gz.sig CHANGED
Binary file