appsignal 2.11.0.beta.5 → 2.11.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 +4 -4
- data/.semaphore/semaphore.yml +197 -0
- data/CHANGELOG.md +18 -0
- data/README.md +16 -1
- data/Rakefile +11 -5
- data/build_matrix.yml +13 -0
- data/ext/agent.yml +17 -25
- data/ext/appsignal_extension.c +1 -1
- data/ext/base.rb +12 -9
- data/gemfiles/no_dependencies.gemfile +7 -0
- data/gemfiles/resque-2.gemfile +0 -1
- data/gemfiles/webmachine.gemfile +1 -0
- data/lib/appsignal/cli/diagnose/utils.rb +8 -11
- data/lib/appsignal/cli/install.rb +5 -8
- data/lib/appsignal/config.rb +47 -15
- data/lib/appsignal/helpers/instrumentation.rb +32 -0
- data/lib/appsignal/hooks.rb +1 -0
- data/lib/appsignal/hooks/action_mailer.rb +22 -0
- data/lib/appsignal/hooks/active_support_notifications.rb +72 -0
- data/lib/appsignal/hooks/shoryuken.rb +43 -4
- data/lib/appsignal/transaction.rb +30 -2
- data/lib/appsignal/version.rb +1 -1
- data/spec/lib/appsignal/config_spec.rb +18 -1
- data/spec/lib/appsignal/hooks/action_mailer_spec.rb +54 -0
- data/spec/lib/appsignal/hooks/active_support_notifications/finish_with_state_shared_examples.rb +35 -0
- data/spec/lib/appsignal/hooks/active_support_notifications/instrument_shared_examples.rb +145 -0
- data/spec/lib/appsignal/hooks/active_support_notifications/start_finish_shared_examples.rb +69 -0
- data/spec/lib/appsignal/hooks/active_support_notifications_spec.rb +9 -137
- data/spec/lib/appsignal/hooks/resque_spec.rb +10 -2
- data/spec/lib/appsignal/hooks/shoryuken_spec.rb +151 -104
- data/spec/lib/appsignal/hooks/sidekiq_spec.rb +4 -2
- data/spec/lib/appsignal/transaction_spec.rb +55 -0
- data/spec/lib/appsignal_spec.rb +30 -0
- data/spec/support/helpers/dependency_helper.rb +4 -0
- metadata +14 -5
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: appsignal
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.11.
|
4
|
+
version: 2.11.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Robert Beekman
|
@@ -10,7 +10,7 @@ authors:
|
|
10
10
|
autorequire:
|
11
11
|
bindir: bin
|
12
12
|
cert_chain: []
|
13
|
-
date:
|
13
|
+
date: 2021-01-19 00:00:00.000000000 Z
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
16
16
|
name: rack
|
@@ -207,6 +207,7 @@ files:
|
|
207
207
|
- lib/appsignal/helpers/metrics.rb
|
208
208
|
- lib/appsignal/hooks.rb
|
209
209
|
- lib/appsignal/hooks/action_cable.rb
|
210
|
+
- lib/appsignal/hooks/action_mailer.rb
|
210
211
|
- lib/appsignal/hooks/active_job.rb
|
211
212
|
- lib/appsignal/hooks/active_support_notifications.rb
|
212
213
|
- lib/appsignal/hooks/celluloid.rb
|
@@ -295,6 +296,10 @@ files:
|
|
295
296
|
- spec/lib/appsignal/extension_spec.rb
|
296
297
|
- spec/lib/appsignal/garbage_collection_profiler_spec.rb
|
297
298
|
- spec/lib/appsignal/hooks/action_cable_spec.rb
|
299
|
+
- spec/lib/appsignal/hooks/action_mailer_spec.rb
|
300
|
+
- spec/lib/appsignal/hooks/active_support_notifications/finish_with_state_shared_examples.rb
|
301
|
+
- spec/lib/appsignal/hooks/active_support_notifications/instrument_shared_examples.rb
|
302
|
+
- spec/lib/appsignal/hooks/active_support_notifications/start_finish_shared_examples.rb
|
298
303
|
- spec/lib/appsignal/hooks/active_support_notifications_spec.rb
|
299
304
|
- spec/lib/appsignal/hooks/activejob_spec.rb
|
300
305
|
- spec/lib/appsignal/hooks/celluloid_spec.rb
|
@@ -406,11 +411,11 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
406
411
|
version: '1.9'
|
407
412
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
408
413
|
requirements:
|
409
|
-
- - "
|
414
|
+
- - ">="
|
410
415
|
- !ruby/object:Gem::Version
|
411
|
-
version:
|
416
|
+
version: '0'
|
412
417
|
requirements: []
|
413
|
-
rubygems_version: 3.
|
418
|
+
rubygems_version: 3.2.5
|
414
419
|
signing_key:
|
415
420
|
specification_version: 4
|
416
421
|
summary: Logs performance and exception data from your app to appsignal.com
|
@@ -443,6 +448,10 @@ test_files:
|
|
443
448
|
- spec/lib/appsignal/extension_spec.rb
|
444
449
|
- spec/lib/appsignal/garbage_collection_profiler_spec.rb
|
445
450
|
- spec/lib/appsignal/hooks/action_cable_spec.rb
|
451
|
+
- spec/lib/appsignal/hooks/action_mailer_spec.rb
|
452
|
+
- spec/lib/appsignal/hooks/active_support_notifications/finish_with_state_shared_examples.rb
|
453
|
+
- spec/lib/appsignal/hooks/active_support_notifications/instrument_shared_examples.rb
|
454
|
+
- spec/lib/appsignal/hooks/active_support_notifications/start_finish_shared_examples.rb
|
446
455
|
- spec/lib/appsignal/hooks/active_support_notifications_spec.rb
|
447
456
|
- spec/lib/appsignal/hooks/activejob_spec.rb
|
448
457
|
- spec/lib/appsignal/hooks/celluloid_spec.rb
|