raygun-apm 0.0.17-x86-mingw32 → 0.0.18-x86-mingw32

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 57e4e87233be5372687740f5bc96210d6b3ac0b7272ec0ee05e8b98bf488b912
4
- data.tar.gz: c06bae5a34f24dcb7b1afe45661930cf37e347f9c359f1f8a6db07a7e3522401
3
+ metadata.gz: 94414fe1bea4d3f8804d383c99190a0f0da02983a78148f7e12ebe05eb2ecba8
4
+ data.tar.gz: 9bb73484f89e4a5742163cd6a377cd809adfe595238ae3fa5d33993a5a801115
5
5
  SHA512:
6
- metadata.gz: a19f34a32a9fe3ce9526228b64068b30f484797e911836b21bd064555eda77d3148b11ecd1970b3f49771aec93d13d50b367029bf3f052e74fe5b3367b255c25
7
- data.tar.gz: 851b2e07b4c5f9198f32da4c7686abb1360755d01fc159f823d80ba6a36a388121fa71eecc7d3cb9eb8a9892871c543764c713f9c16d8c2e5adaaa6375e2e98a
6
+ metadata.gz: '085ae90e46e513c810ebc1f6437a6b41cf06ca6f03cdfd008f68e5489a48517ac7eda5bb27864b17970c05acee0bd0cf8a022070d21cdb48408ade3f0db9ea59'
7
+ data.tar.gz: 449fde76717cf57689ebbac3b3963e547e8a446f83252e0410e29578201abbbea075dcb2ca461de0260af740690b515308804e6cc088360b75f14da660be6c20
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- raygun-apm (0.0.17)
4
+ raygun-apm (0.0.18)
5
5
 
6
6
  GEM
7
7
  remote: https://rubygems.org/
Binary file
Binary file
@@ -33,7 +33,7 @@ module Raygun
33
33
  # Can be nil if we had a kamikaze error
34
34
  @tracer.end_trace if @tracer
35
35
  res
36
- rescue Raygun::APM::FatalError => e
36
+ rescue Raygun::Apm::FatalError => e
37
37
  kamikaze_handler(e)
38
38
  end
39
39
 
@@ -61,7 +61,7 @@ module Raygun
61
61
  event[:status] = notification.payload[:status]
62
62
  # XXX constant milliseconds to microseconds
63
63
  event[:duration] = notification.duration * 1000
64
- event[:timestamp] = Time.now.to_f*1000000
64
+ event[:timestamp] = notification.time.to_f*1000000
65
65
  event[:pid] = Process.pid
66
66
  event[:tid] = @tracer.get_thread_id(Thread.current)
67
67
  @tracer.emit(event)
@@ -88,7 +88,7 @@ module Raygun
88
88
 
89
89
  # XXX constant milliseconds to microseconds
90
90
  event[:duration] = notification.duration * 1000
91
- event[:timestamp] = Time.now.to_f*1000000
91
+ event[:timestamp] = notification.time.to_f*1000000
92
92
  event[:pid] = Process.pid
93
93
  event[:tid] = @tracer.get_thread_id(Thread.current)
94
94
  @tracer.emit(event)
@@ -1,5 +1,5 @@
1
1
  module Raygun
2
2
  module Apm
3
- VERSION = "0.0.17"
3
+ VERSION = "0.0.18"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: raygun-apm
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.17
4
+ version: 0.0.18
5
5
  platform: x86-mingw32
6
6
  authors:
7
7
  - Erkki Eilonen
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2019-12-01 00:00:00.000000000 Z
11
+ date: 2019-12-06 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: debase-ruby_core_source