fluent-plugin-parser-cri-uino 0.1.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 ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: 28ad0f5c62c16c636880a96797d6d6e4b6932c799497141c37fd68db543b140d
4
+ data.tar.gz: 52ca47fcb32211d5da99b36e4912c52f155260056cb60184cafa11afd67baebb
5
+ SHA512:
6
+ metadata.gz: a20756c649d0d413822bbc34fe527e2b9e078ae4d269a8f15df9f160a74d56ae81c4f8ea33d38e0957e244679f2d81b215ed678e071e160fb00914720b2bbf9b
7
+ data.tar.gz: d8d04e316c68dfd0f38e41cc99159caa56e991399bc707c4667b00a031fb03b57664f8cb6669372313c6df1421c6d8c1b7c577e2ade20f20a03857b387025905
@@ -0,0 +1,28 @@
1
+ name: Test on Ubuntu
2
+ on:
3
+ push:
4
+ branches: [master]
5
+ pull_request:
6
+ branches: [master]
7
+ jobs:
8
+ build:
9
+ runs-on: ${{ matrix.os }}
10
+ strategy:
11
+ fail-fast: false
12
+ matrix:
13
+ ruby: [ '3.1', '3.0', '2.7', '2.6' ]
14
+ os:
15
+ - ubuntu-latest
16
+ name: Ruby ${{ matrix.ruby }} unit testing on ${{ matrix.os }}
17
+ steps:
18
+ - uses: actions/checkout@v2
19
+ - uses: ruby/setup-ruby@v1
20
+ with:
21
+ ruby-version: ${{ matrix.ruby }}
22
+ - name: unit testing
23
+ env:
24
+ CI: true
25
+ run: |
26
+ gem install bundler rake
27
+ bundle install --jobs 4 --retry 3
28
+ bundle exec rake test
data/.gitignore ADDED
@@ -0,0 +1,56 @@
1
+ *.gem
2
+ *.rbc
3
+ /.config
4
+ /coverage/
5
+ /InstalledFiles
6
+ /pkg/
7
+ /spec/reports/
8
+ /spec/examples.txt
9
+ /test/tmp/
10
+ /test/version_tmp/
11
+ /tmp/
12
+
13
+ # Used by dotenv library to load environment variables.
14
+ # .env
15
+
16
+ # Ignore Byebug command history file.
17
+ .byebug_history
18
+
19
+ ## Specific to RubyMotion:
20
+ .dat*
21
+ .repl_history
22
+ build/
23
+ *.bridgesupport
24
+ build-iPhoneOS/
25
+ build-iPhoneSimulator/
26
+
27
+ ## Specific to RubyMotion (use of CocoaPods):
28
+ #
29
+ # We recommend against adding the Pods directory to your .gitignore. However
30
+ # you should judge for yourself, the pros and cons are mentioned at:
31
+ # https://guides.cocoapods.org/using/using-cocoapods.html#should-i-check-the-pods-directory-into-source-control
32
+ #
33
+ # vendor/Pods/
34
+
35
+ ## Documentation cache and generated files:
36
+ /.yardoc/
37
+ /_yardoc/
38
+ /doc/
39
+ /rdoc/
40
+
41
+ ## Environment normalization:
42
+ /.bundle/
43
+ /vendor/bundle
44
+ /lib/bundler/man/
45
+
46
+ # for a library or gem, you might want to ignore these files since the code is
47
+ # intended to run in multiple environments; otherwise, check them in:
48
+ # Gemfile.lock
49
+ # .ruby-version
50
+ # .ruby-gemset
51
+
52
+ # unless supporting rvm < 1.11.0 or doing something fancy, ignore this:
53
+ .rvmrc
54
+
55
+ # Used by RuboCop. Remote config files pulled in from inherit_from directive.
56
+ # .rubocop-https?--*
data/Gemfile ADDED
@@ -0,0 +1,3 @@
1
+ source "https://rubygems.org"
2
+
3
+ gemspec
data/LICENSE ADDED
@@ -0,0 +1,201 @@
1
+ Apache License
2
+ Version 2.0, January 2004
3
+ http://www.apache.org/licenses/
4
+
5
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
6
+
7
+ 1. Definitions.
8
+
9
+ "License" shall mean the terms and conditions for use, reproduction,
10
+ and distribution as defined by Sections 1 through 9 of this document.
11
+
12
+ "Licensor" shall mean the copyright owner or entity authorized by
13
+ the copyright owner that is granting the License.
14
+
15
+ "Legal Entity" shall mean the union of the acting entity and all
16
+ other entities that control, are controlled by, or are under common
17
+ control with that entity. For the purposes of this definition,
18
+ "control" means (i) the power, direct or indirect, to cause the
19
+ direction or management of such entity, whether by contract or
20
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
21
+ outstanding shares, or (iii) beneficial ownership of such entity.
22
+
23
+ "You" (or "Your") shall mean an individual or Legal Entity
24
+ exercising permissions granted by this License.
25
+
26
+ "Source" form shall mean the preferred form for making modifications,
27
+ including but not limited to software source code, documentation
28
+ source, and configuration files.
29
+
30
+ "Object" form shall mean any form resulting from mechanical
31
+ transformation or translation of a Source form, including but
32
+ not limited to compiled object code, generated documentation,
33
+ and conversions to other media types.
34
+
35
+ "Work" shall mean the work of authorship, whether in Source or
36
+ Object form, made available under the License, as indicated by a
37
+ copyright notice that is included in or attached to the work
38
+ (an example is provided in the Appendix below).
39
+
40
+ "Derivative Works" shall mean any work, whether in Source or Object
41
+ form, that is based on (or derived from) the Work and for which the
42
+ editorial revisions, annotations, elaborations, or other modifications
43
+ represent, as a whole, an original work of authorship. For the purposes
44
+ of this License, Derivative Works shall not include works that remain
45
+ separable from, or merely link (or bind by name) to the interfaces of,
46
+ the Work and Derivative Works thereof.
47
+
48
+ "Contribution" shall mean any work of authorship, including
49
+ the original version of the Work and any modifications or additions
50
+ to that Work or Derivative Works thereof, that is intentionally
51
+ submitted to Licensor for inclusion in the Work by the copyright owner
52
+ or by an individual or Legal Entity authorized to submit on behalf of
53
+ the copyright owner. For the purposes of this definition, "submitted"
54
+ means any form of electronic, verbal, or written communication sent
55
+ to the Licensor or its representatives, including but not limited to
56
+ communication on electronic mailing lists, source code control systems,
57
+ and issue tracking systems that are managed by, or on behalf of, the
58
+ Licensor for the purpose of discussing and improving the Work, but
59
+ excluding communication that is conspicuously marked or otherwise
60
+ designated in writing by the copyright owner as "Not a Contribution."
61
+
62
+ "Contributor" shall mean Licensor and any individual or Legal Entity
63
+ on behalf of whom a Contribution has been received by Licensor and
64
+ subsequently incorporated within the Work.
65
+
66
+ 2. Grant of Copyright License. Subject to the terms and conditions of
67
+ this License, each Contributor hereby grants to You a perpetual,
68
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
69
+ copyright license to reproduce, prepare Derivative Works of,
70
+ publicly display, publicly perform, sublicense, and distribute the
71
+ Work and such Derivative Works in Source or Object form.
72
+
73
+ 3. Grant of Patent License. Subject to the terms and conditions of
74
+ this License, each Contributor hereby grants to You a perpetual,
75
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
76
+ (except as stated in this section) patent license to make, have made,
77
+ use, offer to sell, sell, import, and otherwise transfer the Work,
78
+ where such license applies only to those patent claims licensable
79
+ by such Contributor that are necessarily infringed by their
80
+ Contribution(s) alone or by combination of their Contribution(s)
81
+ with the Work to which such Contribution(s) was submitted. If You
82
+ institute patent litigation against any entity (including a
83
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
84
+ or a Contribution incorporated within the Work constitutes direct
85
+ or contributory patent infringement, then any patent licenses
86
+ granted to You under this License for that Work shall terminate
87
+ as of the date such litigation is filed.
88
+
89
+ 4. Redistribution. You may reproduce and distribute copies of the
90
+ Work or Derivative Works thereof in any medium, with or without
91
+ modifications, and in Source or Object form, provided that You
92
+ meet the following conditions:
93
+
94
+ (a) You must give any other recipients of the Work or
95
+ Derivative Works a copy of this License; and
96
+
97
+ (b) You must cause any modified files to carry prominent notices
98
+ stating that You changed the files; and
99
+
100
+ (c) You must retain, in the Source form of any Derivative Works
101
+ that You distribute, all copyright, patent, trademark, and
102
+ attribution notices from the Source form of the Work,
103
+ excluding those notices that do not pertain to any part of
104
+ the Derivative Works; and
105
+
106
+ (d) If the Work includes a "NOTICE" text file as part of its
107
+ distribution, then any Derivative Works that You distribute must
108
+ include a readable copy of the attribution notices contained
109
+ within such NOTICE file, excluding those notices that do not
110
+ pertain to any part of the Derivative Works, in at least one
111
+ of the following places: within a NOTICE text file distributed
112
+ as part of the Derivative Works; within the Source form or
113
+ documentation, if provided along with the Derivative Works; or,
114
+ within a display generated by the Derivative Works, if and
115
+ wherever such third-party notices normally appear. The contents
116
+ of the NOTICE file are for informational purposes only and
117
+ do not modify the License. You may add Your own attribution
118
+ notices within Derivative Works that You distribute, alongside
119
+ or as an addendum to the NOTICE text from the Work, provided
120
+ that such additional attribution notices cannot be construed
121
+ as modifying the License.
122
+
123
+ You may add Your own copyright statement to Your modifications and
124
+ may provide additional or different license terms and conditions
125
+ for use, reproduction, or distribution of Your modifications, or
126
+ for any such Derivative Works as a whole, provided Your use,
127
+ reproduction, and distribution of the Work otherwise complies with
128
+ the conditions stated in this License.
129
+
130
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
131
+ any Contribution intentionally submitted for inclusion in the Work
132
+ by You to the Licensor shall be under the terms and conditions of
133
+ this License, without any additional terms or conditions.
134
+ Notwithstanding the above, nothing herein shall supersede or modify
135
+ the terms of any separate license agreement you may have executed
136
+ with Licensor regarding such Contributions.
137
+
138
+ 6. Trademarks. This License does not grant permission to use the trade
139
+ names, trademarks, service marks, or product names of the Licensor,
140
+ except as required for reasonable and customary use in describing the
141
+ origin of the Work and reproducing the content of the NOTICE file.
142
+
143
+ 7. Disclaimer of Warranty. Unless required by applicable law or
144
+ agreed to in writing, Licensor provides the Work (and each
145
+ Contributor provides its Contributions) on an "AS IS" BASIS,
146
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
147
+ implied, including, without limitation, any warranties or conditions
148
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
149
+ PARTICULAR PURPOSE. You are solely responsible for determining the
150
+ appropriateness of using or redistributing the Work and assume any
151
+ risks associated with Your exercise of permissions under this License.
152
+
153
+ 8. Limitation of Liability. In no event and under no legal theory,
154
+ whether in tort (including negligence), contract, or otherwise,
155
+ unless required by applicable law (such as deliberate and grossly
156
+ negligent acts) or agreed to in writing, shall any Contributor be
157
+ liable to You for damages, including any direct, indirect, special,
158
+ incidental, or consequential damages of any character arising as a
159
+ result of this License or out of the use or inability to use the
160
+ Work (including but not limited to damages for loss of goodwill,
161
+ work stoppage, computer failure or malfunction, or any and all
162
+ other commercial damages or losses), even if such Contributor
163
+ has been advised of the possibility of such damages.
164
+
165
+ 9. Accepting Warranty or Additional Liability. While redistributing
166
+ the Work or Derivative Works thereof, You may choose to offer,
167
+ and charge a fee for, acceptance of support, warranty, indemnity,
168
+ or other liability obligations and/or rights consistent with this
169
+ License. However, in accepting such obligations, You may act only
170
+ on Your own behalf and on Your sole responsibility, not on behalf
171
+ of any other Contributor, and only if You agree to indemnify,
172
+ defend, and hold each Contributor harmless for any liability
173
+ incurred by, or claims asserted against, such Contributor by reason
174
+ of your accepting any such warranty or additional liability.
175
+
176
+ END OF TERMS AND CONDITIONS
177
+
178
+ APPENDIX: How to apply the Apache License to your work.
179
+
180
+ To apply the Apache License to your work, attach the following
181
+ boilerplate notice, with the fields enclosed by brackets "[]"
182
+ replaced with your own identifying information. (Don't include
183
+ the brackets!) The text should be enclosed in the appropriate
184
+ comment syntax for the file format. We also recommend that a
185
+ file or class name and description of purpose be included on the
186
+ same "printed page" as the copyright notice for easier
187
+ identification within third-party archives.
188
+
189
+ Copyright [yyyy] [name of copyright owner]
190
+
191
+ Licensed under the Apache License, Version 2.0 (the "License");
192
+ you may not use this file except in compliance with the License.
193
+ You may obtain a copy of the License at
194
+
195
+ http://www.apache.org/licenses/LICENSE-2.0
196
+
197
+ Unless required by applicable law or agreed to in writing, software
198
+ distributed under the License is distributed on an "AS IS" BASIS,
199
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
200
+ See the License for the specific language governing permissions and
201
+ limitations under the License.
data/README.md ADDED
@@ -0,0 +1,126 @@
1
+ # fluent-plugin-parser-cri
2
+
3
+ [Fluentd](https://fluentd.org/) parser plugin to parse CRI logs.
4
+
5
+ CRI logs consist of `time`, `stream`, `logtag` and `message` parts like below:
6
+
7
+ ```
8
+ 2020-10-10T00:10:00.333333333Z stdout F Hello Fluentd
9
+
10
+ time: 2020-10-10T00:10:00.333333333Z
11
+ stream: stdout
12
+ logtag: F
13
+ message: Hello Fluentd
14
+ ```
15
+
16
+ ## Installation
17
+
18
+ ### RubyGems
19
+
20
+ ```
21
+ $ gem install fluent-plugin-parser-cri --no-document
22
+ ```
23
+
24
+ ## Configuration
25
+
26
+ * **merge_cri_fields** (bool) (optional): Put `stream`/`logtag` fields or not when `<parse>` section is specified. Default is `true`
27
+
28
+ ### \<parse\> section (optional)
29
+
30
+ Same as [parser plugin configuration](https://docs.fluentd.org/configuration/parse-section).
31
+
32
+ ```aconf
33
+ <parse>
34
+ @type cri
35
+ <parse>
36
+ @type json
37
+ </parse>
38
+ </parse>
39
+ ```
40
+
41
+ This nested `<parse>` is used for parsing `message` part.
42
+
43
+ ## Log and configuration example
44
+
45
+ ### Basic case
46
+
47
+ ```aconf
48
+ <parse>
49
+ @type cri
50
+ </parse>
51
+ ```
52
+
53
+ With this configuration, following CRI log
54
+
55
+ ```
56
+ 2020-10-10T00:10:00.333333333Z stdout F Hello Fluentd
57
+ ```
58
+
59
+ is parsed to
60
+
61
+ ```
62
+ time: 2020-10-10T00:10:00.333333333Z
63
+ record: {"stream":"stdout","logtag":"F","message":"Hello Fluentd","time':'2020-10-10T00:10:00.333333333Z"}
64
+ ```
65
+
66
+ ### Parse message part with parsers
67
+
68
+ By specifying `<parse>` section, you can parse `message` part with parser plugins.
69
+
70
+ ```aconf
71
+ <parse>
72
+ @type cri
73
+ <parse>
74
+ @type json
75
+ time_key time
76
+ time_format %Y-%m-%dT%H:%M:%S.%L%z
77
+ # keep_time_key true # if you want to keep "time" field, enable this parameter
78
+ </parse>
79
+ </parse>
80
+ ```
81
+
82
+ With this configuration, following CRI log
83
+
84
+ ```
85
+ 2020-10-10T00:10:00.333333333Z stdout F {"foo":"bar","num":100,"time":"2020-11-11T00:11:00.111111111Z"}
86
+ ```
87
+
88
+ is parsed to
89
+
90
+ ```
91
+ time: 2020-11-11T00:11:00.111111111Z
92
+ record: {"foo":"bar","num":100,"stream":"stdout","logtag":"F"}
93
+ ```
94
+
95
+ If you don't need `stream`/`logtag` fields, set `merge_cri_fields false` like below:
96
+
97
+ ```
98
+ <parse>
99
+ @type cri
100
+ merge_cri_fields false
101
+ <parse>
102
+ @type json
103
+ time_key time
104
+ time_format %Y-%m-%dT%H:%M:%S.%L%z
105
+ </parse>
106
+ </parse>
107
+ ```
108
+
109
+ ### Concatenate multiple `message` records into one
110
+
111
+ If you want to concatenate the following `message` records into one record,
112
+ use @type [concat](https://github.com/fluent-plugins-nursery/fluent-plugin-concat) filter plugin with `use_partial_cri_logtag` parameter.
113
+
114
+ ```
115
+ 2020-10-10 09:10:00.333333333 +0900 cri: {"stream":"stdout","logtag":"P","message":"This is first line","time":"2020-10-10T00:10:00.333333333Z"}
116
+ 2020-10-10 09:11:00.333333333 +0900 cri: {"stream":"stdout","logtag":"F","message":"This is last line","time":"2020-10-10T00:11:00.333333333Z"}
117
+ ```
118
+
119
+ See fluent-plugin-concat's [usage](https://github.com/fluent-plugins-nursery/fluent-plugin-concat#usage) in more details.
120
+
121
+
122
+ ## Copyright
123
+
124
+ * Copyright(c) 2020- Fluentd project
125
+ * License
126
+ * Apache License, Version 2.0
data/Rakefile ADDED
@@ -0,0 +1,13 @@
1
+ require "bundler"
2
+ Bundler::GemHelper.install_tasks
3
+
4
+ require "rake/testtask"
5
+
6
+ Rake::TestTask.new(:test) do |t|
7
+ t.libs.push("lib", "test")
8
+ t.test_files = FileList["test/**/test_*.rb"]
9
+ t.verbose = true
10
+ t.warning = true
11
+ end
12
+
13
+ task default: [:test]
@@ -0,0 +1,27 @@
1
+ lib = File.expand_path("../lib", __FILE__)
2
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
3
+
4
+ Gem::Specification.new do |spec|
5
+ spec.name = "fluent-plugin-parser-cri-uino"
6
+ spec.version = "0.1.1"
7
+ spec.authors = ["Nicholas"]
8
+ spec.email = ["lizhongit@gmail.com"]
9
+
10
+ spec.summary = %q{CRI log format parser for Fluentd}
11
+ spec.description = spec.summary
12
+ spec.homepage = "https://github.com/lizhongit/fluent-plugin-parser-cri"
13
+ spec.license = "Apache-2.0"
14
+
15
+ test_files, files = `git ls-files -z`.split("\x0").partition do |f|
16
+ f.match(%r{^(test|spec|features)/})
17
+ end
18
+ spec.files = files
19
+ spec.executables = files.grep(%r{^bin/}) { |f| File.basename(f) }
20
+ spec.test_files = test_files
21
+ spec.require_paths = ["lib"]
22
+
23
+ spec.add_development_dependency "bundler", "~> 2.1"
24
+ spec.add_development_dependency "rake", "~> 13.0"
25
+ spec.add_development_dependency "test-unit", "~> 3.3"
26
+ spec.add_runtime_dependency "fluentd", ">= 1"
27
+ end
@@ -0,0 +1,73 @@
1
+ #
2
+ # Fluentd
3
+ #
4
+ # Licensed under the Apache License, Version 2.0 (the "License");
5
+ # you may not use this file except in compliance with the License.
6
+ # You may obtain a copy of the License at
7
+ #
8
+ # http://www.apache.org/licenses/LICENSE-2.0
9
+ #
10
+ # Unless required by applicable law or agreed to in writing, software
11
+ # distributed under the License is distributed on an "AS IS" BASIS,
12
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
+ # See the License for the specific language governing permissions and
14
+ # limitations under the License.
15
+ #
16
+
17
+ require 'fluent/plugin/parser'
18
+
19
+ module Fluent
20
+ module Plugin
21
+ class CriParser < Parser
22
+ Plugin.register_parser("cri-uino", self)
23
+
24
+ desc 'Merge stream/logtag fields into parsed result'
25
+ config_param :merge_cri_fields, :bool, default: true
26
+
27
+ config_set_default :time_key, 'time'.freeze
28
+ config_set_default :time_format, '%Y-%m-%dT%H:%M:%S.%L%z'.freeze
29
+ config_set_default :keep_time_key, true
30
+
31
+ def configure(conf)
32
+ super
33
+
34
+ @sub_parser = nil
35
+ if parser_config = conf.elements('parse').first
36
+ type = parser_config['@type']
37
+ @sub_parser = Fluent::Plugin.new_parser(type, parent: self.owner)
38
+ @sub_parser.configure(parser_config)
39
+ end
40
+ end
41
+
42
+ def parse(text)
43
+ elems = text.split(/\s/.freeze, 4)
44
+ return yield nil if elems.size != 4
45
+
46
+ if @sub_parser
47
+ time = record = nil
48
+ @sub_parser.parse(elems[3]) { |t, r|
49
+ time = t
50
+ record = r
51
+ }
52
+ if @merge_cri_fields && record
53
+ record['stream'] = elems[1]
54
+ record['logtag'] = elems[2]
55
+ end
56
+ else
57
+ record = {
58
+ "stream" => elems[1],
59
+ "logtag" => elems[2],
60
+ "log" => elems[3]
61
+ }
62
+ t = elems[0]
63
+ time = @time_parser.parse(t)
64
+ if @keep_time_key
65
+ record[@time_key] = t
66
+ end
67
+ end
68
+
69
+ yield time, record
70
+ end
71
+ end
72
+ end
73
+ end
@@ -0,0 +1,89 @@
1
+ require "test-unit"
2
+ require "fluent/test"
3
+ require "fluent/test/helpers"
4
+ require "fluent/test/driver/parser"
5
+ require "fluent/plugin/parser_cri.rb"
6
+
7
+ class CriParserTest < Test::Unit::TestCase
8
+ include Fluent::Test::Helpers
9
+
10
+ setup do
11
+ Fluent::Test.setup
12
+ end
13
+
14
+ def create_driver(conf)
15
+ c = Fluent::Config.parse(conf, "(test)", "(test_dir)", true)
16
+ Fluent::Test::Driver::Parser.new(Fluent::Plugin::CriParser).configure(c)
17
+ end
18
+
19
+ def test_parse
20
+ d = create_driver('')
21
+ log = '2020-10-10T00:10:00.333333333Z stdout F Hello Fluentd'
22
+ d.instance.parse(log) do |time, record|
23
+ t = event_time('2020-10-10T00:10:00.333333333Z', format: '%Y-%m-%dT%H:%M:%S.%L%z')
24
+ r = {'stream' => 'stdout', 'logtag' => 'F', 'message' => 'Hello Fluentd', 'time' => '2020-10-10T00:10:00.333333333Z'}
25
+ assert_equal t, time
26
+ assert_equal r, record
27
+ end
28
+ end
29
+
30
+ def test_parse_with_keeping_heading_spaces
31
+ d = create_driver('')
32
+ log = '2020-10-10T00:10:00.333333333Z stdout F Hello Fluentd with heading spaces'
33
+ d.instance.parse(log) do |time, record|
34
+ t = event_time('2020-10-10T00:10:00.333333333Z', format: '%Y-%m-%dT%H:%M:%S.%L%z')
35
+ r = {'stream' => 'stdout', 'logtag' => 'F', 'message' => ' Hello Fluentd with heading spaces', 'time' => '2020-10-10T00:10:00.333333333Z'}
36
+ assert_equal t, time
37
+ assert_equal r, record
38
+ end
39
+ end
40
+
41
+ def test_parse_without_keep_time_key
42
+ conf = %[keep_time_key false]
43
+ d = create_driver(conf)
44
+ log = '2020-10-10T00:10:00.333333333Z stdout F Hello Fluentd'
45
+ d.instance.parse(log) do |time, record|
46
+ t = event_time('2020-10-10T00:10:00.333333333Z', format: '%Y-%m-%dT%H:%M:%S.%L%z')
47
+ r = {'stream' => 'stdout', 'logtag' => 'F', 'message' => 'Hello Fluentd'}
48
+ assert_equal t, time
49
+ assert_equal r, record
50
+ end
51
+ end
52
+
53
+ def test_parse_with_json
54
+ conf = %[
55
+ <parse>
56
+ @type json
57
+ time_key time
58
+ time_format %Y-%m-%dT%H:%M:%S.%L%z
59
+ </parse>
60
+ ]
61
+ d = create_driver(conf)
62
+ log = '2020-10-10T00:10:00.333333333Z stdout F {"foo":"bar","num":100,"time":"2020-11-11T00:11:00.111111111Z"}'
63
+ d.instance.parse(log) do |time, record|
64
+ t = event_time('2020-11-11T00:11:00.111111111Z', format: '%Y-%m-%dT%H:%M:%S.%L%z')
65
+ r = {"foo" => "bar", "num" => 100, 'stream' => 'stdout', 'logtag' => 'F'}
66
+ assert_equal t, time
67
+ assert_equal r, record
68
+ end
69
+ end
70
+
71
+ def test_parse_with_json_without_merge_cri_fields
72
+ conf = %[
73
+ merge_cri_fields false
74
+ <parse>
75
+ @type json
76
+ time_key time
77
+ time_format %Y-%m-%dT%H:%M:%S.%L%z
78
+ </parse>
79
+ ]
80
+ d = create_driver(conf)
81
+ log = '2020-10-10T00:10:00.333333333Z stdout F {"foo":"bar","num":100,"time":"2020-11-11T00:11:00.111111111Z"}'
82
+ d.instance.parse(log) do |time, record|
83
+ t = event_time('2020-11-11T00:11:00.111111111Z', format: '%Y-%m-%dT%H:%M:%S.%L%z')
84
+ r = {"foo" => "bar", "num" => 100}
85
+ assert_equal t, time
86
+ assert_equal r, record
87
+ end
88
+ end
89
+ end
metadata ADDED
@@ -0,0 +1,109 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: fluent-plugin-parser-cri-uino
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.1
5
+ platform: ruby
6
+ authors:
7
+ - Nicholas
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2022-09-27 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: bundler
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '2.1'
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '2.1'
27
+ - !ruby/object:Gem::Dependency
28
+ name: rake
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: '13.0'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '13.0'
41
+ - !ruby/object:Gem::Dependency
42
+ name: test-unit
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - "~>"
46
+ - !ruby/object:Gem::Version
47
+ version: '3.3'
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - "~>"
53
+ - !ruby/object:Gem::Version
54
+ version: '3.3'
55
+ - !ruby/object:Gem::Dependency
56
+ name: fluentd
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - ">="
60
+ - !ruby/object:Gem::Version
61
+ version: '1'
62
+ type: :runtime
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - ">="
67
+ - !ruby/object:Gem::Version
68
+ version: '1'
69
+ description: CRI log format parser for Fluentd
70
+ email:
71
+ - lizhongit@gmail.com
72
+ executables: []
73
+ extensions: []
74
+ extra_rdoc_files: []
75
+ files:
76
+ - ".github/workflows/linux.yml"
77
+ - ".gitignore"
78
+ - Gemfile
79
+ - LICENSE
80
+ - README.md
81
+ - Rakefile
82
+ - fluent-plugin-parser-cri-uino.gemspec
83
+ - lib/fluent/plugin/parser_cri.rb
84
+ - test/plugin/test_parser_cri.rb
85
+ homepage: https://github.com/lizhongit/fluent-plugin-parser-cri
86
+ licenses:
87
+ - Apache-2.0
88
+ metadata: {}
89
+ post_install_message:
90
+ rdoc_options: []
91
+ require_paths:
92
+ - lib
93
+ required_ruby_version: !ruby/object:Gem::Requirement
94
+ requirements:
95
+ - - ">="
96
+ - !ruby/object:Gem::Version
97
+ version: '0'
98
+ required_rubygems_version: !ruby/object:Gem::Requirement
99
+ requirements:
100
+ - - ">="
101
+ - !ruby/object:Gem::Version
102
+ version: '0'
103
+ requirements: []
104
+ rubygems_version: 3.0.3.1
105
+ signing_key:
106
+ specification_version: 4
107
+ summary: CRI log format parser for Fluentd
108
+ test_files:
109
+ - test/plugin/test_parser_cri.rb