fluent-plugin-detect-exceptions-xiniaoyun 0.0.2 → 0.0.11

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 67783b7c9d06f991adfedd7244368bf2c28300d012357062043e65cf43ccf24d
4
- data.tar.gz: fdd107cc14cc23711ef9582589eb895dc4cc0196e2e0c18f36dd173da391e00d
3
+ metadata.gz: 501530d6ead93ad7a18dd3c9fba179a132db7c1200ee6900737134f4c4200afd
4
+ data.tar.gz: b25492b5c10026c6567b21052e6dcb1dd31cb401726599f8b0dd125f68d08b31
5
5
  SHA512:
6
- metadata.gz: 4fbd3b2611515e67a0a0ef1ce4baddddfdf829b107cc1af59f45ca410f07a43ebfc7ed9999bbfd1a2480e29574eebeef4ab46466a69ad3997954d5f637fc9fc1
7
- data.tar.gz: 40e55ff0f11157bd5540b56a63e5b5c870854cc9437c0e700653c7b03e060b1ddb1f931c940c64baa19c9bd2de9213f7f1cc3ffb2672f0b7adf5bcfb9ae7a0cf
6
+ metadata.gz: e675bea12c25a79b0ec66dd1af702fb7beade1e4cd307e05da34c1f5c01e8a8df7bec5c9c4491b42c6c89d40cbb61e2d73fc58404821726cff8821a95b94d635
7
+ data.tar.gz: 11cc5d204e575cc5ad7aa3e6db7815ec4f624f662c3f3158904fe7935f34e9e8aa7b12ed0e154f5f40e6d8493b2c89d36e717fd19a172aa1dff9cd9831d4a34b
@@ -95,9 +95,6 @@ The plugin supports the following parameters:
95
95
  This parameter is only applicable to structured (JSON) log streams.
96
96
  Default: ''.
97
97
 
98
- [join_separator] String used when joining multiple lines of the stack trace.
99
- Default: ''.
100
-
101
98
  Example configuration:
102
99
 
103
100
  <match **>
@@ -9,11 +9,11 @@ eos
9
9
  gem.summary = \
10
10
  'fluentd output plugin for combining stack traces as multi-line JSON logs'
11
11
  gem.homepage = \
12
- 'https://github.com/sunhao-java/fluent-plugin-detect-exceptions-xiniaoyun'
12
+ 'https://github.com/GoogleCloudPlatform/fluent-plugin-detect-exceptions'
13
13
  gem.license = 'Apache-2.0'
14
- gem.version = '0.0.2'
15
- gem.authors = ['SunHao']
16
- gem.email = ['sunhao.java@gmail.com']
14
+ gem.version = '0.0.11'
15
+ gem.authors = ['Stackdriver Agents']
16
+ gem.email = ['stackdriver-agents@google.com']
17
17
  gem.required_ruby_version = Gem::Requirement.new('>= 2.0')
18
18
 
19
19
  gem.files = Dir['**/*'].keep_if { |file| File.file?(file) }
@@ -765,17 +765,4 @@ END
765
765
  # Check that the trace is flushed after the first part.
766
766
  assert_equal([JAVA_EXC_PART1] + JAVA_EXC_PART2.lines, out)
767
767
  end
768
-
769
- def test_join_separator
770
- # Custom join separator is used to join accumulated output
771
- join_separator = ';'
772
- out = []
773
- buffer = Fluent::TraceAccumulator.new(nil,
774
- [:all],
775
- join_separator: join_separator) do |_, m|
776
- out << m
777
- end
778
- feed_lines(buffer, JAVA_EXC)
779
- assert_equal(JAVA_EXC.lines.length - 1, out[0].count(join_separator))
780
- end
781
768
  end
metadata CHANGED
@@ -1,10 +1,10 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fluent-plugin-detect-exceptions-xiniaoyun
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.2
4
+ version: 0.0.11
5
5
  platform: ruby
6
6
  authors:
7
- - SunHao
7
+ - Stackdriver Agents
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
@@ -86,25 +86,24 @@ description: |2
86
86
  same stack trace into one multi-line message.
87
87
  This is an official Google Ruby gem.
88
88
  email:
89
- - sunhao.java@gmail.com
89
+ - stackdriver-agents@google.com
90
90
  executables: []
91
91
  extensions: []
92
92
  extra_rdoc_files: []
93
93
  files:
94
94
  - CONTRIBUTING
95
95
  - Gemfile
96
- - Gemfile.lock
97
96
  - LICENSE
98
97
  - README.rdoc
99
98
  - Rakefile
100
- - fluent-plugin-detect-exceptions-xiniaoyun.gemspec
99
+ - fluent-plugin-detect-exceptions.gemspec
101
100
  - lib/fluent/plugin/exception_detector.rb
