fluent-plugin-detect-exceptions-with-error 0.0.1c → 0.0.1
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/fluent-plugin-detect-exceptions-with-error.gemspec +1 -1
- data/lib/fluent/plugin/exception_detector.rb +4 -3
- metadata +3 -6
- data/fluent-plugin-detect-exceptions-with-error-0.0.1.gem +0 -0
- data/fluent-plugin-detect-exceptions-with-error-0.0.1a.gem +0 -0
- data/fluent-plugin-detect-exceptions-with-error-0.0.1b.gem +0 -0
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: bdad2bb8cb784d7f9b0505ad0b21e481cc75cdcf
|
|
4
|
+
data.tar.gz: 4489bd8269ad9cbe898894a94bfd15113a4255a9
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 994f976bf4295c7859aae7ece3948bf615c5a03563a2a5c5f399d09a05bd60155005ebe39050e5479a1ea27ae6f01ea24afda9449faf276d50e77adf23471c2d
|
|
7
|
+
data.tar.gz: 8f53ddf7186c68e8b45a23996cd60069533b1676f654af891b311225fba64594b69e23a18953155958383127786263eaa8b319108869ab11253d35632b8e6d36
|
|
@@ -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.1'
|
|
10
10
|
gem.authors = ['Vincent Vega']
|
|
11
11
|
gem.required_ruby_version = Gem::Requirement.new('>= 2.0')
|
|
12
12
|
|
|
@@ -50,11 +50,12 @@ module Fluent
|
|
|
50
50
|
end
|
|
51
51
|
|
|
52
52
|
JAVA_RULES = [
|
|
53
|
-
rule(:start_state,
|
|
54
|
-
|
|
53
|
+
rule(:start_state,
|
|
54
|
+
/(?:Exception|Error|Throwable|V8 errors stack trace)[:\r\n]/,
|
|
55
|
+
:java),
|
|
55
56
|
rule(:java, /^[\t ]+(?:eval )?at /, :java),
|
|
56
57
|
rule(:java, /^[\t ]*(?:Caused by|Suppressed):/, :java),
|
|
57
|
-
rule(:java, /^[\t ]*... \d+\
|
|
58
|
+
rule(:java, /^[\t ]*... \d+\ more/, :java)
|
|
58
59
|
].freeze
|
|
59
60
|
|
|
60
61
|
PYTHON_RULES = [
|
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.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Vincent Vega
|
|
@@ -74,9 +74,6 @@ extensions: []
|
|
|
74
74
|
extra_rdoc_files: []
|
|
75
75
|
files:
|
|
76
76
|
- CONTRIBUTING
|
|
77
|
-
- fluent-plugin-detect-exceptions-with-error-0.0.1.gem
|
|
78
|
-
- fluent-plugin-detect-exceptions-with-error-0.0.1a.gem
|
|
79
|
-
- fluent-plugin-detect-exceptions-with-error-0.0.1b.gem
|
|
80
77
|
- fluent-plugin-detect-exceptions-with-error.gemspec
|
|
81
78
|
- Gemfile
|
|
82
79
|
- lib/fluent/plugin/exception_detector.rb
|
|
@@ -103,9 +100,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
103
100
|
version: '2.0'
|
|
104
101
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
105
102
|
requirements:
|
|
106
|
-
- - '
|
|
103
|
+
- - '>='
|
|
107
104
|
- !ruby/object:Gem::Version
|
|
108
|
-
version:
|
|
105
|
+
version: '0'
|
|
109
106
|
requirements: []
|
|
110
107
|
rubyforge_project:
|
|
111
108
|
rubygems_version: 2.0.14.1
|
|
Binary file
|
|
Binary file
|
|
Binary file
|