fluent-plugin-detect-exceptions-with-error 0.0.2a → 0.0.2b

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: 709478f4d3cf9404cd6f99da3b8cf8e1f9b8cd35
4
- data.tar.gz: fdf9499a67bb8fa7f7922a957800fe7fa58e410d
3
+ metadata.gz: f694ed682806ec970af3fbeab92ce5c71c4b913c
4
+ data.tar.gz: 39e93e3baa55f16272de1743912592fd33777f11
5
5
  SHA512:
6
- metadata.gz: ce8c8665fb2e0803feb588f63df1c8ff045589a9f6fff75edb82d70b21058cdccbfd69201e6ef2c51d4649879c3e674bd26a018abf052be0f911ac6dc44887b6
7
- data.tar.gz: 90894b33d49e72df19f9b4e93c5f1c68da857f76087e92e9bac1697cd6a0d1fd6bf350dd145febd67276ff3cc60d62784ebd08435a6e01d1f599995a49b9816e
6
+ metadata.gz: cc4e200b371abe0b54b9d49403352bc3e2e6ced1e61c8102d1636d9bba459e19867ac885c6083a8557c1d8b8c86825cd3bd23d515d07fd6d6e1edef493299adc
7
+ data.tar.gz: b7399952d1832a5fa1a99d76cb70fda4f16ed400bcac97b75c14991d2468a4a163d81f0d72f8ea35c9a17b7d1c4c7153f6324285934e91915ad798c5e1557e3c
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- fluent-plugin-detect-exceptions-with-error (0.0.2)
4
+ fluent-plugin-detect-exceptions-with-error (0.0.2b)
5
5
  fluentd (~> 0.10)
6
6
 
7
7
  GEM
data/Rakefile CHANGED
@@ -26,7 +26,7 @@ end
26
26
  # Building the gem will use the local file mode, so ensure it's world-readable.
27
27
  desc 'Check plugin file permissions'
28
28
  task :check_perms do
29
- plugin = 'lib/fluent/plugin/out_detect_exceptions.rb'
29
+ plugin = 'lib/fluent/plugin/out_detect_exceptions_with_error.rb'
30
30
  mode = File.stat(plugin).mode & 0o777
31
31
  raise "Unexpected mode #{mode.to_s(8)} for #{plugin}" unless
32
32
  mode & 0o444 == 0o444
@@ -6,7 +6,7 @@ eos
6
6
  gem.summary = \
7
7
  'fluentd output plugin for combining error messages and stack traces as multi-line JSON logs'
8
8
  gem.license = 'Apache-2.0'
9
- gem.version = '0.0.2a'
9
+ gem.version = '0.0.2b'
10
10
  gem.authors = ['Paul Boocock']
11
11
  gem.required_ruby_version = Gem::Requirement.new('>= 2.0')
12
12
 
@@ -37,7 +37,7 @@ module Fluent
37
37
  desc 'Separate log streams by this field in the input JSON data.'
38
38
  config_param :stream, :string, default: ''
39
39
 
40
- Fluent::Plugin.register_output('detect_exceptions', self)
40
+ Fluent::Plugin.register_output('detect_exceptions_with_error', self)
41
41
 
42
42
  def configure(conf)
43
43
  super
data/test/helper.rb CHANGED
@@ -43,4 +43,4 @@ unless ENV.key?('VERBOSE')
43
43
  $log = nulllogger # rubocop:disable Style/GlobalVars
44
44
  end
45
45
 
46
- require 'fluent/plugin/out_detect_exceptions'
46
+ require 'fluent/plugin/out_detect_exceptions_with_error'
@@ -13,7 +13,7 @@
13
13
  # limitations under the License.
14
14
 
15
15
  require_relative '../helper'
16
- require 'fluent/plugin/out_detect_exceptions'
16
+ require 'fluent/plugin/out_detect_exceptions_with_error'
17
17
 
18
18
  class DetectExceptionsOutputTest < Test::Unit::TestCase
19
19
  def setup
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fluent-plugin-detect-exceptions-with-error
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.2a
4
+ version: 0.0.2b
5
5
  platform: ruby
6
6
  authors:
7
7
  - Paul Boocock
@@ -75,11 +75,12 @@ extra_rdoc_files: []
75
75
  files:
76
76
  - CONTRIBUTING
77
77
  - fluent-plugin-detect-exceptions-with-error-0.0.2.gem
78
+ - fluent-plugin-detect-exceptions-with-error-0.0.2a.gem
78
79
  - fluent-plugin-detect-exceptions-with-error.gemspec
79
80
  - Gemfile
80
81
  - Gemfile.lock
81
82
  - lib/fluent/plugin/exception_detector.rb
82
- - lib/fluent/plugin/out_detect_exceptions.rb
83
+ - lib/fluent/plugin/out_detect_exceptions_with_error.rb
83
84
  - LICENSE
84
85
  - Rakefile
85
86
  - README.rdoc