fluent-plugin-kubernetes-parser 0.1.0

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: 26dfcbff35f2d6d2c28c0df7581362dfc2fa9d3583f3d34c1884da76f46e6532
4
+ data.tar.gz: ebeb0100174fd8f9f8ac741b975802d2004d0164ed314eadf99b010bcbf10737
5
+ SHA512:
6
+ metadata.gz: 19f2ef4af12db51aed93e6f7ce3a245ed5febe974e42268d05ad9b2459ce3903acbe2eeaf9b24ecca9e3bff82fff7ecb698823e649762901f0a637b4ad0293cf
7
+ data.tar.gz: 517c25c3063d8d66eacb8175d8a4ae8273689741a4d0435021300d8815de33d38ddf245acee61f81eb2a585cbbd23ffaeb8bae015e17b5977f569236309a2380
@@ -0,0 +1,46 @@
1
+ name: Ruby Gem
2
+
3
+ on:
4
+ push:
5
+ tags: [ 'v*.*.*' ]
6
+ release:
7
+ types: ['published']
8
+ workflow_dispatch: {}
9
+
10
+ jobs:
11
+ build:
12
+ name: Build + Publish
13
+ runs-on: ubuntu-latest
14
+ permissions:
15
+ contents: read
16
+ packages: write
17
+
18
+ steps:
19
+ - uses: actions/checkout@v3
20
+ - name: Set up Ruby 2.7
21
+ uses: actions/setup-ruby@v1
22
+ with:
23
+ ruby-version: 2.7.x
24
+
25
+ - name: Publish to GPR
26
+ run: |
27
+ mkdir -p $HOME/.gem
28
+ touch $HOME/.gem/credentials
29
+ chmod 0600 $HOME/.gem/credentials
30
+ printf -- "---\n:github: ${GEM_HOST_API_KEY}\n" > $HOME/.gem/credentials
31
+ gem build *.gemspec
32
+ gem push --KEY github --host https://rubygems.pkg.github.com/${OWNER} *.gem
33
+ env:
34
+ GEM_HOST_API_KEY: "Bearer ${{secrets.GITHUB_TOKEN}}"
35
+ OWNER: ${{ github.repository_owner }}
36
+
37
+ - name: Publish to RubyGems
38
+ run: |
39
+ mkdir -p $HOME/.gem
40
+ touch $HOME/.gem/credentials
41
+ chmod 0600 $HOME/.gem/credentials
42
+ printf -- "---\n:rubygems_api_key: ${GEM_HOST_API_KEY}\n" > $HOME/.gem/credentials
43
+ gem build *.gemspec
44
+ gem push *.gem
45
+ env:
46
+ GEM_HOST_API_KEY: "${{secrets.RUBYGEMS_AUTH_TOKEN}}"
@@ -0,0 +1,31 @@
1
+ name: Ruby
2
+
3
+ on:
4
+ push:
5
+ branches: [ "main" ]
6
+ pull_request:
7
+ branches: [ "main" ]
8
+
9
+ permissions:
10
+ contents: read
11
+
12
+ jobs:
13
+ test:
14
+
15
+ runs-on: ubuntu-latest
16
+ strategy:
17
+ matrix:
18
+ ruby-version: ['2.7', '3.0']
19
+
20
+ steps:
21
+ - uses: actions/checkout@v3
22
+ - name: Set up Ruby
23
+ # To automatically get bug fixes and new Ruby versions for ruby/setup-ruby,
24
+ # change this to (see https://github.com/ruby/setup-ruby#versioning):
25
+ # uses: ruby/setup-ruby@v1
26
+ uses: ruby/setup-ruby@2b019609e2b0f1ea1a2bc8ca11cb82ab46ada124
27
+ with:
28
+ ruby-version: ${{ matrix.ruby-version }}
29
+ bundler-cache: true # runs 'bundle install' and caches installed gems automatically
30
+ - name: Run tests
31
+ run: bundle exec rake
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/Gemfile.lock ADDED
@@ -0,0 +1,51 @@
1
+ PATH
2
+ remote: .
3
+ specs:
4
+ fluent-plugin-kubernetes-parser (0.1.0)
5
+ fluentd (>= 0.14.10, < 2)
6
+
7
+ GEM
8
+ remote: https://rubygems.org/
9
+ specs:
10
+ concurrent-ruby (1.1.10)
11
+ cool.io (1.7.1)
12
+ fluentd (1.14.6)
13
+ bundler
14
+ cool.io (>= 1.4.5, < 2.0.0)
15
+ http_parser.rb (>= 0.5.1, < 0.9.0)
16
+ msgpack (>= 1.3.1, < 2.0.0)
17
+ serverengine (>= 2.2.5, < 3.0.0)
18
+ sigdump (~> 0.2.2)
19
+ strptime (>= 0.2.4, < 1.0.0)
20
+ tzinfo (>= 1.0, < 3.0)
21
+ tzinfo-data (~> 1.0)
22
+ webrick (>= 1.4.2, < 1.8.0)
23
+ yajl-ruby (~> 1.0)
24
+ http_parser.rb (0.8.0)
25
+ msgpack (1.5.2)
26
+ power_assert (2.0.1)
27
+ rake (13.0.6)
28
+ serverengine (2.3.0)
29
+ sigdump (~> 0.2.2)
30
+ sigdump (0.2.4)
31
+ strptime (0.2.5)
32
+ test-unit (3.3.9)
33
+ power_assert
34
+ tzinfo (2.0.4)
35
+ concurrent-ruby (~> 1.0)
36
+ tzinfo-data (1.2022.1)
37
+ tzinfo (>= 1.0.0)
38
+ webrick (1.7.0)
39
+ yajl-ruby (1.4.3)
40
+
41
+ PLATFORMS
42
+ x86_64-linux
43
+
44
+ DEPENDENCIES
45
+ bundler (~> 2.2.20)
46
+ fluent-plugin-kubernetes-parser!
47
+ rake (~> 13.0.3)
48
+ test-unit (~> 3.3.5)
49
+
50
+ BUNDLED WITH
51
+ 2.2.20
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,63 @@
1
+ # fluent-plugin-kubernetes-parser
2
+
3
+ [Fluentd](https://fluentd.org/) parser plugin to parse some Kubernetes and containerd specific log file formats.
4
+
5
+ ## Installation
6
+
7
+ ### Fluent
8
+
9
+ ```
10
+ $ fluent-gem install fluent-plugin-kubernetes-parser
11
+ ```
12
+
13
+ ### RubyGems
14
+
15
+ ```
16
+ $ gem install fluent-plugin-kubernetes-parser
17
+ ```
18
+
19
+ ### Bundler
20
+
21
+ Add following line to your Gemfile:
22
+
23
+ ```ruby
24
+ gem "fluent-plugin-kubernetes-parser"
25
+ ```
26
+
27
+ And then execute:
28
+
29
+ ```
30
+ $ bundle
31
+ ```
32
+
33
+ ## Configuration
34
+
35
+ - See also: [TimeParameters Plugin Overview](https://docs.fluentd.org/v/1.0/timeparameters#overview)
36
+
37
+ - See also: [Parser Plugin Overview](https://docs.fluentd.org/v/1.0/parser#overview)
38
+
39
+ ## Fluent::Plugin::KubernetesParser
40
+
41
+ ### delimiter (string) (optional)
42
+
43
+ Default value: ` `.
44
+
45
+ ### default_tz (string) (optional)
46
+
47
+ Default value: `+00:00`.
48
+
49
+ ### force_year (string) (optional)
50
+
51
+ ### keep_time_key (bool) (optional)
52
+
53
+ ### time_format (string) (optional)
54
+
55
+ ### time_key (string) (optional)
56
+
57
+ Default value: `time`.
58
+
59
+ ## Copyright
60
+
61
+ - Copyright(c) 2022- Sebastian Podjasek
62
+ - License
63
+ - 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', __dir__)
2
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
3
+
4
+ Gem::Specification.new do |spec|
5
+ spec.name = 'fluent-plugin-kubernetes-parser'
6
+ spec.version = '0.1.0'
7
+ spec.authors = ['Sebastian Podjasek']
8
+ spec.email = ['sebastian@podjasek.pl']
9
+
10
+ spec.summary = 'Fluentd plugin to parse some Kubernetes specific log formats'
11
+ spec.description = 'This plugin should be able to parse Kubernetes `klog` format with contexts, or other KV based formats'
12
+ spec.homepage = 'https://github.com/inway/fluent-plugin-kubernetes-parser'
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.2.20'
24
+ spec.add_development_dependency 'rake', '~> 13.0.3'
25
+ spec.add_development_dependency 'test-unit', '~> 3.3.5'
26
+ spec.add_runtime_dependency 'fluentd', ['>= 0.14.10', '< 2']
27
+ end
@@ -0,0 +1,155 @@
1
+ #
2
+ # Copyright 2022- Sebastian Podjasek
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
+ require 'fluent/log'
17
+ require 'fluent/plugin/parser'
18
+
19
+ module Fluent
20
+ module Plugin
21
+ class KubernetesParser < Fluent::Plugin::Parser
22
+ Fluent::Plugin.register_parser('kubernetes', self)
23
+
24
+ config_param :delimiter, :string, default: ' '
25
+ config_param :default_tz, :string, default: '+00:00'
26
+ config_param :force_year, :string, default: nil
27
+ config_param :keep_time_key, :bool, default: false
28
+ config_param :time_format, :string, default: nil
29
+ config_param :time_key, :string, default: 'time'
30
+
31
+ def configure(conf)
32
+ super
33
+
34
+ raise ConfigError, "delimiter must be a single character. #{@delimiter} is not." if @delimiter.length != 1
35
+
36
+ # Kubernetes logging format
37
+ # https://kubernetes.io/docs/concepts/cluster-administration/system-logs/
38
+ # https://github.com/kubernetes/community/blob/master/contributors/devel/sig-instrumentation/logging.md
39
+ #
40
+ # <klog header> "<message>" <key1>="<value1>" <key2>="<value2>" ...
41
+ # Lmmdd hh:mm:ss.uuuuuu threadid file:line] msg...
42
+ #
43
+ # where the fields are defined as follows:
44
+ # L A single character, representing the log level (eg 'I' for INFO)
45
+ # mm The month (zero padded; ie May is '05')
46
+ # dd The day (zero padded)
47
+ # hh:mm:ss.uuuuuu Time in hours, minutes and fractional seconds
48
+ # threadid The space-padded thread ID as returned by GetTID()
49
+ # file The file name
50
+ # line The line number
51
+ # msg The user-supplied message
52
+ @klog_regexp = /
53
+ ^
54
+ (?<log_level>[A-Z])(?<month>\d{2})(?<day>\d{2})\s+
55
+ (?<time>\d{2}:\d{2}:\d{2}(|\.\d+))\s+
56
+ (?<threadid>\d+)\s+
57
+ (?<file>[^ ]*):(?<line>\d+)\]\s
58
+ (
59
+ "(?<msg>([^"\\]*(?:\\.[^"\\]*)*))"(|\s+(?<kv>.*))
60
+ |
61
+ (?<greedy_msg>.*)
62
+ )
63
+ $
64
+ /x
65
+
66
+ # KV format used by containerd
67
+ @kv_regexp = /
68
+ (?<key>[^\s=]+)
69
+ (
70
+ \s
71
+ |
72
+ =
73
+ (?<value>
74
+ "(?<quoted>([^"\\]*(?:\\.[^"\\]*)*))"
75
+ |
76
+ \[(?<array>([^\]\\]*(?:\\.[^\]\\]*)*))\]
77
+ |
78
+ [^\s]*
79
+ )
80
+ )
81
+ /x
82
+ end
83
+
84
+ def parse(text)
85
+ if text.nil? || text.empty?
86
+ yield nil, nil
87
+ return
88
+ end
89
+
90
+ time = nil
91
+ record = {}
92
+
93
+ matches_klog = @klog_regexp.match(text)
94
+
95
+ unless matches_klog.nil?
96
+ captures = matches_klog.named_captures
97
+
98
+ captures['msg'] = captures['greedy_msg'] unless captures['greedy_msg'].nil?
99
+ captures.delete('greedy_msg')
100
+
101
+ unless captures['time'].nil?
102
+ record['time'] =
103
+ format('%s-%s-%sT%s%s', @force_year.nil? ? Time.now.year : @force_year, captures['month'], captures['day'],
104
+ captures['time'], @default_tz)
105
+ captures.delete('month')
106
+ captures.delete('day')
107
+ captures.delete('time')
108
+ end
109
+
110
+ text = captures['kv']
111
+ captures.delete('kv')
112
+
113
+ captures.each do |key, value|
114
+ if key == 'log_level'
115
+ # As seen here:
116
+ # https://github.com/kubernetes/klog/blob/9ad246211af1ed84621ee94a26fcce0038b69cd1/klog.go#L112
117
+ record['level'] = case value
118
+ when 'I'
119
+ 'info'
120
+ when 'W'
121
+ 'warn'
122
+ when 'E'
123
+ 'error'
124
+ when 'F'
125
+ 'fatal'
126
+ else
127
+ value
128
+ end
129
+ elsif %w[threadid line].include?(key)
130
+ record[key] = value.to_i
131
+ else
132
+ record[key] = value
133
+ end
134
+ end
135
+ end
136
+
137
+ unless text.nil?
138
+ text.scan(@kv_regexp).each do |key, value, quoted, array|
139
+ record[key] = if !quoted.nil?
140
+ quoted.gsub(/\\(.)/, '\1')
141
+ elsif !array.nil?
142
+ array.split(',').map(&:strip)
143
+ else
144
+ value
145
+ end
146
+ end
147
+ end
148
+
149
+ time = parse_time(record)
150
+
151
+ yield time, record
152
+ end
153
+ end
154
+ end
155
+ end
data/test/helper.rb ADDED
@@ -0,0 +1,8 @@
1
+ $LOAD_PATH.unshift(File.expand_path("../../", __FILE__))
2
+ require "test-unit"
3
+ require "fluent/test"
4
+ require "fluent/test/driver/parser"
5
+ require "fluent/test/helpers"
6
+
7
+ Test::Unit::TestCase.include(Fluent::Test::Helpers)
8
+ Test::Unit::TestCase.extend(Fluent::Test::Helpers)
@@ -0,0 +1,117 @@
1
+ require 'helper'
2
+ require 'fluent/plugin/parser_kubernetes'
3
+
4
+ class KubernetesParserTest < Test::Unit::TestCase
5
+ setup do
6
+ Fluent::Test.setup
7
+ end
8
+
9
+ CONFIG = %(
10
+ keep_time_key false
11
+ time_format %Y-%m-%dT%H:%M:%S.%N%:z
12
+ )
13
+
14
+ def create_driver(conf)
15
+ Fluent::Test::Driver::Parser.new(Fluent::Plugin::KubernetesParser).configure(conf)
16
+ end
17
+
18
+ sub_test_case 'should parse logs' do
19
+ test 'kubelet without quoting' do
20
+ d = create_driver("#{CONFIG}\nforce_year 2022\ndefault_tz +02:00")
21
+ text = 'I0524 16:21:12.823864 1025 log.go:195] http: superfluous response.WriteHeader call from k8s.io/kubernetes/vendor/github.com/emicklei/go-restful.(*Response).WriteHeader (response.go:220)'
22
+
23
+ d.instance.parse(text) do |time, record|
24
+ assert_equal_event_time(event_time('2022-05-24T16:21:12.823864+02'), time)
25
+ assert_equal({
26
+ 'level' => 'info',
27
+ 'file' => 'log.go',
28
+ 'line' => 195,
29
+ 'msg' => 'http: superfluous response.WriteHeader call from k8s.io/kubernetes/vendor/github.com/emicklei/go-restful.(*Response).WriteHeader (response.go:220)',
30
+ 'threadid' => 1025
31
+ }, record)
32
+ end
33
+ end
34
+ test 'kubelet without quoting, warn' do
35
+ d = create_driver("#{CONFIG}\nforce_year 2022\ndefault_tz +02:00")
36
+ text = 'W0627 12:09:57.042726 462622 empty_dir.go:519] Warning: Failed to clear quota on /var/lib/kubelet/pods/5d43adc3-c033-4475-b15c-34610db9c706/volumes/kubernetes.io~configmap/fluentd-config: clearQuota called, but quotas disabled'
37
+
38
+ d.instance.parse(text) do |time, record|
39
+ assert_equal_event_time(event_time('2022-06-27T12:09:57.042726+02'), time)
40
+ assert_equal({
41
+ 'level' => 'warn',
42
+ 'file' => 'empty_dir.go',
43
+ 'line' => 519,
44
+ 'msg' => 'Warning: Failed to clear quota on /var/lib/kubelet/pods/5d43adc3-c033-4475-b15c-34610db9c706/volumes/kubernetes.io~configmap/fluentd-config: clearQuota called, but quotas disabled',
45
+ 'threadid' => 462_622
46
+ }, record)
47
+ end
48
+ end
49
+
50
+ test 'kubelet quoted msg' do
51
+ d = create_driver("#{CONFIG}\nforce_year 2022\ndefault_tz +02:00")
52
+ text = 'I0524 17:05:44.446677 1025 topology_manager.go:200] "Topology Admit Handler"'
53
+
54
+ d.instance.parse(text) do |time, record|
55
+ assert_equal_event_time(event_time('2022-05-24T17:05:44.446677+02'), time)
56
+ assert_equal({
57
+ 'level' => 'info',
58
+ 'file' => 'topology_manager.go',
59
+ 'line' => 200,
60
+ 'msg' => 'Topology Admit Handler',
61
+ 'threadid' => 1025
62
+ }, record)
63
+ end
64
+ end
65
+
66
+ test 'kubelet with some context' do
67
+ d = create_driver("#{CONFIG}\nforce_year 2022\ndefault_tz +02:00")
68
+ text = 'I0524 17:11:56.952306 1025 kubelet_volumes.go:160] "Cleaned up orphaned pod volumes dir" podUID=c50c3c96-b448-46a8-aff0-ef61795696f7 path="/var/lib/kubelet/pods/c50c3c96-b448-46a8-aff0-ef61795696f7/volumes"'
69
+
70
+ d.instance.parse(text) do |time, record|
71
+ assert_equal_event_time(event_time('2022-05-24T17:11:56.952306+02'), time)
72
+ assert_equal({
73
+ 'level' => 'info',
74
+ 'file' => 'kubelet_volumes.go',
75
+ 'line' => 160,
76
+ 'msg' => 'Cleaned up orphaned pod volumes dir',
77
+ 'threadid' => 1025,
78
+ 'path' => '/var/lib/kubelet/pods/c50c3c96-b448-46a8-aff0-ef61795696f7/volumes',
79
+ 'podUID' => 'c50c3c96-b448-46a8-aff0-ef61795696f7'
80
+ }, record)
81
+ end
82
+ end
83
+
84
+ test 'kubelet with some array in context' do
85
+ d = create_driver("#{CONFIG}\nforce_year 2022\ndefault_tz +02:00")
86
+ text = 'I0527 09:00:05.110852 1025 eviction_manager.go:167] "Failed to admit pod to node" pod="monitoring/prometheus-k8s-0" nodeCondition=[DiskPressure]'
87
+
88
+ d.instance.parse(text) do |time, record|
89
+ assert_equal_event_time(event_time('2022-05-27T09:00:05.110852+02'), time)
90
+ assert_equal({
91
+ 'level' => 'info',
92
+ 'file' => 'eviction_manager.go',
93
+ 'line' => 167,
94
+ 'msg' => 'Failed to admit pod to node',
95
+ 'nodeCondition' => ['DiskPressure'],
96
+ 'pod' => 'monitoring/prometheus-k8s-0',
97
+ 'threadid' => 1025
98
+ }, record)
99
+ end
100
+ end
101
+
102
+ test 'containerd kv logs' do
103
+ d = create_driver(CONFIG)
104
+ text = 'time="2022-05-24T14:08:25.144534370+02:00" level=info msg="loading plugin \"io.containerd.grpc.v1.healthcheck\"..." type=io.containerd.grpc.v1'
105
+
106
+ d.instance.parse(text) do |time, record|
107
+ puts "time: #{time}, record: #{record}"
108
+ assert_equal_event_time(event_time('2022-05-24T14:08:25.144534370+02:00'), time)
109
+ assert_equal({
110
+ 'level' => 'info',
111
+ 'msg' => 'loading plugin "io.containerd.grpc.v1.healthcheck"...',
112
+ 'type' => 'io.containerd.grpc.v1'
113
+ }, record)
114
+ end
115
+ end
116
+ end
117
+ end
metadata ADDED
@@ -0,0 +1,120 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: fluent-plugin-kubernetes-parser
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - Sebastian Podjasek
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2022-06-28 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.2.20
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: 2.2.20
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.3
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.3
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.5
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.5
55
+ - !ruby/object:Gem::Dependency
56
+ name: fluentd
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - ">="
60
+ - !ruby/object:Gem::Version
61
+ version: 0.14.10
62
+ - - "<"
63
+ - !ruby/object:Gem::Version
64
+ version: '2'
65
+ type: :runtime
66
+ prerelease: false
67
+ version_requirements: !ruby/object:Gem::Requirement
68
+ requirements:
69
+ - - ">="
70
+ - !ruby/object:Gem::Version
71
+ version: 0.14.10
72
+ - - "<"
73
+ - !ruby/object:Gem::Version
74
+ version: '2'
75
+ description: This plugin should be able to parse Kubernetes `klog` format with contexts,
76
+ or other KV based formats
77
+ email:
78
+ - sebastian@podjasek.pl
79
+ executables: []
80
+ extensions: []
81
+ extra_rdoc_files: []
82
+ files:
83
+ - ".github/workflows/gem-push.yml"
84
+ - ".github/workflows/ruby.yml"
85
+ - ".gitignore"
86
+ - Gemfile
87
+ - Gemfile.lock
88
+ - LICENSE
89
+ - README.md
90
+ - Rakefile
91
+ - fluent-plugin-kubernetes-parser.gemspec
92
+ - lib/fluent/plugin/parser_kubernetes.rb
93
+ - test/helper.rb
94
+ - test/plugin/test_parser_kubernetes.rb
95
+ homepage: https://github.com/inway/fluent-plugin-kubernetes-parser
96
+ licenses:
97
+ - Apache-2.0
98
+ metadata: {}
99
+ post_install_message:
100
+ rdoc_options: []
101
+ require_paths:
102
+ - lib
103
+ required_ruby_version: !ruby/object:Gem::Requirement
104
+ requirements:
105
+ - - ">="
106
+ - !ruby/object:Gem::Version
107
+ version: '0'
108
+ required_rubygems_version: !ruby/object:Gem::Requirement
109
+ requirements:
110
+ - - ">="
111
+ - !ruby/object:Gem::Version
112
+ version: '0'
113
+ requirements: []
114
+ rubygems_version: 3.1.6
115
+ signing_key:
116
+ specification_version: 4
117
+ summary: Fluentd plugin to parse some Kubernetes specific log formats
118
+ test_files:
119
+ - test/helper.rb
120
+ - test/plugin/test_parser_kubernetes.rb