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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: a4577c3758b25f831efffaf61c982cd0e0195a0196f865130d20326f3e9ebaa4
4
- data.tar.gz: 1af3640b9b97e1496f6f4f3fcad9dca309a08c151c53c2e9494113caffe27a5a
3
+ metadata.gz: 70aba01058245eba20a35a5dfcfc91579a82b61a8f69a347d463da712c2e7d4c
4
+ data.tar.gz: e6f53ded2af3e7630b8033a51d22b9983711eb1e90a81314997db6b8dd3cd404
5
5
  SHA512:
6
- metadata.gz: 8640196d3354bed67c1cd305f44c43927114d40f51741a68e3affe21af234ee8866543ac48611dc08de83c0c566effd5348c7c6d3ecef0c7eefb541813a3fddc
7
- data.tar.gz: 2b2e2cad93f8be1567d306211afb6af2ccf21ee9fe4b5b32bd87d5ee5846a35efe8810c4599b1d7ca364dadad9dab8242fbd50b3915718cbe2d3b7d0b5a30309
6
+ metadata.gz: 7a407ae589c8b4bcd7760a710f0bf8b5ab4966b221a22af04d538e81cd27294af677b23278d8ece2736befc810a715b40de3c1d2e5ae16cc720bfa7b23dd788b
7
+ data.tar.gz: db62ff5d7636374b39d7fd3bcb9577090a4a1f467cab138b989a6d1e11cea7651fe119df9f6d1b94fa8d01cb11004249ca6d829d974c1f46528c362dea879a99
@@ -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
  #######################################
@@ -65,7 +65,7 @@ module Instana
65
65
  x = i.split(':')
66
66
 
67
67
  @data[:stack] << {
68
- :f => x[0],
68
+ :c => x[0],
69
69
  :n => x[1],
70
70
  :m => x[2]
71
71
  }
@@ -1,4 +1,4 @@
1
1
  module Instana
2
- VERSION = "1.8.1"
2
+ VERSION = "1.8.2"
3
3
  VERSION_FULL = "instana-#{VERSION}"
4
4
  end
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.1
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-05 00:00:00.000000000 Z
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
@@ -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