fluent-plugin-detect-exceptions-with-error 0.0.2 → 0.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.
- checksums.yaml +4 -4
- data/Gemfile.lock +1 -1
- data/Rakefile +1 -1
- data/fluent-plugin-detect-exceptions-with-error-0.0.2.gem +0 -0
- data/fluent-plugin-detect-exceptions-with-error-0.0.2a.gem +0 -0
- data/fluent-plugin-detect-exceptions-with-error-0.0.2b.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} +0 -0
- data/test/helper.rb +1 -1
- data/test/plugin/test_out_detect_exceptions.rb +1 -1
- metadata +6 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: f6eef8a54dee0039897ddbb33232c97f12930406
|
|
4
|
+
data.tar.gz: 247f1b217698f7b05749d001157017842f8fdd26
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 12dee9deef7951d2f3c7a278f21be47fc792d97eb9bd3a5d9b772a3d3dd9eeb856a053366c0b2c976f72a1a5bf7447247a2a12e322ac69e3f7d62e9fae8bbd9a
|
|
7
|
+
data.tar.gz: 439aefe2b3566aae146d75fd476375b150f343064f2971342cab9fa59bedb60c328181bdefea8c6322f784768e974b10c18ac225c37d856fe0e533a827c964c4
|
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
|
|
Binary file
|
|
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.3'
|
|
10
10
|
gem.authors = ['Paul Boocock']
|
|
11
11
|
gem.required_ruby_version = Gem::Requirement.new('>= 2.0')
|
|
12
12
|
|
|
File without changes
|
data/test/helper.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
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.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Paul Boocock
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2017-03-
|
|
11
|
+
date: 2017-03-27 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: fluentd
|
|
@@ -74,11 +74,14 @@ extensions: []
|
|
|
74
74
|
extra_rdoc_files: []
|
|
75
75
|
files:
|
|
76
76
|
- CONTRIBUTING
|
|
77
|
+
- fluent-plugin-detect-exceptions-with-error-0.0.2.gem
|
|
78
|
+
- fluent-plugin-detect-exceptions-with-error-0.0.2a.gem
|
|
79
|
+
- fluent-plugin-detect-exceptions-with-error-0.0.2b.gem
|
|
77
80
|
- fluent-plugin-detect-exceptions-with-error.gemspec
|
|
78
81
|
- Gemfile
|
|
79
82
|
- Gemfile.lock
|
|
80
83
|
- lib/fluent/plugin/exception_detector.rb
|
|
81
|
-
- lib/fluent/plugin/
|
|
84
|
+
- lib/fluent/plugin/out_detect_exceptions_with_error.rb
|
|
82
85
|
- LICENSE
|
|
83
86
|
- Rakefile
|
|
84
87
|
- README.rdoc
|