zipkin-tracer 0.27.1 → 0.27.2.1
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/lib/zipkin-tracer/trace.rb +2 -2
- data/lib/zipkin-tracer/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 7b9286e346ac3ab6cb9cded254eeb3df0117241e4c07d252f3e5c9b15f7067c2
|
|
4
|
+
data.tar.gz: aa0102da08828fb648582fe55b907630a6d73631480d816dd59ea475fd31ffd6
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: ffc2fdfa24cf887da6e588490f4b9329bf971f10d61923f36b89a12942c602147b8700beec988a94882767c27764116f5c6eb5584bf03777c4d4c938ff282828
|
|
7
|
+
data.tar.gz: bfc03ce3b379fa40e8da2a30029f3780a6681306848f6e11a468c24d2eb03f443bd4694dc8a1bccbf11a1ac6e7e355637b6b492ead9b54a3f5d022deebb2f6bd
|
data/lib/zipkin-tracer/trace.rb
CHANGED
|
@@ -78,11 +78,11 @@ module Trace
|
|
|
78
78
|
|
|
79
79
|
# We record information into spans, then we send these spans to zipkin
|
|
80
80
|
def record(value, endpoint = Trace.default_endpoint)
|
|
81
|
-
annotations << Trace::Annotation.new(value, endpoint)
|
|
81
|
+
annotations << Trace::Annotation.new(value.to_s, endpoint)
|
|
82
82
|
end
|
|
83
83
|
|
|
84
84
|
def record_tag(key, value, type = Trace::BinaryAnnotation::Type::STRING, endpoint = Trace.default_endpoint)
|
|
85
|
-
binary_annotations << Trace::BinaryAnnotation.new(key, value, type, endpoint)
|
|
85
|
+
binary_annotations << Trace::BinaryAnnotation.new(key, value.to_s, type, endpoint)
|
|
86
86
|
end
|
|
87
87
|
|
|
88
88
|
def record_local_component(value)
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: zipkin-tracer
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.27.1
|
|
4
|
+
version: 0.27.2.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Franklin Hu
|
|
@@ -13,7 +13,7 @@ authors:
|
|
|
13
13
|
autorequire:
|
|
14
14
|
bindir: bin
|
|
15
15
|
cert_chain: []
|
|
16
|
-
date:
|
|
16
|
+
date: 2018-02-13 00:00:00.000000000 Z
|
|
17
17
|
dependencies:
|
|
18
18
|
- !ruby/object:Gem::Dependency
|
|
19
19
|
name: faraday
|
|
@@ -207,7 +207,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
207
207
|
version: 1.3.5
|
|
208
208
|
requirements: []
|
|
209
209
|
rubyforge_project:
|
|
210
|
-
rubygems_version: 2.7.
|
|
210
|
+
rubygems_version: 2.7.5
|
|
211
211
|
signing_key:
|
|
212
212
|
specification_version: 4
|
|
213
213
|
summary: Ruby tracing via Zipkin
|