scout_apm 3.0.0.pre28 → 4.0.4

Sign up to get free protection for your applications and to get access to all the features.
Files changed (135) hide show
  1. checksums.yaml +5 -5
  2. data/.github/workflows/test.yml +49 -0
  3. data/.gitignore +1 -1
  4. data/.rubocop.yml +5 -5
  5. data/.travis.yml +19 -14
  6. data/CHANGELOG.markdown +145 -4
  7. data/Gemfile +1 -7
  8. data/README.markdown +13 -4
  9. data/Rakefile +1 -1
  10. data/ext/allocations/allocations.c +2 -0
  11. data/gems/README.md +28 -0
  12. data/gems/octoshark.gemfile +4 -0
  13. data/gems/rails3.gemfile +5 -0
  14. data/gems/rails4.gemfile +4 -0
  15. data/gems/rails5.gemfile +4 -0
  16. data/gems/rails6.gemfile +4 -0
  17. data/lib/scout_apm.rb +39 -9
  18. data/lib/scout_apm/agent.rb +29 -10
  19. data/lib/scout_apm/agent/exit_handler.rb +0 -1
  20. data/lib/scout_apm/agent_context.rb +22 -3
  21. data/lib/scout_apm/app_server_load.rb +7 -2
  22. data/lib/scout_apm/attribute_arranger.rb +0 -2
  23. data/lib/scout_apm/auto_instrument.rb +5 -0
  24. data/lib/scout_apm/auto_instrument/instruction_sequence.rb +31 -0
  25. data/lib/scout_apm/auto_instrument/layer.rb +23 -0
  26. data/lib/scout_apm/auto_instrument/parser.rb +27 -0
  27. data/lib/scout_apm/auto_instrument/rails.rb +175 -0
  28. data/lib/scout_apm/background_job_integrations/delayed_job.rb +1 -1
  29. data/lib/scout_apm/background_job_integrations/faktory.rb +103 -0
  30. data/lib/scout_apm/background_job_integrations/legacy_sneakers.rb +55 -0
  31. data/lib/scout_apm/background_job_integrations/que.rb +134 -0
  32. data/lib/scout_apm/background_job_integrations/resque.rb +6 -2
  33. data/lib/scout_apm/background_job_integrations/shoryuken.rb +124 -0
  34. data/lib/scout_apm/background_job_integrations/sidekiq.rb +5 -19
  35. data/lib/scout_apm/background_job_integrations/sneakers.rb +87 -0
  36. data/lib/scout_apm/config.rb +45 -8
  37. data/lib/scout_apm/detailed_trace.rb +217 -0
  38. data/lib/scout_apm/environment.rb +20 -1
  39. data/lib/scout_apm/error.rb +27 -0
  40. data/lib/scout_apm/error_service.rb +32 -0
  41. data/lib/scout_apm/error_service/error_buffer.rb +39 -0
  42. data/lib/scout_apm/error_service/error_record.rb +211 -0
  43. data/lib/scout_apm/error_service/ignored_exceptions.rb +66 -0
  44. data/lib/scout_apm/error_service/middleware.rb +32 -0
  45. data/lib/scout_apm/error_service/notifier.rb +33 -0
  46. data/lib/scout_apm/error_service/payload.rb +47 -0
  47. data/lib/scout_apm/error_service/periodic_work.rb +17 -0
  48. data/lib/scout_apm/error_service/railtie.rb +11 -0
  49. data/lib/scout_apm/error_service/sidekiq.rb +80 -0
  50. data/lib/scout_apm/extensions/transaction_callback_payload.rb +1 -1
  51. data/lib/scout_apm/fake_store.rb +3 -0
  52. data/lib/scout_apm/framework_integrations/rails_2.rb +2 -1
  53. data/lib/scout_apm/framework_integrations/rails_3_or_4.rb +3 -1
  54. data/lib/scout_apm/git_revision.rb +6 -3
  55. data/lib/scout_apm/instant/middleware.rb +2 -1
  56. data/lib/scout_apm/instrument_manager.rb +9 -7
  57. data/lib/scout_apm/instruments/action_controller_rails_2.rb +3 -1
  58. data/lib/scout_apm/instruments/action_controller_rails_3_rails4.rb +56 -55
  59. data/lib/scout_apm/instruments/action_view.rb +122 -26
  60. data/lib/scout_apm/instruments/active_record.rb +66 -18
  61. data/lib/scout_apm/instruments/http.rb +48 -0
  62. data/lib/scout_apm/instruments/memcached.rb +43 -0
  63. data/lib/scout_apm/instruments/mongoid.rb +9 -4
  64. data/lib/scout_apm/instruments/net_http.rb +8 -1
  65. data/lib/scout_apm/instruments/typhoeus.rb +88 -0
  66. data/lib/scout_apm/job_record.rb +4 -2
  67. data/lib/scout_apm/layaway_file.rb +4 -0
  68. data/lib/scout_apm/layer.rb +6 -57
  69. data/lib/scout_apm/layer_children_set.rb +9 -8
  70. data/lib/scout_apm/layer_converters/converter_base.rb +15 -30
  71. data/lib/scout_apm/layer_converters/slow_job_converter.rb +12 -2
  72. data/lib/scout_apm/layer_converters/slow_request_converter.rb +14 -4
  73. data/lib/scout_apm/layer_converters/trace_converter.rb +184 -0
  74. data/lib/scout_apm/limited_layer.rb +0 -7
  75. data/lib/scout_apm/metric_stats.rb +0 -8
  76. data/lib/scout_apm/middleware.rb +1 -1
  77. data/lib/scout_apm/periodic_work.rb +19 -0
  78. data/lib/scout_apm/remote/message.rb +4 -0
  79. data/lib/scout_apm/remote/server.rb +13 -1
  80. data/lib/scout_apm/reporter.rb +8 -3
  81. data/lib/scout_apm/reporting.rb +2 -1
  82. data/lib/scout_apm/request_histograms.rb +8 -0
  83. data/lib/scout_apm/serializers/app_server_load_serializer.rb +4 -0
  84. data/lib/scout_apm/serializers/directive_serializer.rb +4 -0
  85. data/lib/scout_apm/serializers/payload_serializer.rb +2 -2
  86. data/lib/scout_apm/serializers/payload_serializer_to_json.rb +8 -7
  87. data/lib/scout_apm/slow_job_record.rb +5 -1
  88. data/lib/scout_apm/slow_policy/age_policy.rb +33 -0
  89. data/lib/scout_apm/slow_policy/percent_policy.rb +22 -0
  90. data/lib/scout_apm/slow_policy/percentile_policy.rb +24 -0
  91. data/lib/scout_apm/slow_policy/policy.rb +21 -0
  92. data/lib/scout_apm/slow_policy/speed_policy.rb +16 -0
  93. data/lib/scout_apm/slow_request_policy.rb +18 -77
  94. data/lib/scout_apm/slow_transaction.rb +3 -1
  95. data/lib/scout_apm/store.rb +0 -1
  96. data/lib/scout_apm/tracer.rb +2 -2
  97. data/lib/scout_apm/tracked_request.rb +39 -30
  98. data/lib/scout_apm/utils/backtrace_parser.rb +3 -0
  99. data/lib/scout_apm/utils/marshal_logging.rb +90 -0
  100. data/lib/scout_apm/utils/sql_sanitizer.rb +10 -1
  101. data/lib/scout_apm/utils/sql_sanitizer_regex.rb +8 -1
  102. data/lib/scout_apm/utils/sql_sanitizer_regex_1_8_7.rb +6 -0
  103. data/lib/scout_apm/utils/unique_id.rb +27 -0
  104. data/lib/scout_apm/version.rb +1 -1
  105. data/scout_apm.gemspec +13 -7
  106. data/test/test_helper.rb +2 -2
  107. data/test/unit/agent_context_test.rb +29 -0
  108. data/test/unit/auto_instrument/assignments-instrumented.rb +31 -0
  109. data/test/unit/auto_instrument/assignments.rb +31 -0
  110. data/test/unit/auto_instrument/controller-ast.txt +57 -0
  111. data/test/unit/auto_instrument/controller-instrumented.rb +49 -0
  112. data/test/unit/auto_instrument/controller.rb +49 -0
  113. data/test/unit/auto_instrument/rescue_from-instrumented.rb +13 -0
  114. data/test/unit/auto_instrument/rescue_from.rb +13 -0
  115. data/test/unit/auto_instrument_test.rb +54 -0
  116. data/test/unit/environment_test.rb +2 -2
  117. data/test/unit/error_service/error_buffer_test.rb +25 -0
  118. data/test/unit/error_service/ignored_exceptions_test.rb +49 -0
  119. data/test/unit/instruments/active_record_test.rb +40 -0
  120. data/test/unit/layer_children_set_test.rb +9 -0
  121. data/test/unit/request_histograms_test.rb +17 -0
  122. data/test/unit/serializers/payload_serializer_test.rb +39 -5
  123. data/test/unit/slow_request_policy_test.rb +41 -13
  124. data/test/unit/sql_sanitizer_test.rb +78 -0
  125. data/test/unit/tracer_test.rb +25 -0
  126. metadata +101 -18
  127. data/ext/stacks/extconf.rb +0 -38
  128. data/ext/stacks/scout_atomics.h +0 -86
  129. data/ext/stacks/stacks.c +0 -814
  130. data/lib/scout_apm/slow_job_policy.rb +0 -111
  131. data/lib/scout_apm/trace_compactor.rb +0 -312
  132. data/lib/scout_apm/utils/fake_stacks.rb +0 -88
  133. data/test/unit/instruments/active_record_instruments_test.rb +0 -5
  134. data/test/unit/slow_job_policy_test.rb +0 -6
  135. data/tester.rb +0 -53
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
- SHA1:
3
- metadata.gz: f2d0813402ccb2bbedb7ce81d0de22cff013d477
4
- data.tar.gz: 32a5467192d8677b641e4e195b197eca7337c6e0
2
+ SHA256:
3
+ metadata.gz: 16b10ca7e3c7474546feb2b367438e9fabeb2c799e85608b96afb3ddea37b647
4
+ data.tar.gz: 044ced73909cff452e59bccf14e7dfcf344fd8f6262c5b633b0d3239995609fd
5
5
  SHA512:
