appsignal 1.1.0.beta.5 → 1.1.0.beta.6

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 45d3c5002ccaab33e9097911bcd62580e50ee5be
4
- data.tar.gz: 8d45906739c0a2498c234239246aaa9001ef04f4
3
+ metadata.gz: e48c3733ad27f81562f7088da9751efc8ae6ad5a
4
+ data.tar.gz: 169f88717d3a6f64d89c9edda77f7b8e532ee401
5
5
  SHA512:
6
- metadata.gz: 8537d523dc2c8c226833edf63ef0a3f4d60279886ab1cfea94f43c5bc799ada94bff5929a5f7f4ce90f595cf7aca18b310a00aa0d7fd37296d08415e7a844532
7
- data.tar.gz: cdb7984e181744c571faab40cd56c7100baf5f0579af749461201fcbe9ded76249948905865966def2d7bea2d890dfec1dcd4540d95971ddbd88fd4ee1bc6816
6
+ metadata.gz: 1fcd60d7288e64b0e4d6d4f6bc5c8208c06a391d5a8204a3a6aa2a2523f80a330add31948e69859fb61005835a12dda414f6547e2316838533f0cf09e32d6d26
7
+ data.tar.gz: e7d31695310fbe921c385c511ac185a19acd2457f2fa87105e1f1c52a4cbd083687b244f70d7aa96dfc04cb970d32f99f22ef20c8bcdefba263af8450e5dbc77
@@ -4,6 +4,12 @@
4
4
  * Collect perams for Delayed Job and Sidekiq when using ActiveJob
5
5
  * Official Grape support
6
6
 
7
+ # 1.0.3
8
+ * Fix bug in completing JS transactions
9
+ * Make Resque integration robust for bigger payloads
10
+ * Message in logs if agent logging cannot initialize
11
+ * Call `to_s` on DJ id to see the id when using MongoDB
12
+
7
13
  # 1.0.2
8
14
  * Bug fix in format of process memory measurements
9
15
  * Event formatter for `instantiation.active_record`
@@ -1,15 +1,15 @@
1
1
  ---
2
- version: '3028272'
2
+ version: ee3d28b
3
3
  triples:
4
4
  x86_64-linux:
5
- checksum: 49acb9df0705040484e9e6510c0dc60147eabbdbf4ff5d0e05e591ea8cc55163
6
- download_url: https://appsignal-agent-releases.global.ssl.fastly.net/3028272/appsignal-agent-x86_64-linux-static.tar.gz
5
+ checksum: 709efd9cbf9d8b253d5c55a1a089e99c965d0a5824d11c439db6b539693c3f11
6
+ download_url: https://appsignal-agent-releases.global.ssl.fastly.net/ee3d28b/appsignal-agent-x86_64-linux-static.tar.gz
7
7
  lib_filename: libappsignal.a
8
8
  i686-linux:
9
- checksum: 16481eba373be6668e1bdc0f92aaedef4040e2e8401e8535f7120844b7292624
10
- download_url: https://appsignal-agent-releases.global.ssl.fastly.net/3028272/appsignal-agent-i686-linux-static.tar.gz
9
+ checksum: 109ea2cef01c2e71309790f04c409dd2984e257bf7e814b7a37351667fccf2f4
10
+ download_url: https://appsignal-agent-releases.global.ssl.fastly.net/ee3d28b/appsignal-agent-i686-linux-static.tar.gz
11
11
  lib_filename: libappsignal.a
12
12
  x86_64-darwin:
13
- checksum: b5a92cd2ef1aab344237e0b97ce0855e896a41f5fcf8a3fe6d70c224a4a6c68d
14
- download_url: https://appsignal-agent-releases.global.ssl.fastly.net/3028272/appsignal-agent-x86_64-darwin-static.tar.gz
13
+ checksum: 2b9a6ae54a5886ec7677da7a99703a3336630e75fe2778782777fa2c45c942b1
14
+ download_url: https://appsignal-agent-releases.global.ssl.fastly.net/ee3d28b/appsignal-agent-x86_64-darwin-static.tar.gz
15
15
  lib_filename: libappsignal.a
@@ -2,7 +2,7 @@ module Appsignal
2
2
  module Integrations
3
3
  module ResquePlugin
4
4
  def around_perform_resque_plugin(*args)
5
- Appsignal.monitor_transaction(
5
+ Appsignal.monitor_single_transaction(
6
6
  'perform_job.resque',
7
7
  :class => self.to_s,
8
8
  :method => 'perform'
@@ -53,6 +53,7 @@ module Appsignal
53
53
 
54
54
  def complete!
55
55
  Appsignal::Extension.finish_transaction(@transaction_index)
56
+ Appsignal::Extension.complete_transaction(@transaction_index)
56
57
  end
57
58
  end
58
59
  end
@@ -1,5 +1,5 @@
1
1
  require 'yaml'
2
2
 
3
3
  module Appsignal
4
- VERSION = '1.1.0.beta.5'
4
+ VERSION = '1.1.0.beta.6'
5
5
  end
@@ -71,12 +71,12 @@ describe Appsignal::Hooks::DelayedJobHook do
71
71
  :appsignal_name => 'CustomClass#perform',
72
72
  :args => ['argument']
73
73
  ),
74
- :id => '123',
75
- :name => 'TestClass#perform',
76
- :priority => 1,
77
- :attempts => 1,
78
- :queue => 'default',
79
- :created_at => time - 60_000
74
+ :id => '123',
75
+ :name => 'TestClass#perform',
76
+ :priority => 1,
77
+ :attempts => 1,
78
+ :queue => 'default',
79
+ :created_at => time - 60_000
80
80
  }
81
81
  end
82
82
  it "should wrap in a transaction with the correct params" do
@@ -31,6 +31,7 @@ if resque_present?
31
31
  before do
32
32
  transaction.stub(:complete => true)
33
33
  Appsignal::Transaction.stub(:current => transaction)
34
+ Appsignal.should_receive(:stop)
34
35
  end
35
36
 
36
37
  context "without exception" do
@@ -87,6 +87,7 @@ describe Appsignal::JSExceptionTransaction do
87
87
  describe "#complete!" do
88
88
  it "should call all required methods" do
89
89
  expect( Appsignal::Extension ).to receive(:finish_transaction).with(kind_of(Integer))
90
+ expect( Appsignal::Extension ).to receive(:complete_transaction).with(kind_of(Integer))
90
91
  transaction.complete!
91
92
  end
92
93
  end
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: 1.1.0.beta.5
4
+ version: 1.1.0.beta.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - Robert Beekman
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2016-02-03 00:00:00.000000000 Z
12
+ date: 2016-02-15 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: rack