oboe 2.7.15.1 → 2.7.16.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/.travis.yml +3 -0
- data/CHANGELOG.md +13 -0
- data/Gemfile +15 -2
- data/Rakefile +1 -4
- data/lib/oboe/config.rb +6 -3
- data/lib/oboe/inst/excon.rb +110 -0
- data/lib/oboe/inst/faraday.rb +3 -2
- data/lib/oboe/inst/http.rb +10 -5
- data/lib/oboe/inst/rest-client.rb +38 -0
- data/lib/oboe/inst/sequel.rb +3 -0
- data/lib/oboe/inst/typhoeus.rb +5 -2
- data/lib/oboe/ruby.rb +7 -2
- data/lib/oboe/util.rb +27 -9
- data/lib/oboe/version.rb +1 -1
- data/lib/oboe/xtrace.rb +42 -0
- data/test/instrumentation/excon_test.rb +170 -0
- data/test/instrumentation/faraday_test.rb +20 -7
- data/test/instrumentation/http_test.rb +5 -0
- data/test/instrumentation/rest-client_test.rb +302 -0
- data/test/instrumentation/typhoeus_test.rb +90 -132
- data/test/minitest_helper.rb +38 -0
- data/test/servers/rackapp_8101.rb +22 -0
- data/test/support/config_test.rb +7 -1
- metadata +34 -26
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: oboe
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.7.
|
4
|
+
version: 2.7.16.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Peter Giacomo Lombardo
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2015-
|
12
|
+
date: 2015-04-09 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: json
|
@@ -103,6 +103,7 @@ files:
|
|
103
103
|
- lib/oboe/inst/cassandra.rb
|
104
104
|
- lib/oboe/inst/dalli.rb
|
105
105
|
- lib/oboe/inst/em-http-request.rb
|
106
|
+
- lib/oboe/inst/excon.rb
|
106
107
|
- lib/oboe/inst/faraday.rb
|
107
108
|
- lib/oboe/inst/http.rb
|
108
109
|
- lib/oboe/inst/memcache.rb
|
@@ -112,6 +113,7 @@ files:
|
|
112
113
|
- lib/oboe/inst/rack.rb
|
113
114
|
- lib/oboe/inst/redis.rb
|
114
115
|
- lib/oboe/inst/resque.rb
|
116
|
+
- lib/oboe/inst/rest-client.rb
|
115
117
|
- lib/oboe/inst/sequel.rb
|
116
118
|
- lib/oboe/inst/typhoeus.rb
|
117
119
|
- lib/oboe/instrumentation.rb
|
@@ -139,6 +141,7 @@ files:
|
|
139
141
|
- test/instrumentation/cassandra_test.rb
|
140
142
|
- test/instrumentation/dalli_test.rb
|
141
143
|
- test/instrumentation/em_http_request_test.rb
|
144
|
+
- test/instrumentation/excon_test.rb
|
142
145
|
- test/instrumentation/faraday_test.rb
|
143
146
|
- test/instrumentation/http_test.rb
|
144
147
|
- test/instrumentation/memcache_test.rb
|
@@ -154,12 +157,14 @@ files:
|
|
154
157
|
- test/instrumentation/redis_sortedsets_test.rb
|
155
158
|
- test/instrumentation/redis_strings_test.rb
|
156
159
|
- test/instrumentation/resque_test.rb
|
160
|
+
- test/instrumentation/rest-client_test.rb
|
157
161
|
- test/instrumentation/sequel_mysql2_test.rb
|
158
162
|
- test/instrumentation/sequel_mysql_test.rb
|
159
163
|
- test/instrumentation/sequel_pg_test.rb
|
160
164
|
- test/instrumentation/typhoeus_test.rb
|
161
165
|
- test/minitest_helper.rb
|
162
166
|
- test/profiling/method_test.rb
|
167
|
+
- test/servers/rackapp_8101.rb
|
163
168
|
- test/support/config_test.rb
|
164
169
|
- test/support/dnt_test.rb
|
165
170
|
- test/support/liboboe_settings_test.rb
|
@@ -189,38 +194,41 @@ signing_key:
|
|
189
194
|
specification_version: 4
|
190
195
|
summary: AppNeta TraceView performance instrumentation gem for Ruby
|
191
196
|
test_files:
|
192
|
-
- test/
|
193
|
-
- test/
|
194
|
-
- test/frameworks/sinatra_test.rb
|
195
|
-
- test/frameworks/apps/sinatra_simple.rb
|
196
|
-
- test/frameworks/apps/padrino_simple.rb
|
197
|
-
- test/frameworks/apps/grape_simple.rb
|
198
|
-
- test/frameworks/apps/grape_nested.rb
|
199
|
-
- test/minitest_helper.rb
|
200
|
-
- test/instrumentation/mongo_test.rb
|
201
|
-
- test/instrumentation/redis_hashes_test.rb
|
197
|
+
- test/servers/rackapp_8101.rb
|
198
|
+
- test/instrumentation/excon_test.rb
|
202
199
|
- test/instrumentation/sequel_pg_test.rb
|
203
|
-
- test/instrumentation/
|
200
|
+
- test/instrumentation/moped_test.rb
|
201
|
+
- test/instrumentation/sequel_mysql_test.rb
|
202
|
+
- test/instrumentation/http_test.rb
|
204
203
|
- test/instrumentation/dalli_test.rb
|
205
|
-
- test/instrumentation/redis_keys_test.rb
|
206
204
|
- test/instrumentation/redis_sortedsets_test.rb
|
205
|
+
- test/instrumentation/rack_test.rb
|
206
|
+
- test/instrumentation/cassandra_test.rb
|
207
207
|
- test/instrumentation/redis_strings_test.rb
|
208
|
-
- test/instrumentation/sequel_mysql_test.rb
|
209
|
-
- test/instrumentation/redis_sets_test.rb
|
210
|
-
- test/instrumentation/http_test.rb
|
211
208
|
- test/instrumentation/typhoeus_test.rb
|
212
|
-
- test/instrumentation/
|
213
|
-
- test/instrumentation/
|
214
|
-
- test/instrumentation/moped_test.rb
|
215
|
-
- test/instrumentation/rack_test.rb
|
216
|
-
- test/instrumentation/memcache_test.rb
|
209
|
+
- test/instrumentation/sequel_mysql2_test.rb
|
210
|
+
- test/instrumentation/redis_misc_test.rb
|
217
211
|
- test/instrumentation/faraday_test.rb
|
212
|
+
- test/instrumentation/redis_keys_test.rb
|
213
|
+
- test/instrumentation/redis_sets_test.rb
|
214
|
+
- test/instrumentation/memcache_test.rb
|
215
|
+
- test/instrumentation/resque_test.rb
|
216
|
+
- test/instrumentation/redis_hashes_test.rb
|
217
|
+
- test/instrumentation/mongo_test.rb
|
218
218
|
- test/instrumentation/redis_lists_test.rb
|
219
|
-
- test/instrumentation/sequel_mysql2_test.rb
|
220
|
-
- test/instrumentation/cassandra_test.rb
|
221
219
|
- test/instrumentation/memcached_test.rb
|
220
|
+
- test/instrumentation/em_http_request_test.rb
|
221
|
+
- test/instrumentation/rest-client_test.rb
|
222
222
|
- test/profiling/method_test.rb
|
223
|
-
- test/
|
223
|
+
- test/frameworks/apps/grape_simple.rb
|
224
|
+
- test/frameworks/apps/sinatra_simple.rb
|
225
|
+
- test/frameworks/apps/padrino_simple.rb
|
226
|
+
- test/frameworks/apps/grape_nested.rb
|
227
|
+
- test/frameworks/sinatra_test.rb
|
228
|
+
- test/frameworks/grape_test.rb
|
229
|
+
- test/frameworks/padrino_test.rb
|
224
230
|
- test/support/config_test.rb
|
225
|
-
- test/support/xtrace_test.rb
|
226
231
|
- test/support/dnt_test.rb
|
232
|
+
- test/support/liboboe_settings_test.rb
|
233
|
+
- test/support/xtrace_test.rb
|
234
|
+
- test/minitest_helper.rb
|