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 +4 -4
- data/CHANGELOG.md +6 -0
- data/ext/agent.yml +7 -7
- data/lib/appsignal/integrations/resque.rb +1 -1
- data/lib/appsignal/js_exception_transaction.rb +1 -0
- data/lib/appsignal/version.rb +1 -1
- data/spec/lib/appsignal/hooks/delayed_job_spec.rb +6 -6
- data/spec/lib/appsignal/integrations/resque_spec.rb +1 -0
- data/spec/lib/appsignal/js_exception_transaction_spec.rb +1 -0
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e48c3733ad27f81562f7088da9751efc8ae6ad5a
|
4
|
+
data.tar.gz: 169f88717d3a6f64d89c9edda77f7b8e532ee401
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1fcd60d7288e64b0e4d6d4f6bc5c8208c06a391d5a8204a3a6aa2a2523f80a330add31948e69859fb61005835a12dda414f6547e2316838533f0cf09e32d6d26
|
7
|
+
data.tar.gz: e7d31695310fbe921c385c511ac185a19acd2457f2fa87105e1f1c52a4cbd083687b244f70d7aa96dfc04cb970d32f99f22ef20c8bcdefba263af8450e5dbc77
|
data/CHANGELOG.md
CHANGED
@@ -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`
|
data/ext/agent.yml
CHANGED
@@ -1,15 +1,15 @@
|
|
1
1
|
---
|
2
|
-
version:
|
2
|
+
version: ee3d28b
|
3
3
|
triples:
|
4
4
|
x86_64-linux:
|
5
|
-
checksum:
|
6
|
-
download_url: https://appsignal-agent-releases.global.ssl.fastly.net/
|
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:
|
10
|
-
download_url: https://appsignal-agent-releases.global.ssl.fastly.net/
|
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:
|
14
|
-
download_url: https://appsignal-agent-releases.global.ssl.fastly.net/
|
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
|
data/lib/appsignal/version.rb
CHANGED
@@ -71,12 +71,12 @@ describe Appsignal::Hooks::DelayedJobHook do
|
|
71
71
|
:appsignal_name => 'CustomClass#perform',
|
72
72
|
:args => ['argument']
|
73
73
|
),
|
74
|
-
:id
|
75
|
-
:name
|
76
|
-
:priority
|
77
|
-
:attempts
|
78
|
-
:queue
|
79
|
-
:created_at
|
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
|
@@ -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.
|
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-
|
12
|
+
date: 2016-02-15 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: rack
|