instana 1.8.1 → 1.8.2
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/instana/tracer.rb +11 -0
- data/lib/instana/tracing/span.rb +1 -1
- data/lib/instana/version.rb +1 -1
- metadata +2 -3
- data/benchmarks/Gemfile.lock +0 -28
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 70aba01058245eba20a35a5dfcfc91579a82b61a8f69a347d463da712c2e7d4c
|
|
4
|
+
data.tar.gz: e6f53ded2af3e7630b8033a51d22b9983711eb1e90a81314997db6b8dd3cd404
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 7a407ae589c8b4bcd7760a710f0bf8b5ab4966b221a22af04d538e81cd27294af677b23278d8ece2736befc810a715b40de3c1d2e5ae16cc720bfa7b23dd788b
|
|
7
|
+
data.tar.gz: db62ff5d7636374b39d7fd3bcb9577090a4a1f467cab138b989a6d1e11cea7651fe119df9f6d1b94fa8d01cb11004249ca6d829d974c1f46528c362dea879a99
|
data/lib/instana/tracer.rb
CHANGED
|
@@ -9,6 +9,17 @@ module Instana
|
|
|
9
9
|
|
|
10
10
|
thread_local :current_trace
|
|
11
11
|
|
|
12
|
+
# Support ::Instana::Tracer.xxx call style for the instantiated tracer
|
|
13
|
+
class << self
|
|
14
|
+
def method_missing(method, *args, &block)
|
|
15
|
+
if ::Instana.tracer.respond_to?(method)
|
|
16
|
+
::Instana.tracer.send(method, *args, &block)
|
|
17
|
+
else
|
|
18
|
+
super
|
|
19
|
+
end
|
|
20
|
+
end
|
|
21
|
+
end
|
|
22
|
+
|
|
12
23
|
#######################################
|
|
13
24
|
# Tracing blocks API methods
|
|
14
25
|
#######################################
|
data/lib/instana/tracing/span.rb
CHANGED
data/lib/instana/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: instana
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.8.
|
|
4
|
+
version: 1.8.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Peter Giacomo Lombardo
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2018-09-
|
|
11
|
+
date: 2018-09-12 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|
|
@@ -185,7 +185,6 @@ files:
|
|
|
185
185
|
- Tracing.md
|
|
186
186
|
- Troubleshooting.md
|
|
187
187
|
- benchmarks/Gemfile
|
|
188
|
-
- benchmarks/Gemfile.lock
|
|
189
188
|
- benchmarks/id_generation.rb
|
|
190
189
|
- benchmarks/opentracing.rb
|
|
191
190
|
- benchmarks/rack_vanilla_vs_traced.rb
|
data/benchmarks/Gemfile.lock
DELETED
|
@@ -1,28 +0,0 @@
|
|
|
1
|
-
PATH
|
|
2
|
-
remote: ..
|
|
3
|
-
specs:
|
|
4
|
-
instana (1.7.1)
|
|
5
|
-
ffi (>= 1.8.1)
|
|
6
|
-
get_process_mem (>= 0.2.1)
|
|
7
|
-
sys-proctable (>= 1.1.3)
|
|
8
|
-
timers (>= 4.1.0)
|
|
9
|
-
|
|
10
|
-
GEM
|
|
11
|
-
remote: https://rubygems.org/
|
|
12
|
-
specs:
|
|
13
|
-
ffi (1.9.18)
|
|
14
|
-
get_process_mem (0.2.1)
|
|
15
|
-
hitimes (1.2.6)
|
|
16
|
-
sys-proctable (1.1.5-universal-darwin)
|
|
17
|
-
timers (4.1.2)
|
|
18
|
-
hitimes
|
|
19
|
-
|
|
20
|
-
PLATFORMS
|
|
21
|
-
ruby
|
|
22
|
-
x86_64-darwin-15
|
|
23
|
-
|
|
24
|
-
DEPENDENCIES
|
|
25
|
-
instana!
|
|
26
|
-
|
|
27
|
-
BUNDLED WITH
|
|
28
|
-
1.15.4
|