signalfx-tracing 2.1.1 → 2.2.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +19 -19
- data/lib/signalfx/tracing/version.rb +1 -1
- data/signalfx-tracing.gemspec +1 -1
- metadata +5 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 2bdfe4908f45da406037ff74a393f763c4b162ae1fc0fcc018bdb0c437f694ed
|
4
|
+
data.tar.gz: 654481fb002121b3f3fdb9698030c6fd88ca1dab4595de9371601cbbf877dfcf
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 866e9610bc170b39a318de3ab65a5c7f73e74b1cad50af8cafb33c1870bb41762c5276baf52a6adba517eb650442e984bd033456b5e9510c85a48c8da30e62ab
|
7
|
+
data.tar.gz: 8ef2fe7d563d9e3b97d3c2c8c581d5c9315f5aa3042e470acaf779f2c84cb2546f130440759f86aa542c628a4f56b6fd2b5bdf61af0a3f654d116ee554801a16
|
data/README.md
CHANGED
@@ -26,25 +26,25 @@ Here are the requirements and supported software for the library.
|
|
26
26
|
|
27
27
|
| Library | Instrumentation name | Versions Supported |
|
28
28
|
| ------------------------------- | -------------------------------------- | ------------------ |
|
29
|
-
| [ActiveRecord](#active-record) | activerecord-opentracing
|
29
|
+
| [ActiveRecord](#active-record) | signalfx-activerecord-opentracing | ~> 5.0 |
|
30
30
|
| [Elasticsearch](#elasticsearch) | signalfx-elasticsearch-instrumentation | >= 6.0.2 |
|
31
31
|
| [Faraday](#faraday) | signalfx-faraday-instrumentation | >= 0.9.0 |
|
32
|
-
| [Grape](#grape) | grape-instrumentation
|
33
|
-
| [Mongo](#mongo) | mongodb-instrumentation
|
34
|
-
| [Mysql2](#mysql2) | mysql2-instrumentation
|
35
|
-
| [Net::HTTP](#nethttp) | nethttp-instrumentation
|
36
|
-
| [Pg](#pg) | pg-instrumentation
|
37
|
-
| [Rack](#rack) |
|
38
|
-
| [Rails](#rails) | rails-instrumentation
|
39
|
-
| [Redis](#redis) | redis-instrumentation
|
40
|
-
| [RestClient](#restclient) | restclient-instrumentation
|
41
|
-
| [Sequel](#sequel) | sequel-instrumentation
|
42
|
-
| [Sidekiq](#sidekiq) |
|
43
|
-
| [Sinatra](#sinatra) | sinatra-instrumentation
|
32
|
+
| [Grape](#grape) | signalfx-grape-instrumentation | >= 0.2.0 |
|
33
|
+
| [Mongo](#mongo) | signalfgx-mongodb-instrumentation | >= 2.1.0 |
|
34
|
+
| [Mysql2](#mysql2) | signalfx-mysql2-instrumentation | >= 0.4.0 |
|
35
|
+
| [Net::HTTP](#nethttp) | signalfx-nethttp-instrumentation | Ruby >= 2.0 |
|
36
|
+
| [Pg](#pg) | signalfx-pg-instrumentation | >= 0.18.0 |
|
37
|
+
| [Rack](#rack) | signalfx-rack-tracer | >= 0.10.0 |
|
38
|
+
| [Rails](#rails) | signalfx-rails-instrumentation | >= 3.0.0 |
|
39
|
+
| [Redis](#redis) | signalfx-redis-instrumentation | >= 4.0.0 |
|
40
|
+
| [RestClient](#restclient) | signalfx-restclient-instrumentation | >= 1.5.0 |
|
41
|
+
| [Sequel](#sequel) | signalfx-sequel-instrumentation | >= 3.47.0 |
|
42
|
+
| [Sidekiq](#sidekiq) | signalfx-sidekiq-opentracing | >= 0.7.0 |
|
43
|
+
| [Sinatra](#sinatra) | signalfx-sinatra-instrumentation | >= 1.0.0 |
|
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 `
|
47
|
+
Sinatra, install the `signalfx-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
|
|
@@ -89,8 +89,8 @@ The steps assume you have RubyGems and Bundler.
|
|
89
89
|
3. Add each applicable instrumentation to your application's Gemfile. For
|
90
90
|
example, this is how you add Rails and Redis:
|
91
91
|
```bash
|
92
|
-
$ gem 'rails-instrumentation'
|
93
|
-
$ gem 'redis-instrumentation'
|
92
|
+
$ gem 'signalfx-rails-instrumentation'
|
93
|
+
$ gem 'signalfx-redis-instrumentation'
|
94
94
|
```
|
95
95
|
For information about instrumentation names, see supported libraries and their
|
96
96
|
current versions in `gem.deps.rb`. If you configure Rails instrumentation, it
|
@@ -371,7 +371,7 @@ end
|
|
371
371
|
```
|
372
372
|
### Rack
|
373
373
|
|
374
|
-
Rack spans are created using the `
|
374
|
+
Rack spans are created using the `signalfx-rack-tracer` gem. This is enabled
|
375
375
|
automatically for other frameworks that are built on top of Rack, but it can
|
376
376
|
also be separately enabled.
|
377
377
|
|
@@ -396,7 +396,7 @@ use Rack::Tracer
|
|
396
396
|
### Rails
|
397
397
|
|
398
398
|
Rails applications can be traced using the notifications provided by ActiveSupport.
|
399
|
-
It will use `
|
399
|
+
It will use `signalfx-rack-tracer` to trace by requests.
|
400
400
|
|
401
401
|
The forked source for this instrumentation is located
|
402
402
|
[here](https://github.com/signalfx/ruby-rails-instrumentation).
|
@@ -543,7 +543,7 @@ Arguments:
|
|
543
543
|
### Sinatra
|
544
544
|
|
545
545
|
Sinatra instrumentation traces requests and template rendering. The instrumenter
|
546
|
-
registers a Sinatra extension that uses `
|
546
|
+
registers a Sinatra extension that uses `signalfx-rack-tracer` to trace requests and
|
547
547
|
monkey-patches to trace view rendering. Rack instrumentation is automatically
|
548
548
|
enabled when using Sinatra instrumentation.
|
549
549
|
|
data/signalfx-tracing.gemspec
CHANGED
@@ -34,7 +34,7 @@ Gem::Specification.new do |spec|
|
|
34
34
|
# `gem install -g`
|
35
35
|
|
36
36
|
# stdlib instrumentations
|
37
|
-
spec.add_dependency "nethttp-instrumentation", "~> 0.
|
37
|
+
spec.add_dependency "signalfx-nethttp-instrumentation", "~> 0.2.0"
|
38
38
|
|
39
39
|
# uncomment and run `bundle install` in order to run the whole test suite
|
40
40
|
spec.add_development_dependency "faraday", "~> 1.0"
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: signalfx-tracing
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.
|
4
|
+
version: 2.2.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- SignalFx, Inc.
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2021-01-20 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -81,19 +81,19 @@ dependencies:
|
|
81
81
|
- !ruby/object:Gem::Version
|
82
82
|
version: 1.0.0
|
83
83
|
- !ruby/object:Gem::Dependency
|
84
|
-
name: nethttp-instrumentation
|
84
|
+
name: signalfx-nethttp-instrumentation
|
85
85
|
requirement: !ruby/object:Gem::Requirement
|
86
86
|
requirements:
|
87
87
|
- - "~>"
|
88
88
|
- !ruby/object:Gem::Version
|
89
|
-
version: 0.
|
89
|
+
version: 0.2.0
|
90
90
|
type: :runtime
|
91
91
|
prerelease: false
|
92
92
|
version_requirements: !ruby/object:Gem::Requirement
|
93
93
|
requirements:
|
94
94
|
- - "~>"
|
95
95
|
- !ruby/object:Gem::Version
|
96
|
-
version: 0.
|
96
|
+
version: 0.2.0
|
97
97
|
- !ruby/object:Gem::Dependency
|
98
98
|
name: faraday
|
99
99
|
requirement: !ruby/object:Gem::Requirement
|