instana 1.11.0 → 1.11.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 1d71c06463463f206e4dd8aeae47776ce792a130d3aa6daccc0477823dd7a357
4
- data.tar.gz: bb6fe211979e648b15a48f7fbc949a4ee9408f6a46808159e32a8bf7323e8336
3
+ metadata.gz: fda35bd4aba894e089926f629c7cdc679b6352636ccc11a9628b0097acc198eb
4
+ data.tar.gz: 15b14e845ce0f05394117ae356bc2d4497a87a9080fbee9e0f4531fbbe7ceb64
5
5
  SHA512:
6
- metadata.gz: 20493e913bc0569334318bbfeab8590da2a3507810a51f35adaf7320d5d552aefecf12a37e29b0d47e250d5bf4eeecf81e5332d96c1bdaa784fb0ed9bc047984
7
- data.tar.gz: d1cebdc236820122711614678d777c4d96587f3672ead7430ccb48b65743b1dfa38df8007647e39ef34fbe01ecab32dc58d4afdaa5c186903e593fffb653bba0
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 collects and reports Ruby metrics and distibuted traces to your Instana dashboard.}
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
- if defined?(::Resque) && ($0 =~ /resque-#{Resque::Version}/)
180
- return "Resque Worker"
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)
@@ -1,4 +1,4 @@
1
1
  module Instana
2
- VERSION = "1.11.0"
2
+ VERSION = "1.11.1"
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.11.0
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: 2019-12-10 00:00:00.000000000 Z
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 collects and reports Ruby metrics and distibuted traces
168
- to your Instana dashboard.
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: