scout_apm 3.0.0.pre27 → 4.0.3
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 +5 -5
- data/.github/workflows/test.yml +49 -0
- data/.gitignore +1 -1
- data/.rubocop.yml +5 -5
- data/.travis.yml +19 -14
- data/CHANGELOG.markdown +139 -4
- data/Gemfile +1 -7
- data/README.markdown +13 -4
- data/Rakefile +1 -1
- data/ext/allocations/allocations.c +2 -0
- data/gems/README.md +28 -0
- data/gems/octoshark.gemfile +4 -0
- data/gems/rails3.gemfile +5 -0
- data/gems/rails4.gemfile +4 -0
- data/gems/rails5.gemfile +4 -0
- data/gems/rails6.gemfile +4 -0
- data/lib/scout_apm.rb +38 -9
- data/lib/scout_apm/agent.rb +29 -10
- data/lib/scout_apm/agent/exit_handler.rb +0 -1
- data/lib/scout_apm/agent_context.rb +22 -3
- data/lib/scout_apm/app_server_load.rb +7 -2
- data/lib/scout_apm/attribute_arranger.rb +0 -2
- data/lib/scout_apm/auto_instrument.rb +5 -0
- data/lib/scout_apm/auto_instrument/instruction_sequence.rb +31 -0
- data/lib/scout_apm/auto_instrument/layer.rb +23 -0
- data/lib/scout_apm/auto_instrument/parser.rb +27 -0
- data/lib/scout_apm/auto_instrument/rails.rb +175 -0
- data/lib/scout_apm/background_job_integrations/legacy_sneakers.rb +55 -0
- data/lib/scout_apm/background_job_integrations/que.rb +134 -0
- data/lib/scout_apm/background_job_integrations/resque.rb +6 -2
- data/lib/scout_apm/background_job_integrations/shoryuken.rb +124 -0
- data/lib/scout_apm/background_job_integrations/sidekiq.rb +5 -19
- data/lib/scout_apm/background_job_integrations/sneakers.rb +87 -0
- data/lib/scout_apm/config.rb +45 -8
- data/lib/scout_apm/detailed_trace.rb +217 -0
- data/lib/scout_apm/environment.rb +19 -1
- data/lib/scout_apm/error.rb +27 -0
- data/lib/scout_apm/error_service.rb +32 -0
- data/lib/scout_apm/error_service/error_buffer.rb +39 -0
- data/lib/scout_apm/error_service/error_record.rb +211 -0
- data/lib/scout_apm/error_service/ignored_exceptions.rb +66 -0
- data/lib/scout_apm/error_service/middleware.rb +32 -0
- data/lib/scout_apm/error_service/notifier.rb +33 -0
- data/lib/scout_apm/error_service/payload.rb +47 -0
- data/lib/scout_apm/error_service/periodic_work.rb +17 -0
- data/lib/scout_apm/error_service/railtie.rb +11 -0
- data/lib/scout_apm/error_service/sidekiq.rb +80 -0
- data/lib/scout_apm/extensions/transaction_callback_payload.rb +1 -1
- data/lib/scout_apm/fake_store.rb +3 -0
- data/lib/scout_apm/framework_integrations/rails_2.rb +2 -1
- data/lib/scout_apm/framework_integrations/rails_3_or_4.rb +3 -1
- data/lib/scout_apm/git_revision.rb +6 -3
- data/lib/scout_apm/instant/middleware.rb +2 -1
- data/lib/scout_apm/instrument_manager.rb +9 -7
- data/lib/scout_apm/instruments/action_controller_rails_2.rb +3 -1
- data/lib/scout_apm/instruments/action_controller_rails_3_rails4.rb +56 -55
- data/lib/scout_apm/instruments/action_view.rb +122 -26
- data/lib/scout_apm/instruments/active_record.rb +66 -18
- data/lib/scout_apm/instruments/http.rb +48 -0
- data/lib/scout_apm/instruments/memcached.rb +43 -0
- data/lib/scout_apm/instruments/mongoid.rb +9 -4
- data/lib/scout_apm/instruments/net_http.rb +8 -1
- data/lib/scout_apm/instruments/typhoeus.rb +88 -0
- data/lib/scout_apm/job_record.rb +4 -2
- data/lib/scout_apm/layaway_file.rb +4 -0
- data/lib/scout_apm/layer.rb +6 -57
- data/lib/scout_apm/layer_children_set.rb +9 -8
- data/lib/scout_apm/layer_converters/converter_base.rb +15 -30
- data/lib/scout_apm/layer_converters/slow_job_converter.rb +12 -2
- data/lib/scout_apm/layer_converters/slow_request_converter.rb +14 -4
- data/lib/scout_apm/layer_converters/trace_converter.rb +184 -0
- data/lib/scout_apm/limited_layer.rb +0 -7
- data/lib/scout_apm/metric_stats.rb +0 -8
- data/lib/scout_apm/middleware.rb +1 -1
- data/lib/scout_apm/periodic_work.rb +19 -0
- data/lib/scout_apm/remote/message.rb +4 -0
- data/lib/scout_apm/remote/server.rb +13 -1
- data/lib/scout_apm/reporter.rb +8 -3
- data/lib/scout_apm/reporting.rb +2 -1
- data/lib/scout_apm/request_histograms.rb +8 -0
- data/lib/scout_apm/serializers/app_server_load_serializer.rb +4 -0
- data/lib/scout_apm/serializers/directive_serializer.rb +4 -0
- data/lib/scout_apm/serializers/payload_serializer.rb +2 -2
- data/lib/scout_apm/serializers/payload_serializer_to_json.rb +30 -15
- data/lib/scout_apm/slow_job_record.rb +5 -1
- data/lib/scout_apm/slow_policy/age_policy.rb +33 -0
- data/lib/scout_apm/slow_policy/percent_policy.rb +22 -0
- data/lib/scout_apm/slow_policy/percentile_policy.rb +24 -0
- data/lib/scout_apm/slow_policy/policy.rb +21 -0
- data/lib/scout_apm/slow_policy/speed_policy.rb +16 -0
- data/lib/scout_apm/slow_request_policy.rb +18 -77
- data/lib/scout_apm/slow_transaction.rb +3 -1
- data/lib/scout_apm/store.rb +0 -1
- data/lib/scout_apm/tracked_request.rb +39 -30
- data/lib/scout_apm/utils/backtrace_parser.rb +3 -0
- data/lib/scout_apm/utils/marshal_logging.rb +90 -0
- data/lib/scout_apm/utils/sql_sanitizer.rb +10 -1
- data/lib/scout_apm/utils/sql_sanitizer_regex.rb +8 -1
- data/lib/scout_apm/utils/sql_sanitizer_regex_1_8_7.rb +6 -0
- data/lib/scout_apm/utils/unique_id.rb +27 -0
- data/lib/scout_apm/version.rb +1 -1
- data/scout_apm.gemspec +13 -7
- data/test/test_helper.rb +2 -2
- data/test/unit/agent_context_test.rb +29 -0
- data/test/unit/auto_instrument/assignments-instrumented.rb +31 -0
- data/test/unit/auto_instrument/assignments.rb +31 -0
- data/test/unit/auto_instrument/controller-ast.txt +57 -0
- data/test/unit/auto_instrument/controller-instrumented.rb +49 -0
- data/test/unit/auto_instrument/controller.rb +49 -0
- data/test/unit/auto_instrument/rescue_from-instrumented.rb +13 -0
- data/test/unit/auto_instrument/rescue_from.rb +13 -0
- data/test/unit/auto_instrument_test.rb +54 -0
- data/test/unit/environment_test.rb +2 -2
- data/test/unit/error_service/error_buffer_test.rb +25 -0
- data/test/unit/error_service/ignored_exceptions_test.rb +49 -0
- data/test/unit/instruments/active_record_test.rb +40 -0
- data/test/unit/layer_children_set_test.rb +9 -0
- data/test/unit/request_histograms_test.rb +17 -0
- data/test/unit/serializers/payload_serializer_test.rb +39 -5
- data/test/unit/slow_request_policy_test.rb +41 -13
- data/test/unit/sql_sanitizer_test.rb +78 -0
- metadata +101 -62
- data/ext/stacks/extconf.rb +0 -37
- data/ext/stacks/scout_atomics.h +0 -86
- data/ext/stacks/stacks.c +0 -814
- data/lib/scout_apm/slow_job_policy.rb +0 -111
- data/lib/scout_apm/trace_compactor.rb +0 -312
- data/lib/scout_apm/utils/fake_stacks.rb +0 -88
- data/test/unit/instruments/active_record_instruments_test.rb +0 -5
- data/test/unit/slow_job_policy_test.rb +0 -6
- data/tester.rb +0 -53
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
|
-
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
2
|
+
SHA256:
|
|
3
|
+
metadata.gz: b992479d1f96a3acca3f9cdbbafad0eb87e6fc88ec53e5de8f6360d01fe21eae
|
|
4
|
+
data.tar.gz: 2bd72c79abe8628029ac8c541e0fccff18e54fe5d43558148daebe95e7418e0c
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: edf84c2a3b8a60961e9f3452b2ca0f10b963501becd9d30889a0acb671ac39267ee44e31279a78ae6a6375365e9c06c9f8d24b8c8f426fa2e512be6c5b141a1f
|
|
7
|
+
data.tar.gz: 713bd41d14c74e0655e38002195355263f9413fab013deddb67019437c193169968d26b6a33a058cf8480b8249bd7cf87a6ccf530f2a9b319c8fd1b5875af8e7
|
|
@@ -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
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
|
-
|
|
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
|
-
|
|
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
|
-
|
|
11
|
-
|
|
12
|
-
- gem install bundler
|
|
13
|
-
jobs:
|
|
4
|
+
|
|
5
|
+
matrix:
|
|
14
6
|
include:
|
|
15
|
-
-
|
|
16
|
-
|
|
17
|
-
|
|
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,141 @@
|
|
|
1
|
-
#
|
|
1
|
+
# 4.0.3
|
|
2
2
|
|
|
3
|
-
*
|
|
3
|
+
* Handle edge case with nil Typhoeus current-layer (#380)
|
|
4
|
+
* Fix args passing to render_partial (#379)
|
|
5
|
+
|
|
6
|
+
# 4.0.2
|
|
7
|
+
|
|
8
|
+
* Add Typhoeus instrumentation (#376)
|
|
9
|
+
|
|
10
|
+
# 4.0.1
|
|
11
|
+
|
|
12
|
+
* Add support for Ruby 3.0 (#374)
|
|
13
|
+
* Use Github Actions for CI (#370)
|
|
14
|
+
* Fix edge case in sanitization of Postgres SQL (#368)
|
|
15
|
+
|
|
16
|
+
# 4.0.0
|
|
17
|
+
|
|
18
|
+
* Require Ruby >= 2.1 (#270)
|
|
19
|
+
* ErrorService reporting. Enable with `errors_enabled` config setting. (#347)
|
|
20
|
+
* Modular SlowRequestPolicy (#364)
|
|
21
|
+
* Fix deprecation warnings (#354)
|
|
22
|
+
|
|
23
|
+
# 2.6.10
|
|
24
|
+
|
|
25
|
+
* Fix an edge case in JSON serialization (#360)
|
|
26
|
+
|
|
27
|
+
# 2.6.9
|
|
28
|
+
|
|
29
|
+
* Add `ssl_cert_file` config option (#352)
|
|
30
|
+
* Improve sanitization of Postgres UPDATE SQL (#351)
|
|
31
|
+
* Allow custom URL sanitization (#341)
|
|
32
|
+
|
|
33
|
+
# 2.6.8
|
|
34
|
+
|
|
35
|
+
* Lock rake version for 1.8.7 to older version (#329)
|
|
36
|
+
* Delete unneeded .DS_Store file that snuck in (#334)
|
|
37
|
+
* Fix typo in "queue_time_ms"
|
|
38
|
+
* Fix Rails 6 deprecation warning at boot time (#337)
|
|
39
|
+
* Fix partial naming on Rails 6.0 (#339)
|
|
40
|
+
* Support Sidekiq 6.1 instrumentation (#340)
|
|
41
|
+
|
|
42
|
+
# 2.6.7
|
|
43
|
+
|
|
44
|
+
* Remove accidental call to `as_json`
|
|
45
|
+
|
|
46
|
+
# 2.6.6
|
|
47
|
+
|
|
48
|
+
* Add basic support for parsing Microsoft SQLServer queries (#317)
|
|
49
|
+
* Refine Postgresql Sanitization with subqueries and JSON operations (#262)
|
|
50
|
+
|
|
51
|
+
# 2.6.5
|
|
52
|
+
|
|
53
|
+
* Add a tag to any requests that reach maximum number of spans (#316)
|
|
54
|
+
* Update testing library Mocha (#315)
|
|
55
|
+
* Fix case sensitivity mismatch in Job renaming (#314)
|
|
56
|
+
* Add support for Sneakers 2.5 (#313)
|
|
57
|
+
* Fix edge case with Resque instrumentation (#312)
|
|
58
|
+
* Fix missing source code when used with BugSnag (#308)
|
|
59
|
+
|
|
60
|
+
# 2.6.4
|
|
61
|
+
|
|
62
|
+
* Add defensive check against a nil @address in Net/HTTP instruments (#306)
|
|
63
|
+
|
|
64
|
+
# 2.6.3
|
|
65
|
+
|
|
66
|
+
* Standardize Metadata with other language agents (#302)
|
|
67
|
+
* Add Mongoid 7.x support (#295)
|
|
68
|
+
* Add HTTP::Client support (#260)
|
|
69
|
+
|
|
70
|
+
# 2.6.2
|
|
71
|
+
|
|
72
|
+
* Fix Autoinstruments logging when running without ActiveSupport (#290)
|
|
73
|
+
* Fix edge-case Autoinstruments syntax error (#287)
|
|
74
|
+
* Fix invalid syntax for running on Ruby 1.8.7
|
|
75
|
+
|
|
76
|
+
# 2.6.1
|
|
77
|
+
|
|
78
|
+
* Logging total autoinstrumented spans and the ratio of significant to total spans (#283).
|
|
79
|
+
* Added `autoinstruments_ignore` option (also #283).
|
|
80
|
+
|
|
81
|
+
# 2.6.0
|
|
82
|
+
|
|
83
|
+
* Autoinstruments (#247). Disabled by default. Set `auto_instruments: true` to enable.
|
|
84
|
+
|
|
85
|
+
# 2.5.3
|
|
86
|
+
|
|
87
|
+
* Add Que support (#265)
|
|
88
|
+
* Add Memcached support (#279)
|
|
89
|
+
|
|
90
|
+
# 2.5.2
|
|
91
|
+
|
|
92
|
+
* Don't process limited layers in detailed traces (#268)
|
|
93
|
+
* Fix OctoShark (and other gems which patch ActiveRecord) interaction (#217)
|
|
94
|
+
* Legacy [Rails 2.3 fix for as_json](https://github.com/scoutapp/scout_apm_ruby/pull/276)
|
|
95
|
+
|
|
96
|
+
# 2.5.1
|
|
97
|
+
|
|
98
|
+
* Decrease timeline trace span limit to 1,500 to address [this bug](https://github.com/scoutapp/scout_apm_ruby/issues/267).
|
|
99
|
+
|
|
100
|
+
# 2.5.0
|
|
101
|
+
|
|
102
|
+
* Added timeline traces and an associated `timeline_traces: true` config option.
|
|
103
|
+
* Increased timeline traces span limit to 2,500 from 500.
|
|
104
|
+
|
|
105
|
+
# 2.4.24
|
|
106
|
+
|
|
107
|
+
* Fix for prepending view instruments in the case of templates that lack a `virtual_path` (#257).
|
|
108
|
+
|
|
109
|
+
# 2.4.23
|
|
110
|
+
|
|
111
|
+
* Extend #251 to use prepend on all view instruments (#255)
|
|
112
|
+
|
|
113
|
+
# 2.4.22
|
|
114
|
+
|
|
115
|
+
* Support Rails 6.0 View Instruments (#251)
|
|
116
|
+
* Update documentation URLs (#236)
|
|
117
|
+
|
|
118
|
+
# 2.4.21
|
|
119
|
+
|
|
120
|
+
* App & Background Integrations only install when needed (#228)
|
|
121
|
+
* New Setting `collect_remote_ip`, to optionally disable automated capture of
|
|
122
|
+
end-user IP Address. No change to default behavior.
|
|
123
|
+
* Allow setting `compress_payload` option from ENV var (#234)
|
|
124
|
+
|
|
125
|
+
# 2.4.20
|
|
126
|
+
|
|
127
|
+
* `start_resque_server_instrument` option to allow disabling the WEBrick server
|
|
128
|
+
component in custom installation scenarios
|
|
129
|
+
* Allow setting `revision_sha` setting in YAML
|
|
130
|
+
|
|
131
|
+
# 2.4.19
|
|
132
|
+
|
|
133
|
+
* Fix disabled_instruments (#220)
|
|
134
|
+
|
|
135
|
+
# 2.4.18
|
|
136
|
+
|
|
137
|
+
* Add Shoryuken Support (#215)
|
|
138
|
+
* Add Sneakers Support (#216)
|
|
4
139
|
|
|
5
140
|
# 2.4.17
|
|
6
141
|
|
|
@@ -196,7 +331,6 @@ reusing that version number to avoid confusion.
|
|
|
196
331
|
|
|
197
332
|
* Max layaway file threshold limit
|
|
198
333
|
|
|
199
|
-
|
|
200
334
|
# 2.1.17
|
|
201
335
|
|
|
202
336
|
* Additional logging around file system usage
|
|
@@ -240,6 +374,7 @@ reusing that version number to avoid confusion.
|
|
|
240
374
|
* Initial Delayed Job support
|
|
241
375
|
* Limit max metric size of a trace to 500.
|
|
242
376
|
|
|
377
|
+
|
|
243
378
|
# 2.1.8
|
|
244
379
|
|
|
245
380
|
* Adds Git revision detection, which is reported on app load and associated with transaction traces
|
|
@@ -625,7 +760,7 @@ Big set of features getting merged in for this release.
|
|
|
625
760
|
|
|
626
761
|
# 0.1.3
|
|
627
762
|
|
|
628
|
-
* Adds capacity calculation via "Instance/Capacity" metric.
|
|
763
|
+
* Adds capacity calculation via "Instance/Capacity" metric.
|
|
629
764
|
* Tweaks tracing to still count a transaction if it results in a 500 error and includes it in accumulated time.
|
|
630
765
|
* Adds per-transaction error tracking (ex: Errors/Controller/widgets/index)
|
|
631
766
|
|
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
|
-
|
|
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](
|
|
16
|
-
* Production-Safe profiling of custom code via [ScoutProf](
|
|
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://
|
|
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](
|
|
70
|
+
and more, see our [help site](https://docs.scoutapm.com/).
|
|
62
71
|
|
|
63
72
|
## Help
|
|
64
73
|
|
data/Rakefile
CHANGED
|
@@ -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
|
+
```
|
data/gems/rails3.gemfile
ADDED
data/gems/rails4.gemfile
ADDED
data/gems/rails5.gemfile
ADDED
data/gems/rails6.gemfile
ADDED
data/lib/scout_apm.rb
CHANGED
|
@@ -15,7 +15,7 @@ require 'socket'
|
|
|
15
15
|
require 'thread'
|
|
16
16
|
require 'time'
|
|
17
17
|
require 'yaml'
|
|
18
|
-
require '
|
|
18
|
+
require 'securerandom'
|
|
19
19
|
|
|
20
20
|
#####################################
|
|
21
21
|
# Gem Requires
|
|
@@ -45,6 +45,7 @@ require 'scout_apm/layer_converters/database_converter'
|
|
|
45
45
|
require 'scout_apm/layer_converters/slow_request_converter'
|
|
46
46
|
require 'scout_apm/layer_converters/request_queue_time_converter'
|
|
47
47
|
require 'scout_apm/layer_converters/allocation_metric_converter'
|
|
48
|
+
require 'scout_apm/layer_converters/trace_converter'
|
|
48
49
|
require 'scout_apm/layer_converters/histograms'
|
|
49
50
|
require 'scout_apm/layer_converters/find_layer_by_type'
|
|
50
51
|
|
|
@@ -59,6 +60,10 @@ require 'scout_apm/server_integrations/null'
|
|
|
59
60
|
require 'scout_apm/background_job_integrations/sidekiq'
|
|
60
61
|
require 'scout_apm/background_job_integrations/delayed_job'
|
|
61
62
|
require 'scout_apm/background_job_integrations/resque'
|
|
63
|
+
require 'scout_apm/background_job_integrations/shoryuken'
|
|
64
|
+
require 'scout_apm/background_job_integrations/sneakers'
|
|
65
|
+
require 'scout_apm/background_job_integrations/que'
|
|
66
|
+
require 'scout_apm/background_job_integrations/legacy_sneakers'
|
|
62
67
|
|
|
63
68
|
require 'scout_apm/framework_integrations/rails_2'
|
|
64
69
|
require 'scout_apm/framework_integrations/rails_3_or_4'
|
|
@@ -73,8 +78,10 @@ require 'scout_apm/histogram'
|
|
|
73
78
|
|
|
74
79
|
require 'scout_apm/instruments/net_http'
|
|
75
80
|
require 'scout_apm/instruments/http_client'
|
|
81
|
+
require 'scout_apm/instruments/typhoeus'
|
|
76
82
|
require 'scout_apm/instruments/moped'
|
|
77
83
|
require 'scout_apm/instruments/mongoid'
|
|
84
|
+
require 'scout_apm/instruments/memcached'
|
|
78
85
|
require 'scout_apm/instruments/redis'
|
|
79
86
|
require 'scout_apm/instruments/influxdb'
|
|
80
87
|
require 'scout_apm/instruments/elasticsearch'
|
|
@@ -94,12 +101,6 @@ require 'scout_apm/instruments/process/process_memory'
|
|
|
94
101
|
require 'scout_apm/instruments/percentile_sampler'
|
|
95
102
|
require 'scout_apm/instruments/samplers'
|
|
96
103
|
|
|
97
|
-
begin
|
|
98
|
-
require 'stacks'
|
|
99
|
-
rescue LoadError
|
|
100
|
-
require 'scout_apm/utils/fake_stacks'
|
|
101
|
-
end
|
|
102
|
-
|
|
103
104
|
require 'scout_apm/app_server_load'
|
|
104
105
|
|
|
105
106
|
require 'scout_apm/ignored_uris.rb'
|
|
@@ -113,6 +114,7 @@ require 'scout_apm/utils/time'
|
|
|
113
114
|
require 'scout_apm/utils/unique_id'
|
|
114
115
|
require 'scout_apm/utils/numbers'
|
|
115
116
|
require 'scout_apm/utils/gzip_helper'
|
|
117
|
+
require 'scout_apm/utils/marshal_logging'
|
|
116
118
|
|
|
117
119
|
require 'scout_apm/config'
|
|
118
120
|
require 'scout_apm/environment'
|
|
@@ -133,7 +135,6 @@ require 'scout_apm/tracer'
|
|
|
133
135
|
require 'scout_apm/transaction'
|
|
134
136
|
require 'scout_apm/context'
|
|
135
137
|
require 'scout_apm/instant_reporting'
|
|
136
|
-
require 'scout_apm/trace_compactor'
|
|
137
138
|
require 'scout_apm/background_recorder'
|
|
138
139
|
require 'scout_apm/synchronous_recorder'
|
|
139
140
|
|
|
@@ -142,9 +143,15 @@ require 'scout_apm/metric_stats'
|
|
|
142
143
|
require 'scout_apm/db_query_metric_stats'
|
|
143
144
|
require 'scout_apm/slow_transaction'
|
|
144
145
|
require 'scout_apm/slow_job_record'
|
|
146
|
+
require 'scout_apm/detailed_trace'
|
|
145
147
|
require 'scout_apm/scored_item_set'
|
|
148
|
+
|
|
146
149
|
require 'scout_apm/slow_request_policy'
|
|
147
|
-
require 'scout_apm/
|
|
150
|
+
require 'scout_apm/slow_policy/age_policy'
|
|
151
|
+
require 'scout_apm/slow_policy/speed_policy'
|
|
152
|
+
require 'scout_apm/slow_policy/percent_policy'
|
|
153
|
+
require 'scout_apm/slow_policy/percentile_policy'
|
|
154
|
+
|
|
148
155
|
require 'scout_apm/job_record'
|
|
149
156
|
require 'scout_apm/request_histograms'
|
|
150
157
|
require 'scout_apm/transaction_time_consumed'
|
|
@@ -185,6 +192,16 @@ require 'scout_apm/tasks/support'
|
|
|
185
192
|
require 'scout_apm/extensions/config'
|
|
186
193
|
require 'scout_apm/extensions/transaction_callback_payload'
|
|
187
194
|
|
|
195
|
+
require 'scout_apm/error_service'
|
|
196
|
+
require 'scout_apm/error_service/middleware'
|
|
197
|
+
require 'scout_apm/error_service/notifier'
|
|
198
|
+
require 'scout_apm/error_service/sidekiq'
|
|
199
|
+
require 'scout_apm/error_service/ignored_exceptions'
|
|
200
|
+
require 'scout_apm/error_service/error_buffer'
|
|
201
|
+
require 'scout_apm/error_service/error_record'
|
|
202
|
+
require 'scout_apm/error_service/periodic_work'
|
|
203
|
+
require 'scout_apm/error_service/payload'
|
|
204
|
+
|
|
188
205
|
if defined?(Rails) && defined?(Rails::VERSION) && defined?(Rails::VERSION::MAJOR) && Rails::VERSION::MAJOR >= 3 && defined?(Rails::Railtie)
|
|
189
206
|
module ScoutApm
|
|
190
207
|
class Railtie < Rails::Railtie
|
|
@@ -197,6 +214,18 @@ if defined?(Rails) && defined?(Rails::VERSION) && defined?(Rails::VERSION::MAJOR
|
|
|
197
214
|
# Attempt to start right away, this will work best for preloading apps, Unicorn & Puma & similar
|
|
198
215
|
ScoutApm::Agent.instance.install
|
|
199
216
|
|
|
217
|
+
if ScoutApm::Agent.instance.context.config.value("auto_instruments")
|
|
218
|
+
ScoutApm::Agent.instance.context.logger.debug("AutoInstruments is enabled.")
|
|
219
|
+
require 'scout_apm/auto_instrument'
|
|
220
|
+
else
|
|
221
|
+
ScoutApm::Agent.instance.context.logger.debug("AutoInstruments is disabled.")
|
|
222
|
+
end
|
|
223
|
+
|
|
224
|
+
if ScoutApm::Agent.instance.context.config.value("errors_enabled")
|
|
225
|
+
app.config.middleware.insert_after ActionDispatch::DebugExceptions, ScoutApm::ErrorService::Middleware
|
|
226
|
+
ScoutApm::ErrorService::Sidekiq.new.install
|
|
227
|
+
end
|
|
228
|
+
|
|
200
229
|
# Install the middleware every time in development mode.
|
|
201
230
|
# The middleware is a noop if dev_trace is not enabled in config
|
|
202
231
|
if Rails.env.development?
|