102
101
  - lib/fluent/plugin/out_detect_exceptions.rb
103
102
  - test/helper.rb
104
103
  - test/plugin/bench_exception_detector.rb
105
104
  - test/plugin/test_exception_detector.rb
106
105
  - test/plugin/test_out_detect_exceptions.rb
107
- homepage: https://github.com/sunhao-java/fluent-plugin-detect-exceptions-xiniaoyun
106
+ homepage: https://github.com/GoogleCloudPlatform/fluent-plugin-detect-exceptions
108
107
  licenses:
109
108
  - Apache-2.0
110
109
  metadata: {}
@@ -123,7 +122,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
123
122
  - !ruby/object:Gem::Version
124
123
  version: '0'
125
124
  requirements: []
126
- rubygems_version: 3.0.2
125
+ rubygems_version: 3.0.1
127
126
  signing_key:
128
127
  specification_version: 4
129
128
  summary: fluentd output plugin for combining stack traces as multi-line JSON logs
@@ -1,87 +0,0 @@
1
- PATH
2
- remote: .
3
- specs:
4
- fluent-plugin-detect-exceptions-xiniaoyun (0.0.2)
5
- fluentd (>= 0.10)
6
-
7
- GEM
8
- remote: https://rubygems.org/
9
- specs:
10
- ast (2.4.0)
11
- cool.io (1.5.3-x86-mingw32)
12
- dig_rb (1.0.1)
13
- ffi (1.10.0-x86-mingw32)
14
- ffi-win32-extensions (1.0.3)
15
- ffi
16
- flexmock (2.3.6)
17
- fluentd (1.3.3-x86-mingw32)
18
- cool.io (>= 1.4.5, < 2.0.0)
19
- dig_rb (~> 1.0.0)
20
- http_parser.rb (>= 0.5.1, < 0.7.0)
21
- msgpack (>= 0.7.0, < 2.0.0)
22
- serverengine (>= 2.0.4, < 3.0.0)
23
- sigdump (~> 0.2.2)
24
- strptime (>= 0.2.2, < 1.0.0)
25
- tzinfo (~> 1.0)
26
- tzinfo-data (~> 1.0)
27
- win32-event (~> 0.6.1)
28
- win32-ipc (~> 0.6.1)
29
- win32-service (~> 0.8.3)
30
- windows-pr (~> 1.2.5)
31
- yajl-ruby (~> 1.0)
32
- http_parser.rb (0.6.0)
33
- msgpack (1.2.6-x86-mingw32)
34
- parser (2.6.0.0)
35
- ast (~> 2.4.0)
36
- power_assert (1.1.3)
37
- powerpack (0.1.2)
38
- rainbow (2.2.2)
39
- rake
40
- rake (10.5.0)
41
- rubocop (0.42.0)
42
- parser (>= 2.3.1.1, < 3.0)
43
- powerpack (~> 0.1)
44
- rainbow (>= 1.99.1, < 3.0)
45
- ruby-progressbar (~> 1.7)
46
- unicode-display_width (~> 1.0, >= 1.0.1)
47
- ruby-progressbar (1.10.0)
48
- serverengine (2.1.0-x86-mingw32)
49
- sigdump (~> 0.2.2)
50
- windows-pr (~> 1.2.5)
51
- sigdump (0.2.4)
52
- strptime (0.2.3)
53
- test-unit (3.3.0)
54
- power_assert
55
- thread_safe (0.3.6)
56
- tzinfo (1.2.5)
57
- thread_safe (~> 0.1)
58
- tzinfo-data (1.2018.9)
59
- tzinfo (>= 1.0.0)
60
- unicode-display_width (1.4.1)
61
- win32-api (1.8.0-universal-mingw32)
62
- win32-event (0.6.3)
63
- win32-ipc (>= 0.6.0)
64
- win32-ipc (0.6.6)
65
- ffi
66
- win32-service (0.8.10)
67
- ffi
68
- ffi-win32-extensions
69
- windows-api (0.4.4)
70
- win32-api (>= 1.4.5)
71
- windows-pr (1.2.6)
72
- win32-api (>= 1.4.5)
73
- windows-api (>= 0.4.0)
74
- yajl-ruby (1.4.1)
75
-
76
- PLATFORMS
77
- x86-mingw32
78
-
79
- DEPENDENCIES
80
- flexmock (~> 2.0)
81
- fluent-plugin-detect-exceptions-xiniaoyun!
82
- rake (~> 10.3)
83
- rubocop (= 0.42.0)
84
- test-unit (~> 3.0)
85
-
86
- BUNDLED WITH
87
- 2.0.1