instana 1.11.0-java → 1.11.1-java
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: cd1cbd04c0c25885c901ea8ef81fd02a42cec07541b40a23133ac191e0ee17fe
|
4
|
+
data.tar.gz: 23aa4673f569645a182e6200a94d1f869d44d851710955bf46681142ef5883ab
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 001a9a9156206d69ddb14297b1809c98ed82d0b96a39218d776e68bae5ac8e0294bc61a96570fb6072c9a52aa1e3ec71c18992cb280e17a961e2cabae86e15db
|
7
|
+
data.tar.gz: b9f91f28d6b554a58788f1d9d741bdb04e2c593c3305ec48d0ce669236f386d86075679bf98b24d749682fdc09538997d1e1b38cca64d5f7cd8482c73a1b354b
|
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: java
|
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
|
requirement: !ruby/object:Gem::Requirement
|
@@ -122,8 +122,9 @@ dependencies:
|
|
122
122
|
- - ">="
|
123
123
|
- !ruby/object:Gem::Version
|
124
124
|
version: 1.0.11
|
125
|
-
description: The Instana gem
|
126
|
-
|
125
|
+
description: The Instana gem is a zero configuration tool that will automatically
|
126
|
+
collect key metrics and distributed traces from your Ruby processes. Just install
|
127
|
+
and go.
|
127
128
|
email:
|
128
129
|
- pglombardo@gmail.com
|
129
130
|
executables: []
|
@@ -257,7 +258,11 @@ files:
|
|
257
258
|
homepage: https://www.instana.com/
|
258
259
|
licenses:
|
259
260
|
- MIT
|
260
|
-
metadata:
|
261
|
+
metadata:
|
262
|
+
changelog_uri: https://github.com/instana/ruby-sensor/releases
|
263
|
+
documentation_uri: https://docs.instana.io/ecosystem/ruby/
|
264
|
+
homepage_uri: https://www.instana.com/
|
265
|
+
source_code_uri: https://github.com/instana/ruby-sensor
|
261
266
|
post_install_message:
|
262
267
|
rdoc_options: []
|
263
268
|
require_paths:
|