fluentd 0.12.14 → 0.12.15
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of fluentd might be problematic. Click here for more details.
- checksums.yaml +4 -4
- data/ChangeLog +9 -0
- data/fluentd.gemspec +1 -0
- data/lib/fluent/output.rb +5 -1
- data/lib/fluent/plugin/in_status.rb +1 -0
- data/lib/fluent/version.rb +1 -1
- metadata +4 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 4e290b6bd8327f7f9fd6a0de891b535de5dbfeb8
|
4
|
+
data.tar.gz: 65429f3882fdcc0bde69322bdc52ff1aaee29e28
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c99e6469d461655c2e43403a6ccb64eb72357853953b8140d1e5ff05a332ada1f3b4a21f74ffd218153cbe68445dc9cb2e0a3972d7a37f3ff9b2f22d26fdbcbb
|
7
|
+
data.tar.gz: f650ce569e09dcf28dc2113a573c88fd35e7f239028159c0f3971e397f32eca694f2ccd0c096084cb90345e0f39b3a4ccb0f48e22ef87a135d490fb7c2e7bc5d
|
data/ChangeLog
CHANGED
@@ -1,5 +1,14 @@
|
|
1
1
|
# v0.12
|
2
2
|
|
3
|
+
## Release 0.12.15 - 2015/07/29
|
4
|
+
|
5
|
+
### New features / Enhancement
|
6
|
+
|
7
|
+
* in_status: Warn deprecation message
|
8
|
+
https://github.com/fluent/fluentd/pull/635
|
9
|
+
* output: Modify TimeSlicedOutput#emit mechanizm to fit BufferedOutput#emit way
|
10
|
+
https://github.com/fluent/fluentd/pull/634
|
11
|
+
|
3
12
|
## Release 0.12.14 - 2015/07/17
|
4
13
|
|
5
14
|
### New features / Enhancement
|
data/fluentd.gemspec
CHANGED
data/lib/fluent/output.rb
CHANGED
@@ -539,6 +539,7 @@ module Fluent
|
|
539
539
|
|
540
540
|
def emit(tag, es, chain)
|
541
541
|
@emit_count += 1
|
542
|
+
formatted_data = {}
|
542
543
|
es.each {|time,record|
|
543
544
|
tc = time / @time_slice_cache_interval
|
544
545
|
if @before_tc == tc
|
@@ -548,7 +549,10 @@ module Fluent
|
|
548
549
|
key = @time_slicer.call(time)
|
549
550
|
@before_key = key
|
550
551
|
end
|
551
|
-
|
552
|
+
formatted_data[key] ||= ''
|
553
|
+
formatted_data[key] << format(tag, time, record)
|
554
|
+
}
|
555
|
+
formatted_data.each { |key, data|
|
552
556
|
if @buffer.emit(key, data, chain)
|
553
557
|
submit_flush
|
554
558
|
end
|
data/lib/fluent/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: fluentd
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.12.
|
4
|
+
version: 0.12.15
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Sadayuki Furuhashi
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2015-07-
|
11
|
+
date: 2015-07-29 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: msgpack
|
@@ -445,7 +445,8 @@ files:
|
|
445
445
|
- test/test_plugin_classes.rb
|
446
446
|
- test/test_root_agent.rb
|
447
447
|
homepage: http://fluentd.org/
|
448
|
-
licenses:
|
448
|
+
licenses:
|
449
|
+
- Apache-2.0
|
449
450
|
metadata: {}
|
450
451
|
post_install_message:
|
451
452
|
rdoc_options: []
|