signalfx-tracing 1.5.0 → 1.5.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: 9fcec71a1be65bd56fb2e5457c52cdc539f6e13944684cf3b8ab46e45860eef4
4
- data.tar.gz: b53568f3b9f9b1e938f34e07388a3922851bf157ae5549c96040d4b0c5a13edf
3
+ metadata.gz: e746c7d7bd14f60dd0f45b263b38e05e4f4e591b221ad877d047c38aaf4ec8bf
4
+ data.tar.gz: 7916da5154ead8d2cd37325bfa1bf9ed4f254704919d9802fb883a5783a0aeb9
5
5
  SHA512:
6
- metadata.gz: b898b02c85dda9af08f3f18eeaeb9df693f866e88742d0ace0a9329e9f9eca44494f10ae810bed359b8159a6d71033f7a2be679da66024070673621274be0f19
7
- data.tar.gz: 12875b259e36ff96485575085f881def7fb7b806842b33b5aa3601f407ce98b0785d63e61416232439636da8c0e783aa107797512a135cc6cbb726053e3932d6
6
+ metadata.gz: 8e82266212716e99449a73c3d11a8bbee4229c213b95d3be3cea1e96e562ea97969f807f95ebfec0c5e12fae2155ad9b7b8a6960eee7a6a7675e51979d8554f9
7
+ data.tar.gz: 26cd1d84fb7171603390a5f569122d7a91919e5c53b44041a358d651c685ae428d538e81afc6af780bec5024320dae394b0e8d2790e8ea4523077fdc8d8089c0
data/README.md CHANGED
@@ -34,7 +34,7 @@ Here are the requirements and supported software for the library.
34
34
  | [Mysql2](#mysql2) | mysql2-instrumentation | >= 0.4.0 |
35
35
  | [Net::HTTP](#nethttp) | nethttp-instrumentation | Ruby >= 2.0 |
36
36
  | [Pg](#pg) | pg-instrumentation | >= 0.18.0 |
37
- | [Rack](#rack) | rack-tracer | >= 0.1 |
37
+ | [Rack](#rack) | sfx-rack-tracer | >= 0.10.0 |
38
38
  | [Rails](#rails) | rails-instrumentation | >= 3.0.0 |
39
39
  | [Redis](#redis) | redis-instrumentation | >= 4.0.0 |
40
40
  | [RestClient](#restclient) | restclient-instrumentation | >= 1.5.0 |
@@ -44,7 +44,7 @@ Here are the requirements and supported software for the library.
44
44
 
45
45
  Instrumentation for routes using Puma or Passenger is provided through
46
46
  Rack. If you use a framework that builds on top of Rack, such as Rails or
47
- Sinatra, install the `rack-tracer` instrumentation with your dependency manager
47
+ Sinatra, install the `sfx-rack-tracer` instrumentation with your dependency manager
48
48
  or with the bootstrap utility. In these cases, the routes through the web
49
49
  server are automatically traced.
50
50
 
@@ -369,7 +369,7 @@ end
369
369
  ```
370
370
  ### Rack
371
371
 
372
- Rack spans are created using the `rack-tracer` gem. This is enabled
372
+ Rack spans are created using the `sfx-rack-tracer` gem. This is enabled
373
373
  automatically for other frameworks that are built on top of Rack, but it can
374
374
  also be separately enabled.
375
375
 
@@ -394,7 +394,7 @@ use Rack::Tracer
394
394
  ### Rails
395
395
 
396
396
  Rails applications can be traced using the notifications provided by ActiveSupport.
397
- It will use `rack-tracer` to trace by requests.
397
+ It will use `sfx-rack-tracer` to trace by requests.
398
398
 
399
399
  The forked source for this instrumentation is located
400
400
  [here](https://github.com/signalfx/ruby-rails-instrumentation).
@@ -541,7 +541,7 @@ Arguments:
541
541
  ### Sinatra
542
542
 
543
543
  Sinatra instrumentation traces requests and template rendering. The instrumenter
544
- registers a Sinatra extension that uses `rack-tracer` to trace requests and
544
+ registers a Sinatra extension that uses `sfx-rack-tracer` to trace requests and
545
545
  monkey-patches to trace view rendering. Rack instrumentation is automatically
546
546
  enabled when using Sinatra instrumentation.
547
547
 
@@ -5,7 +5,7 @@ group :instrumentations do
5
5
  gem 'mysql2-instrumentation', '~> 0.2.1'
6
6
  gem 'nethttp-instrumentation', '~> 0.1.2'
7
7
  gem 'pg-instrumentation', '~> 0.1.0'
8
- gem 'rack-tracer', git: 'git://github.com/signalfx/ruby-rack-tracer.git', branch: 'sfx_release'
8
+ gem 'sfx-rack-tracer', '0.10.0'
9
9
  gem 'rails-instrumentation', '0.1.3'
10
10
  gem 'redis-instrumentation', '~> 0.2.0'
11
11
  gem 'restclient-instrumentation', '~> 0.1.1'
@@ -1,5 +1,5 @@
1
1
  module Signalfx
2
2
  module Tracing
3
- VERSION = "1.5.0"
3
+ VERSION = "1.5.1"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: signalfx-tracing
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.5.0
4
+ version: 1.5.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - SignalFx, Inc.