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 +4 -4
- data/Gemfile.lock +1 -1
- data/Rakefile +1 -1
- data/fluent-plugin-detect-exceptions-with-error-0.0.2a.gem +0 -0
- data/fluent-plugin-detect-exceptions-with-error.gemspec +1 -1
- data/lib/fluent/plugin/{out_detect_exceptions.rb → out_detect_exceptions_with_error.rb} +1 -1
- data/test/helper.rb +1 -1
- data/test/plugin/test_out_detect_exceptions.rb +1 -1
- metadata +3 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: f694ed682806ec970af3fbeab92ce5c71c4b913c
|
|
4
|
+
data.tar.gz: 39e93e3baa55f16272de1743912592fd33777f11
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: cc4e200b371abe0b54b9d49403352bc3e2e6ced1e61c8102d1636d9bba459e19867ac885c6083a8557c1d8b8c86825cd3bd23d515d07fd6d6e1edef493299adc
|
|
7
|
+
data.tar.gz: b7399952d1832a5fa1a99d76cb70fda4f16ed400bcac97b75c14991d2468a4a163d81f0d72f8ea35c9a17b7d1c4c7153f6324285934e91915ad798c5e1557e3c
|
data/Gemfile.lock
CHANGED
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/
|
|
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
|
|
Binary file
|
|
@@ -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.
|
|
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('
|
|
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
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.
|
|
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/
|
|
83
|
+
- lib/fluent/plugin/out_detect_exceptions_with_error.rb
|
|
83
84
|
- LICENSE
|
|
84
85
|
- Rakefile
|
|
85
86
|
- README.rdoc
|