6
- metadata.gz: db361b9cc1a2c0c23a70c3165b391788d44150a34c8cc37b858d004d62660d829d89714f3dc96a7e9f519713ebdee4b06c04ab5da6375a29937617b5d860b58b
7
- data.tar.gz: f8b2c30c07950cbaf5377c805a5e41eb06d3c6b423f9a3027712987d3ae652dbe11032cb6c911f94141b9f547c9d98c9eced4533e64a38fabed533b6f96e5fea
6
+ metadata.gz: c2ae77ef620e77bce7b267fe8c39ff2f91945dfffc3ad008dd01cbd3b45268a8b44624713652d1df2bdeb2789bedb1fdb98aa58742b48326b1821ea01482132d
7
+ data.tar.gz: c533bf6cf2822f7688b4377e9f69e005eb1255c0c03cd000dd5d4edaef74b7761b4b8af9b8d39d1229480fd7f2cd0b0f6bcaf1890be5b3f6a9540bf7f8e03f64
@@ -0,0 +1,49 @@
1
+ name: Tests
2
+
3
+ on: [push, pull_request]
4
+
5
+ jobs:
6
+ lint:
7
+ runs-on: ubuntu-latest
8
+
9
+ steps:
10
+ - uses: actions/checkout@v2
11
+ - uses: ruby/setup-ruby@v1
12
+ with:
13
+ bundler-cache: true
14
+ ruby-version: 2.6
15
+ - run: bundle exec rubocop
16
+
17
+ test:
18
+ strategy:
19
+ fail-fast: false
20
+ matrix:
21
+ include:
22
+ - ruby: 2.1
23
+ gemfile: gems/rails3.gemfile
24
+ - ruby: 2.2
25
+ - ruby: 2.3
26
+ - ruby: 2.4
27
+ - ruby: 2.5
28
+ - ruby: 2.6
29
+ - ruby: 2.6
30
+ gemfile: gems/octoshark.gemfile
31
+ - ruby: 2.6
32
+ gemfile: gems/rails3.gemfile
33
+ bundler: 1.17.3
34
+ - ruby: 2.7
35
+ - ruby: 3.0
36
+
37
+ env:
38
+ BUNDLE_GEMFILE: ${{ matrix.gemfile }}
39
+
40
+ runs-on: ubuntu-latest
41
+
42
+ steps:
43
+ - uses: actions/checkout@v2
44
+ - uses: ruby/setup-ruby@v1
45
+ with:
46
+ bundler-cache: true
47
+ bundler: ${{matrix.bundler}}
48
+ ruby-version: ${{ matrix.ruby }}
49
+ - run: bundle exec rake
data/.gitignore CHANGED
@@ -17,5 +17,5 @@ test/tmp/*coverage/*
17
17
  coverage/*
18
18
  lib/*.bundle
19
19
  lib/*.so
20
- **/.RUBYARCHDIR.time
21
20
  log/scout_apm.log
21
+ gems/*.lock
data/.rubocop.yml CHANGED
@@ -1,13 +1,13 @@
1
1
  # Disable all cops by default
2
2
  AllCops:
3
3
  DisabledByDefault: true
4
+ Exclude:
5
+ - 'test/unit/auto_instrument/*'
6
+ - vendor/bundle/**/*
7
+ SuggestExtensions: false
4
8
 
5
9
  # 80 is stifling, especially with a few levels of nesting before we even start.
6
10
  # So bump it to 100 to keep really long lines from creeping in.
7
- Metrics/LineLength:
11
+ Layout/LineLength:
8
12
  Enabled: false
9
13
  Max: 100
10
-
11
- Style/HashSyntax:
12
- Enabled: true
13
- EnforcedStyle: hash_rockets
data/.travis.yml CHANGED
@@ -1,17 +1,22 @@
1
1
  language: ruby
2
- rvm:
3
- - "1.8.7"
4
- - "1.9.3"
5
- - "2.0"
6
- - "2.2"
7
- - "2.4"
8
- - "2.5"
2
+ dist: xenial
9
3
  cache: bundler
10
- before_install:
11
- - gem update --system
12
- - gem install bundler
13
- jobs:
4
+
5
+ matrix:
14
6
  include:
15
- - script: bundle exec rake test
16
- - script: bundle exec rubocop
17
- rvm: "2.5"
7
+ - rvm: 2.1
8
+ gemfile: gems/rails3.gemfile
9
+ - rvm: 2.2
10
+ - rvm: 2.3
11
+ - rvm: 2.4
12
+ - rvm: 2.5
13
+ - rvm: 2.6
14
+ - rvm: 2.7
15
+ - rvm: 3.0
16
+ - rvm: 2.6
17
+ gemfile: gems/octoshark.gemfile
18
+ - rvm: 2.6
19
+ name: rubocop yo
20
+ script: bundle exec rubocop
21
+ - rvm: 2.6
22
+ gemfile: gems/rails3.gemfile
data/CHANGELOG.markdown CHANGED
@@ -1,6 +1,147 @@
1
- # 3.0.0
1
+ # 4.0.4
2
2
 
