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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: ca3a80d093b1051c5b2bda3a5565419a041a5ca4
4
- data.tar.gz: 6ed4dc8a876080c1a0189bafddf2ab1de739601d
3
+ metadata.gz: 4e290b6bd8327f7f9fd6a0de891b535de5dbfeb8
4
+ data.tar.gz: 65429f3882fdcc0bde69322bdc52ff1aaee29e28
5
5
  SHA512:
6
- metadata.gz: be8eaf2c1dc61eff8aa6ddd358a2ae4e0b5dd3dd9c5c94e77ea4f6a183e561b65368af361289d73743f7d39cf48556a91adc73f154af6b5634c85b45d53b7e65
7
- data.tar.gz: db0f69056992f3ff4d2884aa483715fec20d8a3904816f5583c5ba37d2588f3152cda7a354e504c8c033eed365ac4e92b358b49d07b6327a9f5e403868db6f8b
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
@@ -15,6 +15,7 @@ Gem::Specification.new do |gem|
15
15
  gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
16
16
  gem.require_paths = ["lib"]
17
17
  gem.has_rdoc = false
18
+ gem.license = "Apache-2.0"
18
19
 
19
20
  gem.required_ruby_version = '>= 1.9.3'
20
21
 
@@ -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
- data = format(tag, time, record)
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
@@ -43,6 +43,7 @@ module Fluent
43
43
 
44
44
  def configure(conf)
45
45
  super
46
+ $log.warn "in_status plugin will be removed v0.14 or later. Use in_monitor_agent instead"
46
47
  end
47
48
 
48
49
  def start
@@ -16,6 +16,6 @@
16
16
 
17
17
  module Fluent
18
18
 
19
- VERSION = '0.12.14'
19
+ VERSION = '0.12.15'
20
20
 
21
21
  end
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.14
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-16 00:00:00.000000000 Z
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: []