instana 1.11.0 → 1.11.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/instana.gemspec +9 -3
- data/lib/instana/util.rb +6 -3
- data/lib/instana/version.rb +1 -1
- metadata +10 -5
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: fda35bd4aba894e089926f629c7cdc679b6352636ccc11a9628b0097acc198eb
|
|
4
|
+
data.tar.gz: 15b14e845ce0f05394117ae356bc2d4497a87a9080fbee9e0f4531fbbe7ceb64
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: de96dfed29893d2fe4b3242cb5610f743bfcce886b5593ae83fca8bb4bd021f9426cee56dfab1efae29afe20c8bc12793665025b237b7df50fdf5ccf822cfed7
|
|
7
|
+
data.tar.gz: 792f7cbfb4f9c5d63659bf95564cce41f3348cee1403148d01a8abe0f8e6641a7cc94651dc419a837036d8df363ae40ed2116f0b897ba2599bb8470ac40ce91c
|
data/instana.gemspec
CHANGED
|
@@ -10,9 +10,17 @@ Gem::Specification.new do |spec|
|
|
|
10
10
|
spec.email = ["pglombardo@gmail.com"]
|
|
11
11
|
|
|
12
12
|
spec.summary = %q{Ruby Distributed Tracing & Metrics Sensor for Instana}
|
|
13
|
-
spec.description = %q{The Instana gem
|
|
13
|
+
spec.description = %q{The Instana gem is a zero configuration tool that will automatically collect key metrics and distributed traces from your Ruby processes. Just install and go.}
|
|
14
14
|
spec.homepage = "https://www.instana.com/"
|
|
15
15
|
|
|
16
|
+
spec.metadata = {
|
|
17
|
+
"changelog_uri" => "https://github.com/instana/ruby-sensor/releases",
|
|
18
|
+
"documentation_uri" => "https://docs.instana.io/ecosystem/ruby/",
|
|
19
|
+
"homepage_uri" => "https://www.instana.com/",
|
|
20
|
+
"source_code_uri" => "https://github.com/instana/ruby-sensor",
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
spec.licenses = ['MIT']
|
|
16
24
|
spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
|
|
17
25
|
spec.bindir = "exe"
|
|
18
26
|
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
|
@@ -22,8 +30,6 @@ Gem::Specification.new do |spec|
|
|
|
22
30
|
spec.required_ruby_version = '>= 2.1'
|
|
23
31
|
spec.platform = defined?(JRUBY_VERSION) ? 'java' : Gem::Platform::RUBY
|
|
24
32
|
|
|
25
|
-
spec.licenses = ['MIT']
|
|
26
|
-
|
|
27
33
|
spec.add_development_dependency "bundler", "~> 2.0"
|
|
28
34
|
spec.add_development_dependency "rake", "~> 10.0"
|
|
29
35
|
spec.add_development_dependency "minitest", "~> 5.0"
|
data/lib/instana/util.rb
CHANGED
|
@@ -175,9 +175,12 @@ module Instana
|
|
|
175
175
|
return ENV['INSTANA_SERVICE_NAME']
|
|
176
176
|
end
|
|
177
177
|
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
178
|
+
if defined?(::Resque)
|
|
179
|
+
if ($0 =~ /resque-#{Resque::Version}/)
|
|
180
|
+
return "Resque Worker"
|
|
181
|
+
elsif ($0 =~ /resque-pool-master/)
|
|
182
|
+
return "Resque Pool Master"
|
|
183
|
+
end
|
|
181
184
|
end
|
|
182
185
|
|
|
183
186
|
if defined?(::RailsLts) || defined?(::Rails)
|
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.11.
|
|
4
|
+
version: 1.11.1
|
|
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:
|
|
11
|
+
date: 2020-01-15 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|
|
@@ -164,8 +164,9 @@ dependencies:
|
|
|
164
164
|
- - ">="
|
|
165
165
|
- !ruby/object:Gem::Version
|
|
166
166
|
version: 1.0.11
|
|
167
|
-
description: The Instana gem
|
|
168
|
-
|
|
167
|
+
description: The Instana gem is a zero configuration tool that will automatically
|
|
168
|
+
collect key metrics and distributed traces from your Ruby processes. Just install
|
|
169
|
+
and go.
|
|
169
170
|
email:
|
|
170
171
|
- pglombardo@gmail.com
|
|
171
172
|
executables: []
|
|
@@ -299,7 +300,11 @@ files:
|
|
|
299
300
|
homepage: https://www.instana.com/
|
|
300
301
|
licenses:
|
|
301
302
|
- MIT
|
|
302
|
-
metadata:
|
|
303
|
+
metadata:
|
|
304
|
+
changelog_uri: https://github.com/instana/ruby-sensor/releases
|
|
305
|
+
documentation_uri: https://docs.instana.io/ecosystem/ruby/
|
|
306
|
+
homepage_uri: https://www.instana.com/
|
|
307
|
+
source_code_uri: https://github.com/instana/ruby-sensor
|
|
303
308
|
post_install_message:
|
|
304
309
|
rdoc_options: []
|
|
305
310
|
require_paths:
|