appsignal 2.11.0.beta.5-java → 2.11.3-java
Sign up to get free protection for your applications and to get access to all the features.
- 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: java
|
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
|
@@ -221,6 +221,7 @@ files:
|
|
221
221
|
- lib/appsignal/helpers/metrics.rb
|
222
222
|
- lib/appsignal/hooks.rb
|
223
223
|
- lib/appsignal/hooks/action_cable.rb
|
224
|
+
- lib/appsignal/hooks/action_mailer.rb
|
224
225
|
- lib/appsignal/hooks/active_job.rb
|
225
226
|
- lib/appsignal/hooks/active_support_notifications.rb
|
226
227
|
- lib/appsignal/hooks/celluloid.rb
|
@@ -309,6 +310,10 @@ files:
|
|
309
310
|
- spec/lib/appsignal/extension_spec.rb
|
310
311
|
- spec/lib/appsignal/garbage_collection_profiler_spec.rb
|
311
312
|
- spec/lib/appsignal/hooks/action_cable_spec.rb
|
313
|
+
- spec/lib/appsignal/hooks/action_mailer_spec.rb
|
314
|
+
- spec/lib/appsignal/hooks/active_support_notifications/finish_with_state_shared_examples.rb
|
315
|
+
- spec/lib/appsignal/hooks/active_support_notifications/instrument_shared_examples.rb
|
316
|
+
- spec/lib/appsignal/hooks/active_support_notifications/start_finish_shared_examples.rb
|
312
317
|
- spec/lib/appsignal/hooks/active_support_notifications_spec.rb
|
313
318
|
- spec/lib/appsignal/hooks/activejob_spec.rb
|
314
319
|
- spec/lib/appsignal/hooks/celluloid_spec.rb
|
@@ -420,11 +425,11 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
420
425
|
version: '1.9'
|
421
426
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
422
427
|
requirements:
|
423
|
-
- - "
|
428
|
+
- - ">="
|
424
429
|
- !ruby/object:Gem::Version
|
425
|
-
version:
|
430
|
+
version: '0'
|
426
431
|
requirements: []
|
427
|
-
rubygems_version: 3.
|
432
|
+
rubygems_version: 3.2.5
|
428
433
|
signing_key:
|
429
434
|
specification_version: 4
|
430
435
|
summary: Logs performance and exception data from your app to appsignal.com
|
@@ -457,6 +462,10 @@ test_files:
|
|
457
462
|
- spec/lib/appsignal/extension_spec.rb
|
458
463
|
- spec/lib/appsignal/garbage_collection_profiler_spec.rb
|
459
464
|
- spec/lib/appsignal/hooks/action_cable_spec.rb
|
465
|
+
- spec/lib/appsignal/hooks/action_mailer_spec.rb
|
466
|
+
- spec/lib/appsignal/hooks/active_support_notifications/finish_with_state_shared_examples.rb
|
467
|
+
- spec/lib/appsignal/hooks/active_support_notifications/instrument_shared_examples.rb
|
468
|
+
- spec/lib/appsignal/hooks/active_support_notifications/start_finish_shared_examples.rb
|
460
469
|
- spec/lib/appsignal/hooks/active_support_notifications_spec.rb
|
461
470
|
- spec/lib/appsignal/hooks/activejob_spec.rb
|
462
471
|
- spec/lib/appsignal/hooks/celluloid_spec.rb
|