traceview 3.1.0 → 3.2.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 +2 -2
- data/CHANGELOG.md +12 -0
- data/lib/traceview/api/profiling.rb +146 -0
- data/lib/traceview/api/util.rb +6 -5
- data/lib/traceview/base.rb +2 -3
- data/lib/traceview/config.rb +5 -5
- data/lib/traceview/legacy_method_profiling.rb +97 -0
- data/lib/traceview/method_profiling.rb +16 -88
- data/lib/traceview/support.rb +28 -6
- data/lib/traceview/version.rb +2 -2
- data/lib/traceview.rb +1 -0
- data/test/frameworks/rails4x_test.rb +3 -1
- data/test/minitest_helper.rb +11 -3
- data/test/profiling/{method_test.rb → legacy_method_profiling_test.rb} +0 -0
- data/test/profiling/method_profiling_test.rb +631 -0
- data/test/servers/rails4x_8140.rb +2 -3
- data/test/support/config_test.rb +6 -6
- metadata +8 -5
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: traceview
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 3.1
|
|
4
|
+
version: 3.2.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-08-
|
|
12
|
+
date: 2015-08-20 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: json
|
|
@@ -140,6 +140,7 @@ files:
|
|
|
140
140
|
- lib/traceview/inst/twitter-cassandra.rb
|
|
141
141
|
- lib/traceview/inst/typhoeus.rb
|
|
142
142
|
- lib/traceview/instrumentation.rb
|
|
143
|
+
- lib/traceview/legacy_method_profiling.rb
|
|
143
144
|
- lib/traceview/loading.rb
|
|
144
145
|
- lib/traceview/logger.rb
|
|
145
146
|
- lib/traceview/method_profiling.rb
|
|
@@ -185,7 +186,8 @@ files:
|
|
|
185
186
|
- test/instrumentation/sequel_pg_test.rb
|
|
186
187
|
- test/instrumentation/typhoeus_test.rb
|
|
187
188
|
- test/minitest_helper.rb
|
|
188
|
-
- test/profiling/
|
|
189
|
+
- test/profiling/legacy_method_profiling_test.rb
|
|
190
|
+
- test/profiling/method_profiling_test.rb
|
|
189
191
|
- test/servers/rackapp_8101.rb
|
|
190
192
|
- test/servers/rails3x_8140.rb
|
|
191
193
|
- test/servers/rails4x_8140.rb
|
|
@@ -217,7 +219,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
217
219
|
version: '0'
|
|
218
220
|
requirements: []
|
|
219
221
|
rubyforge_project:
|
|
220
|
-
rubygems_version: 2.4.
|
|
222
|
+
rubygems_version: 2.4.8
|
|
221
223
|
signing_key:
|
|
222
224
|
specification_version: 4
|
|
223
225
|
summary: AppNeta TraceView performance instrumentation gem for Ruby
|
|
@@ -251,7 +253,8 @@ test_files:
|
|
|
251
253
|
- test/instrumentation/memcached_test.rb
|
|
252
254
|
- test/instrumentation/em_http_request_test.rb
|
|
253
255
|
- test/instrumentation/rest-client_test.rb
|
|
254
|
-
- test/profiling/
|
|
256
|
+
- test/profiling/method_profiling_test.rb
|
|
257
|
+
- test/profiling/legacy_method_profiling_test.rb
|
|
255
258
|
- test/frameworks/apps/grape_simple.rb
|
|
256
259
|
- test/frameworks/apps/sinatra_simple.rb
|
|
257
260
|
- test/frameworks/apps/padrino_simple.rb
|