fluent-plugin-multiline-extended 1.0.2 → 1.0.3

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.
data.tar.gz.sig CHANGED
Binary file
data/README.md CHANGED
@@ -74,13 +74,13 @@ current node details:
74
74
  - cookie hash: XXXXXXXXXXXXXXXXXXXXXX==
75
75
  ```
76
76
 
77
- There is no way to configure the multiline plugin format_firstline so that it will treat the following RabbitMQ as a single log event without throwing parsing errors during normal operattion: specifying a blank line will not work due to newlines embedded in records and Specifying "^=[A-Z]" will not work (at least, not without continually generating timeout errors, since this matches the _second_ line of the event record, not the first). The ability to specify the multiline regex "\n=[A-Z]" is actually required to parse these logs without generating parsing errors during normal operation.
77
+ There is no way to configure the multiline plugin format_firstline so that it will treat the following RabbitMQ as a single log event without throwing parsing errors during normal operation: specifying a blank line will not work due to newlines embedded in records and Specifying "^=[A-Z]" will not work (at least, not without continually generating parsing errors due to the unexpected blank lines since this matches the _second_ line of the event record, not the first). The ability to specify the multiline regex "\n=[A-Z]" is actually required to parse these logs without generating parsing errors during normal operation.
78
78
 
79
79
  ## Installation
80
80
 
81
81
  Use ruby gem as :
82
82
 
83
- gem 'fluent-plugin-multiline-extended'
83
+ gem install fluent-plugin-multiline-extended
84
84
 
85
85
  Or, if you're using td-client, you can call td-client's gem command
86
86
 
@@ -4,7 +4,7 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
4
 
5
5
  Gem::Specification.new do |gem|
6
6
  gem.name = 'fluent-plugin-multiline-extended'
7
- gem.version = '1.0.2'
7
+ gem.version = ENV.key?('RUBYGEM_VERSION') ? ENV['RUBYGEM_VERSION'] : '1.0.3'
8
8
  gem.authors = ['Alex Yamauchi']
9
9
  gem.email = ['alex.yamauchi@hotschedules.com']
10
10
  gem.licenses = [ 'Apache-2.0']
@@ -20,7 +20,7 @@ Gem::Specification.new do |gem|
20
20
 
21
21
  gem.add_runtime_dependency 'fluentd'
22
22
 
23
- gem.signing_key = File.expand_path('~/certs/oss@hotschedules.com.key') if $0 =~ /gem\z/
23
+ gem.signing_key = File.expand_path( ENV.key?('RUBYGEM_SIGNING_KEY') ? ENV['RUBYGEM_SIGNING_KEY'] : '~/certs/oss@hotschedules.com.key' ) if $0 =~ /\bgem[\.0-9]*\z/
24
24
  gem.cert_chain = %w[certs/oss@hotschedules.com.cert]
25
25
 
26
26
  end
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fluent-plugin-multiline-extended
3
3
  version: !ruby/object:Gem::Version
4
- hash: 19
4
+ hash: 17
5
5
  prerelease:
6
6
  segments:
7
7
  - 1
8
8
  - 0
9
- - 2
10
- version: 1.0.2
9
+ - 3
10
+ version: 1.0.3
11
11
  platform: ruby
12
12
  authors:
13
13
  - Alex Yamauchi
@@ -41,7 +41,7 @@ cert_chain:
41
41
  2Zk648Ep9HVPKmwoVuB75+xEQw==
42
42
  -----END CERTIFICATE-----
43
43
 
44
- date: 2017-03-20 00:00:00 Z
44
+ date: 2017-06-21 00:00:00 Z
45
45
  dependencies:
46
46
  - !ruby/object:Gem::Dependency
47
47
  name: fluentd
metadata.gz.sig CHANGED
Binary file