3
- * ScoutProf BETA
3
+ * Add Faktory Support (#385)
4
+ * Remove Regexp hack for 1.8.7 (no longer supported) (#384)
5
+ * More robust DelayedJob detection (#382)
6
+ * Fix kwargs handling in Tracing module (#381)
7
+ # 4.0.3
8
+
9
+ * Handle edge case with nil Typhoeus current-layer (#380)
10
+ * Fix args passing to render_partial (#379)
11
+
12
+ # 4.0.2
13
+
14
+ * Add Typhoeus instrumentation (#376)
15
+
16
+ # 4.0.1
17
+
18
+ * Add support for Ruby 3.0 (#374)
19
+ * Use Github Actions for CI (#370)
20
+ * Fix edge case in sanitization of Postgres SQL (#368)
21
+
22
+ # 4.0.0
23
+
24
+ * Require Ruby >= 2.1 (#270)
25
+ * ErrorService reporting. Enable with `errors_enabled` config setting. (#347)
26
+ * Modular SlowRequestPolicy (#364)
27
+ * Fix deprecation warnings (#354)
28
+
29
+ # 2.6.10
30
+
31
+ * Fix an edge case in JSON serialization (#360)
32
+
33
+ # 2.6.9
34
+
35
+ * Add `ssl_cert_file` config option (#352)
36
+ * Improve sanitization of Postgres UPDATE SQL (#351)
37
+ * Allow custom URL sanitization (#341)
38
+
39
+ # 2.6.8
40
+
41
+ * Lock rake version for 1.8.7 to older version (#329)
42
+ * Delete unneeded .DS_Store file that snuck in (#334)
43
+ * Fix typo in "queue_time_ms"
44
+ * Fix Rails 6 deprecation warning at boot time (#337)
45
+ * Fix partial naming on Rails 6.0 (#339)
46
+ * Support Sidekiq 6.1 instrumentation (#340)
47
+
48
+ # 2.6.7
49
+
50
+ * Remove accidental call to `as_json`
51
+
52
+ # 2.6.6
53
+
54
+ * Add basic support for parsing Microsoft SQLServer queries (#317)
55
+ * Refine Postgresql Sanitization with subqueries and JSON operations (#262)
56
+
57
+ # 2.6.5
58
+
59
+ * Add a tag to any requests that reach maximum number of spans (#316)
60
+ * Update testing library Mocha (#315)
61
+ * Fix case sensitivity mismatch in Job renaming (#314)
62
+ * Add support for Sneakers 2.5 (#313)
63
+ * Fix edge case with Resque instrumentation (#312)
64
+ * Fix missing source code when used with BugSnag (#308)
65
+
66
+ # 2.6.4
67
+
68
+ * Add defensive check against a nil @address in Net/HTTP instruments (#306)
69
+
70
+ # 2.6.3
71
+
72
+ * Standardize Metadata with other language agents (#302)
73
+ * Add Mongoid 7.x support (#295)
74
+ * Add HTTP::Client support (#260)
75
+
76
+ # 2.6.2
77
+
78
+ * Fix Autoinstruments logging when running without ActiveSupport (#290)
79
+ * Fix edge-case Autoinstruments syntax error (#287)
80
+ * Fix invalid syntax for running on Ruby 1.8.7
81
+
82
+ # 2.6.1
83
+
84
+ * Logging total autoinstrumented spans and the ratio of significant to total spans (#283).
85
+ * Added `autoinstruments_ignore` option (also #283).
86
+
87
+ # 2.6.0
88
+
89
+ * Autoinstruments (#247). Disabled by default. Set `auto_instruments: true` to enable.
90
+
91
+ # 2.5.3
92
+
93
+ * Add Que support (#265)
94
+ * Add Memcached support (#279)
95
+
96
+ # 2.5.2
97
+
98
+ * Don't process limited layers in detailed traces (#268)
99
+ * Fix OctoShark (and other gems which patch ActiveRecord) interaction (#217)
100
+ * Legacy [Rails 2.3 fix for as_json](https://github.com/scoutapp/scout_apm_ruby/pull/276)
101
+
102
+ # 2.5.1
103
+
104
+ * Decrease timeline trace span limit to 1,500 to address [this bug](https://github.com/scoutapp/scout_apm_ruby/issues/267).
105
+
106
+ # 2.5.0
107
+
108
+ * Added timeline traces and an associated `timeline_traces: true` config option.
109
+ * Increased timeline traces span limit to 2,500 from 500.
110
+
111
+ # 2.4.24
112
+
113
+ * Fix for prepending view instruments in the case of templates that lack a `virtual_path` (#257).
114
+
115
+ # 2.4.23
116
+
117
+ * Extend #251 to use prepend on all view instruments (#255)
118
+
119
+ # 2.4.22
120
+
121
+ * Support Rails 6.0 View Instruments (#251)
122
+ * Update documentation URLs (#236)
123
+
124
+ # 2.4.21
125
+
126
+ * App & Background Integrations only install when needed (#228)
127
+ * New Setting `collect_remote_ip`, to optionally disable automated capture of
128
+ end-user IP Address. No change to default behavior.
129
+ * Allow setting `compress_payload` option from ENV var (#234)
130
+
131
+ # 2.4.20
132
+
133
+ * `start_resque_server_instrument` option to allow disabling the WEBrick server
134
+ component in custom installation scenarios
135
+ * Allow setting `revision_sha` setting in YAML
136
+
137
+ # 2.4.19
138
+
139
+ * Fix disabled_instruments (#220)
140
+
141
+ # 2.4.18
142
+
143
+ * Add Shoryuken Support (#215)
144
+ * Add Sneakers Support (#216)
4
145
 
5
146
  # 2.4.17
6
147
 
@@ -196,7 +337,6 @@ reusing that version number to avoid confusion.
196
337
 
197
338
  * Max layaway file threshold limit
198
339
 
199
-
200
340
  # 2.1.17
201
341
 
202
342
  * Additional logging around file system usage
@@ -240,6 +380,7 @@ reusing that version number to avoid confusion.
240
380
  * Initial Delayed Job support
241
381
  * Limit max metric size of a trace to 500.
242
382
 
383
+
243
384
  # 2.1.8
244
385
 
245
386
  * Adds Git revision detection, which is reported on app load and associated with transaction traces
@@ -625,7 +766,7 @@ Big set of features getting merged in for this release.
625
766
 
626
767
  # 0.1.3
627
768
 
628
- * Adds capacity calculation via "Instance/Capacity" metric.
769
+ * Adds capacity calculation via "Instance/Capacity" metric.
629
770
  * Tweaks tracing to still count a transaction if it results in a 500 error and includes it in accumulated time.
630
771
  * Adds per-transaction error tracking (ex: Errors/Controller/widgets/index)
631
772
 
data/Gemfile CHANGED
@@ -3,10 +3,4 @@ source "https://rubygems.org"
3
3
  # Specify your gem's dependencies in scout_apm.gemspec
4
4
  gemspec
5
5
 
6
- # Pin development dependencies more conservatively for Ruby 1.8.7
7
- if RUBY_VERSION <= "1.8.7"
8
- gem "activesupport", "~> 3.2"
9
- gem "i18n", "~> 0.6.11"
10
- gem "pry", "~> 0.9.12"
11
- gem "rake", "~> 10.5"
12
- end
6
+ gem "rake", ">= 12.3.3"
data/README.markdown CHANGED
@@ -12,8 +12,8 @@ The Scout agent is engineered to do some wonderful things:
12
12
 
13
13
  * A unique focus on identifying those hard-to-investigate outliers like memory bloat, N+1s, and user-specific problems. [See an example workflow](http://scoutapp.com/newrelic-alternative).
14
14
  * [Low-overhead](http://blog.scoutapp.com/articles/2016/02/07/overhead-benchmarks-new-relic-vs-scout)
15
- * View your performance metrics during development with [DevTrace](http://help.apm.scoutapp.com/#devtrace) and in production via [server_timing](https://github.com/scoutapp/ruby_server_timing).
16
- * Production-Safe profiling of custom code via [ScoutProf](http://help.apm.scoutapp.com/#scoutprof) (BETA).
15
+ * View your performance metrics during development with [DevTrace](https://docs.scoutapm.com/#devtrace) and in production via [server_timing](https://github.com/scoutapp/ruby_server_timing).
16
+ * Production-Safe profiling of custom code via [ScoutProf](https://docs.scoutapm.com/#scoutprof) (BETA).
17
17
 
18
18
  ## Getting Started
19
19
 
@@ -25,7 +25,7 @@ Update your Gemfile
25
25
 
26
26
  bundle install
27
27
 
28
- Signup for a [Scout](https://apm.scoutapp.com) account and put the provided
28
+ Signup for a [Scout](https://scoutapm.com) account and put the provided
29
29
  config file at `RAILS_ROOT/config/scout_apm.yml`.
30
30
 
31
31
  Your config file should look like:
@@ -35,6 +35,9 @@ Your config file should look like:
35
35
  key: YOUR_APPLICATION_KEY
36
36
  monitor: true
37
37
 
38
+ test:
39
+ monitor: false
40
+
38
41
  production:
39
42
  <<: *defaults
40
43
 
@@ -55,10 +58,16 @@ gem 'scout_apm'
55
58
  SCOUT_DEV_TRACE=true rails server
56
59
  ```
57
60
 
61
+ ## How to test gem locally
62
+
63
+ * Point your gemfile at your local checkout: `gem 'scout_apm', path: '/path/to/scout_apm_ruby`
64
+ * Compile native code: `cd /path/to/scout_apm_ruby && bundle exec rake compile`
65
+
66
+
58
67
  ## Docs
59
68
 
60
69
  For the complete list of supported frameworks, Rubies, configuration options
61
- and more, see our [help site](http://help.apm.scoutapp.com/).
70
+ and more, see our [help site](https://docs.scoutapm.com/).
62
71
 
63
72
  ## Help
64
73
 
data/Rakefile CHANGED
@@ -21,5 +21,5 @@ end
21
21
  # Rake Compiler
22
22
  require 'rake/extensiontask'
23
23
  Rake::ExtensionTask.new('allocations')
24
- Rake::ExtensionTask.new('stacks')
25
24
  Rake::ExtensionTask.new('rusage')
25
+
@@ -56,6 +56,7 @@ void Init_allocations()
56
56
  mInstruments = rb_define_module_under(mScoutApm, "Instruments");
57
57
  cAllocations = rb_define_class_under(mInstruments, "Allocations", rb_cObject);
58
58
  rb_define_singleton_method(cAllocations, "count", get_allocation_count, 0);
59
+ rb_define_singleton_method(cAllocations, "count", get_allocation_count, 0);
59
60
  rb_define_const(cAllocations, "ENABLED", Qtrue);
60
61
  Init_hooks(mScoutApm);
61
62
  }
@@ -78,6 +79,7 @@ void Init_allocations()
78
79
  mInstruments = rb_define_module_under(mScoutApm, "Instruments");
79
80
  cAllocations = rb_define_class_under(mInstruments, "Allocations", rb_cObject);
80
81
  rb_define_singleton_method(cAllocations, "count", get_allocation_count, 0);
82
+ rb_define_singleton_method(cAllocations, "count", get_allocation_count, 0);
81
83
  rb_define_const(cAllocations, "ENABLED", Qfalse);
82
84
  Init_hooks(mScoutApm);
83
85
  }
data/gems/README.md ADDED
@@ -0,0 +1,28 @@
1
+ # Gems
2
+
3
+ These gemfiles list specific configurations of gems that we use in travis testing.
4
+
5
+ ## Travis Matrix
6
+
7
+ ```yaml
8
+ matrix:
9
+ include:
10
+ - rvm: "1.8.7"
11
+ gemfile: gems/rails3.gemfile
12
+ ```
13
+
14
+ Using a gemfile controls the specific versions of the gems that are installed, and can be used to reproduce customer configurations for testing.
15
+
16
+ ## Local Testing
17
+
18
+ To install the gems specified by a specific gemfile:
19
+
20
+ ```
21
+ BUNDLE_GEMFILE=gems/rails5.gemfile bundle install
22
+ ```
23
+
24
+ Then, to run tests using these gems:
25
+
26
+ ```
27
+ BUNDLE_GEMFILE=gems/rails5.gemfile bundle exec rake
28
+ ```
@@ -0,0 +1,4 @@
1
+ eval_gemfile("../Gemfile")
2
+
3
+ # https://github.com/scoutapp/scout_apm_ruby/issues/217
4
+ gem 'octoshark'
@@ -0,0 +1,5 @@
1
+ eval_gemfile("../Gemfile")
2
+
3
+ gem "json", "1.8.6"
4
+ gem "rails", "~> 3.2"
5
+ gem "sqlite3", "~> 1.3.5"
@@ -0,0 +1,4 @@
1
+ eval_gemfile("../Gemfile")
2
+
3
+ gem "rails", "~> 4.2"
4
+ gem "sqlite3", "~> 1.3.6"
@@ -0,0 +1,4 @@
1
+ eval_gemfile("../Gemfile")
2
+
3
+ gem "rails", "~> 5.0"
4
+ gem "sqlite3", "~> 1.3", ">= 1.3.6"
@@ -0,0 +1,4 @@
1
+ eval_gemfile("../Gemfile")
2
+
3
+ gem "rails", "~> 6.0"
4
+ gem "sqlite3", "~> 1.4"