fluent-plugin-cloudwatch-ingest 0.1.38 → 0.1.39

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
  SHA1:
3
- metadata.gz: 5f260e2f08a2cf0a309a43e176966ce597125841
4
- data.tar.gz: 4af6a75a1960cd45ef6d7a3c0eadd4b67ada29e9
3
+ metadata.gz: 380a5f9ba13c2263428a3b9801db7a5440f5d54c
4
+ data.tar.gz: 433869bbd535aea4ab0e72414c881e9c06f03ff9
5
5
  SHA512:
6
- metadata.gz: 2d47e72a3d722b12653a499d506e1fa80f63a3def9094005333c980146d73c1e5817ba8a51078d87675bc346793884c3c3c65f190e2ca0000832a493ee6fb798
7
- data.tar.gz: e912236d8d3129c48c59c132821337dda222c42847ec298f6a53176370bcc673e37d99d49e335f60e736abada99fc7ef59f095492c17923281d14c47a80379af
6
+ metadata.gz: 7056b3149369b87b9b32734d41d62ae779e3b039882d8e952cfef9c0707c54ace67314d9ff91f92dfd7b45cfacca907cc54f0974abe43faaf63c58c30a431fb7
7
+ data.tar.gz: 1eebe2dc97ab117233ebbd86834357bdab8f9109293edb380bfc91d4b8b0dc87c5f0a8b856eee4f795b6a3cf722caad2fcf0ce94cb50ef2a2a0828020975e024
@@ -2,7 +2,7 @@ module Fluent
2
2
  module Plugin
3
3
  module Cloudwatch
4
4
  module Ingest
5
- VERSION = '0.1.38'.freeze
5
+ VERSION = '0.1.39'.freeze
6
6
  end
7
7
  end
8
8
  end
@@ -21,7 +21,7 @@ module Fluent
21
21
  # We do String processing on the event time here to
22
22
  # avoid rounding errors introduced by floating point
23
23
  # arithmetic.
24
- event_s = event.timestamp.to_s[0..9]
24
+ event_s = event.timestamp.to_s[0..9].to_i
25
25
  event_ns = event.timestamp.to_s[10..-1].to_i * 1_000_000
26
26
 
27
27
  time = Fluent::EventTime.new(event_s, event_ns) if @event_time
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fluent-plugin-cloudwatch-ingest
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.38
4
+ version: 0.1.39
5
5
  platform: ruby
6
6
  authors:
7
7
  - Sam Pointer