scout_apm 0.9.1.1 → 0.9.1.2

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: 9b963a68f3dab649dd9d7b6699abce3b686661b9
4
- data.tar.gz: 14646ff89f0d9786b5b21666a084f3a17f235d72
3
+ metadata.gz: f485e75e0d1dae06350ea8c2b8f4e94ea8350ae8
4
+ data.tar.gz: f762a6dc3cb8ec0bbb808d89aa64f31521cbc142
5
5
  SHA512:
6
- metadata.gz: e33a06c69c3578b7a38a39b2a2a07c3f91ad262c544de07de24165e01ca141625b639e67aa51fe9282ccb599c716667ab2c81a293208c577bc3acc134518e43f
7
- data.tar.gz: 52eb23ae0004aaf018422bd177280ddc2683ce262c8810b0117464aea1853f0eebee79070c312d75060d37b116425156021c4b8e268cf56863e11cefeec85d5c
6
+ metadata.gz: 9df9927536aa3b70b717fd58dd86e8845f8e11a50dde942626eac1f5e219f9a8eec29c1fc64a3c9747be0be9713fed07111347a327540869f202fd1402ede489
7
+ data.tar.gz: 215cbe760a2293eeb0df70375345109866270236ca6e8d3b0c291cd1ddadd231dd39ddfdcf7ffd45fa222b3efd8921320d22b30d8320e521bdae8c404433dda6
@@ -1,3 +1,8 @@
1
+ # 0.9.1.1
2
+
3
+ * Minor change in Stackprof processing code. Any exception that happens there
4
+ should never propagate out to the application
5
+
1
6
  # 0.9.1
2
7
 
3
8
  Big set of features getting merged in for this release.
@@ -5,8 +5,14 @@ module ScoutApm
5
5
 
6
6
  def initialize(raw_stackprof)
7
7
  @raw_stackprof = raw_stackprof
8
+
9
+ # Log the raw stackprof info
8
10
  unless StackProf.respond_to?(:fake?) && StackProf.fake?
9
- ScoutApm::Agent.instance.logger.debug("StackProf - Samples: #{raw_stackprof[:samples]}, GC: #{raw_stackprof[:gc_samples]}, missed: #{raw_stackprof[:missed_samples]}, Interval: #{raw_stackprof[:interval]}")
11
+ begin
12
+ ScoutApm::Agent.instance.logger.debug("StackProf - Samples: #{raw_stackprof[:samples]}, GC: #{raw_stackprof[:gc_samples]}, missed: #{raw_stackprof[:missed_samples]}, Interval: #{raw_stackprof[:interval]}")
13
+ rescue
14
+ ScoutApm::Agent.instance.logger.debug("StackProf Raw - #{raw_stackprof.inspect}")
15
+ end
10
16
  end
11
17
  end
12
18
 
@@ -1,4 +1,4 @@
1
1
  module ScoutApm
2
- VERSION = "0.9.1.1"
2
+ VERSION = "0.9.1.2"
3
3
  end
4
4
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: scout_apm
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.9.1.1
4
+ version: 0.9.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Derek Haynes