fluent-plugin-containiq 0.0.7

Sign up to get free protection for your applications and to get access to all the features.
Files changed (40) hide show
  1. checksums.yaml +7 -0
  2. data/.github/workflows/main.yaml +22 -0
  3. data/.github/workflows/release.yaml +22 -0
  4. data/.gitignore +5 -0
  5. data/Dockerfile +58 -0
  6. data/Gemfile +3 -0
  7. data/LICENSE +202 -0
  8. data/README.md +67 -0
  9. data/Rakefile +14 -0
  10. data/fluent-plugin-containiq.gemspec +28 -0
  11. data/k8s/Gemfile +19 -0
  12. data/k8s/README.md +3 -0
  13. data/k8s/conf/fluent.conf +16 -0
  14. data/k8s/conf/kubernetes/cluster-autoscaler.conf +11 -0
  15. data/k8s/conf/kubernetes/containers.conf +10 -0
  16. data/k8s/conf/kubernetes/docker.conf +11 -0
  17. data/k8s/conf/kubernetes/etcd.conf +10 -0
  18. data/k8s/conf/kubernetes/glbc.conf +11 -0
  19. data/k8s/conf/kubernetes/kube-apiserver-audit.conf +23 -0
  20. data/k8s/conf/kubernetes/kube-apiserver.conf +11 -0
  21. data/k8s/conf/kubernetes/kube-controller-manager.conf +11 -0
  22. data/k8s/conf/kubernetes/kube-proxy.conf +11 -0
  23. data/k8s/conf/kubernetes/kube-scheduler.conf +11 -0
  24. data/k8s/conf/kubernetes/kubelet.conf +11 -0
  25. data/k8s/conf/kubernetes/rescheduler.conf +11 -0
  26. data/k8s/conf/kubernetes/salt.conf +13 -0
  27. data/k8s/conf/kubernetes/startupscript.conf +10 -0
  28. data/k8s/conf/kubernetes.conf +36 -0
  29. data/k8s/conf/prometheus.conf +13 -0
  30. data/k8s/conf/systemd.conf +43 -0
  31. data/k8s/conf/tail_container_parse.conf +4 -0
  32. data/k8s/entrypoint.sh +4 -0
  33. data/k8s/fluentd-daemonset.yaml +111 -0
  34. data/k8s/plugins/.gitkeep +0 -0
  35. data/k8s/plugins/parser_kubernetes.rb +68 -0
  36. data/k8s/plugins/parser_multiline_kubernetes.rb +69 -0
  37. data/lib/fluent/plugin/out_containiq.rb +173 -0
  38. data/test/helper.rb +8 -0
  39. data/test/plugin/test_out_containiq.rb +18 -0
  40. metadata +159 -0
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: c6ef7dd782c3451829e0028ed1a850ea3a164431b4a64c24e878045a3c2f00c8
4
+ data.tar.gz: 460a91ce8196907db67e79c0917cc8170dd3fcd33ba40858c2fa647aa89688e6
5
+ SHA512:
6
+ metadata.gz: eb327c20b29510195e0b9c1cb514e88307de6108e00f9eacb20dd917d5c82dfd48acc3d391dd8a1fbe930ad8be4e98880137f8cc34ff869f44a8fb8b40971ecc
7
+ data.tar.gz: 9de3741926511852e34a38549a601d6b0f881690b5e656a95b837b68f796d1653dc98495c753680ed89c3e79488231766c1feba4346c31746cd7ab92007efdcd
@@ -0,0 +1,22 @@
1
+ ---
2
+ name: Build and Push on Main
3
+ on:
4
+ push:
5
+ branches:
6
+ - main
7
+ jobs:
8
+ main:
9
+ runs-on: ubuntu-latest
10
+ steps:
11
+ - uses: actions/checkout@v2
12
+ - name: Publish Gem
13
+ uses: discourse/publish-rubygems-action@v2-beta
14
+ env:
15
+ RUBYGEMS_API_KEY: ${{ secrets.RUBYGEMS_API_KEY }}
16
+ RELEASE_COMMAND: rake release
17
+ - name: Login to Dockerhub
18
+ run: echo ${{ secrets.DOCKERHUB_PASSWORD }} | docker login -u ${{ secrets.DOCKERHUB_USERNAME }} --password-stdin
19
+ - name: Build latest image
20
+ run: docker build . --tag containiq/logging-agent-dev:latest
21
+ - name: Push latest image
22
+ run: docker push containiq/logging-agent-dev:latest
@@ -0,0 +1,22 @@
1
+ name: Build and Push on Release
2
+ on:
3
+ release:
4
+ types: [published]
5
+ jobs:
6
+ release:
7
+ runs-on: ubuntu-latest
8
+ steps:
9
+ - uses: actions/checkout@v2
10
+ - name: Login to Dockerhub
11
+ run: echo ${{ secrets.DOCKERHUB_PASSWORD }} | docker login -u ${{ secrets.DOCKERHUB_USERNAME }} --password-stdin
12
+ - name: set tag
13
+ id: vars
14
+ run: echo ::set-output name=tag::$(echo ${GITHUB_REF:10})
15
+ - name: Build tagged image
16
+ run: docker build . --tag containiq/logging-agent:${{steps.vars.outputs.tag}}
17
+ - name: Push tagged image
18
+ run: docker push containiq/logging-agent:${{steps.vars.outputs.tag}}
19
+ - name: Build latest image
20
+ run: docker build . --tag containiq/logging-agent:latest
21
+ - name: Push latest image
22
+ run: docker push containiq/logging-agent:latest
data/.gitignore ADDED
@@ -0,0 +1,5 @@
1
+ .DS_Store
2
+ *.gem
3
+ .bundle
4
+ *.swp
5
+ Gemfile.lock
data/Dockerfile ADDED
@@ -0,0 +1,58 @@
1
+ # https://github.com/fluent/fluentd-kubernetes-daemonset/blob/master/templates/Dockerfile.erb
2
+
3
+ FROM fluent/fluentd:v1.14.0-debian-1.0
4
+
5
+ LABEL maintainer="ContainIQ <matt@containiq.com>"
6
+ USER root
7
+ WORKDIR /home/fluent
8
+ ENV PATH /fluentd/vendor/bundle/ruby/2.6.0/bin:$PATH
9
+ ENV GEM_PATH /fluentd/vendor/bundle/ruby/2.6.0
10
+ ENV GEM_HOME /fluentd/vendor/bundle/ruby/2.6.0
11
+ # skip runtime bundler installation
12
+ ENV FLUENTD_DISABLE_BUNDLER_INJECTION 1
13
+
14
+ COPY ./k8s/Gemfile* /fluentd/
15
+ RUN buildDeps="sudo make gcc g++ libc-dev libffi-dev" \
16
+ runtimeDeps="" \
17
+ && apt-get update \
18
+ && apt-get upgrade -y \
19
+ && apt-get install \
20
+ -y --no-install-recommends \
21
+ $buildDeps $runtimeDeps net-tools \
22
+ && gem install bundler --version 2.2.24 \
23
+ && bundle config silence_root_warning true \
24
+ && bundle install --gemfile=/fluentd/Gemfile --path=/fluentd/vendor/bundle \
25
+ && SUDO_FORCE_REMOVE=yes \
26
+ apt-get purge -y --auto-remove \
27
+ -o APT::AutoRemove::RecommendsImportant=false \
28
+ $buildDeps \
29
+ && rm -rf /var/lib/apt/lists/* \
30
+ && gem sources --clear-all \
31
+ && rm -rf /tmp/* /var/tmp/* /usr/lib/ruby/gems/*/cache/*.gem
32
+ # Copy configuration files
33
+ COPY ./k8s/conf/fluent.conf /fluentd/etc/
34
+ COPY ./k8s/conf/systemd.conf /fluentd/etc/
35
+ COPY ./k8s/conf/kubernetes.conf /fluentd/etc/
36
+ COPY ./k8s/conf/prometheus.conf /fluentd/etc/
37
+ COPY ./k8s/conf/tail_container_parse.conf /fluentd/etc/
38
+ COPY ./k8s/conf/kubernetes/*.conf /fluentd/etc/kubernetes/
39
+ RUN touch /fluentd/etc/disable.conf
40
+
41
+ # Copy plugins
42
+ COPY ./k8s/plugins /fluentd/plugins/
43
+
44
+ # for local development of the fluent-plugin-containiq gem only:
45
+ # ENV CONTAINIQ_PLUGIN_LOCAL_PACKAGE pkg/fluent-plugin-containiq-0.0.4.gem
46
+ # COPY . /fluent-plugin-containiq-source
47
+ # RUN gem install net-http-persistent
48
+ # RUN gem install --local /fluent-plugin-containiq-source/$CONTAINIQ_PLUGIN_LOCAL_PACKAGE
49
+
50
+ COPY ./k8s/entrypoint.sh /fluentd/entrypoint.sh
51
+ RUN chmod +x /fluentd/entrypoint.sh
52
+
53
+ # Environment variables
54
+ ENV FLUENTD_OPT=""
55
+ ENV FLUENTD_CONF="fluent.conf"
56
+
57
+ # Overwrite ENTRYPOINT to run fluentd as root for /var/log / /var/lib
58
+ ENTRYPOINT ["tini", "--", "/fluentd/entrypoint.sh"]
data/Gemfile ADDED
@@ -0,0 +1,3 @@
1
+ source "https://rubygems.org"
2
+
3
+ gemspec
data/LICENSE ADDED
@@ -0,0 +1,202 @@
1
+
2
+ Apache License
3
+ Version 2.0, January 2004
4
+ http://www.apache.org/licenses/
5
+
6
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
7
+
8
+ 1. Definitions.
9
+
10
+ "License" shall mean the terms and conditions for use, reproduction,
11
+ and distribution as defined by Sections 1 through 9 of this document.
12
+
13
+ "Licensor" shall mean the copyright owner or entity authorized by
14
+ the copyright owner that is granting the License.
15
+
16
+ "Legal Entity" shall mean the union of the acting entity and all
17
+ other entities that control, are controlled by, or are under common
18
+ control with that entity. For the purposes of this definition,
19
+ "control" means (i) the power, direct or indirect, to cause the
20
+ direction or management of such entity, whether by contract or
21
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
22
+ outstanding shares, or (iii) beneficial ownership of such entity.
23
+
24
+ "You" (or "Your") shall mean an individual or Legal Entity
25
+ exercising permissions granted by this License.
26
+
27
+ "Source" form shall mean the preferred form for making modifications,
28
+ including but not limited to software source code, documentation
29
+ source, and configuration files.
30
+
31
+ "Object" form shall mean any form resulting from mechanical
32
+ transformation or translation of a Source form, including but
33
+ not limited to compiled object code, generated documentation,
34
+ and conversions to other media types.
35
+
36
+ "Work" shall mean the work of authorship, whether in Source or
37
+ Object form, made available under the License, as indicated by a
38
+ copyright notice that is included in or attached to the work
39
+ (an example is provided in the Appendix below).
40
+
41
+ "Derivative Works" shall mean any work, whether in Source or Object
42
+ form, that is based on (or derived from) the Work and for which the
43
+ editorial revisions, annotations, elaborations, or other modifications
44
+ represent, as a whole, an original work of authorship. For the purposes
45
+ of this License, Derivative Works shall not include works that remain
46
+ separable from, or merely link (or bind by name) to the interfaces of,
47
+ the Work and Derivative Works thereof.
48
+
49
+ "Contribution" shall mean any work of authorship, including
50
+ the original version of the Work and any modifications or additions
51
+ to that Work or Derivative Works thereof, that is intentionally
52
+ submitted to Licensor for inclusion in the Work by the copyright owner
53
+ or by an individual or Legal Entity authorized to submit on behalf of
54
+ the copyright owner. For the purposes of this definition, "submitted"
55
+ means any form of electronic, verbal, or written communication sent
56
+ to the Licensor or its representatives, including but not limited to
57
+ communication on electronic mailing lists, source code control systems,
58
+ and issue tracking systems that are managed by, or on behalf of, the
59
+ Licensor for the purpose of discussing and improving the Work, but
60
+ excluding communication that is conspicuously marked or otherwise
61
+ designated in writing by the copyright owner as "Not a Contribution."
62
+
63
+ "Contributor" shall mean Licensor and any individual or Legal Entity
64
+ on behalf of whom a Contribution has been received by Licensor and
65
+ subsequently incorporated within the Work.
66
+
67
+ 2. Grant of Copyright License. Subject to the terms and conditions of
68
+ this License, each Contributor hereby grants to You a perpetual,
69
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
70
+ copyright license to reproduce, prepare Derivative Works of,
71
+ publicly display, publicly perform, sublicense, and distribute the
72
+ Work and such Derivative Works in Source or Object form.
73
+
74
+ 3. Grant of Patent License. Subject to the terms and conditions of
75
+ this License, each Contributor hereby grants to You a perpetual,
76
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
77
+ (except as stated in this section) patent license to make, have made,
78
+ use, offer to sell, sell, import, and otherwise transfer the Work,
79
+ where such license applies only to those patent claims licensable
80
+ by such Contributor that are necessarily infringed by their
81
+ Contribution(s) alone or by combination of their Contribution(s)
82
+ with the Work to which such Contribution(s) was submitted. If You
83
+ institute patent litigation against any entity (including a
84
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
85
+ or a Contribution incorporated within the Work constitutes direct
86
+ or contributory patent infringement, then any patent licenses
87
+ granted to You under this License for that Work shall terminate
88
+ as of the date such litigation is filed.
89
+
90
+ 4. Redistribution. You may reproduce and distribute copies of the
91
+ Work or Derivative Works thereof in any medium, with or without
92
+ modifications, and in Source or Object form, provided that You
93
+ meet the following conditions:
94
+
95
+ (a) You must give any other recipients of the Work or
96
+ Derivative Works a copy of this License; and
97
+
98
+ (b) You must cause any modified files to carry prominent notices
99
+ stating that You changed the files; and
100
+
101
+ (c) You must retain, in the Source form of any Derivative Works
102
+ that You distribute, all copyright, patent, trademark, and
103
+ attribution notices from the Source form of the Work,
104
+ excluding those notices that do not pertain to any part of
105
+ the Derivative Works; and
106
+
107
+ (d) If the Work includes a "NOTICE" text file as part of its
108
+ distribution, then any Derivative Works that You distribute must
109
+ include a readable copy of the attribution notices contained
110
+ within such NOTICE file, excluding those notices that do not
111
+ pertain to any part of the Derivative Works, in at least one
112
+ of the following places: within a NOTICE text file distributed
113
+ as part of the Derivative Works; within the Source form or
114
+ documentation, if provided along with the Derivative Works; or,
115
+ within a display generated by the Derivative Works, if and
116
+ wherever such third-party notices normally appear. The contents
117
+ of the NOTICE file are for informational purposes only and
118
+ do not modify the License. You may add Your own attribution
119
+ notices within Derivative Works that You distribute, alongside
120
+ or as an addendum to the NOTICE text from the Work, provided
121
+ that such additional attribution notices cannot be construed
122
+ as modifying the License.
123
+
124
+ You may add Your own copyright statement to Your modifications and
125
+ may provide additional or different license terms and conditions
126
+ for use, reproduction, or distribution of Your modifications, or
127
+ for any such Derivative Works as a whole, provided Your use,
128
+ reproduction, and distribution of the Work otherwise complies with
129
+ the conditions stated in this License.
130
+
131
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
132
+ any Contribution intentionally submitted for inclusion in the Work
133
+ by You to the Licensor shall be under the terms and conditions of
134
+ this License, without any additional terms or conditions.
135
+ Notwithstanding the above, nothing herein shall supersede or modify
136
+ the terms of any separate license agreement you may have executed
137
+ with Licensor regarding such Contributions.
138
+
139
+ 6. Trademarks. This License does not grant permission to use the trade
140
+ names, trademarks, service marks, or product names of the Licensor,
141
+ except as required for reasonable and customary use in describing the
142
+ origin of the Work and reproducing the content of the NOTICE file.
143
+
144
+ 7. Disclaimer of Warranty. Unless required by applicable law or
145
+ agreed to in writing, Licensor provides the Work (and each
146
+ Contributor provides its Contributions) on an "AS IS" BASIS,
147
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
148
+ implied, including, without limitation, any warranties or conditions
149
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
150
+ PARTICULAR PURPOSE. You are solely responsible for determining the
151
+ appropriateness of using or redistributing the Work and assume any
152
+ risks associated with Your exercise of permissions under this License.
153
+
154
+ 8. Limitation of Liability. In no event and under no legal theory,
155
+ whether in tort (including negligence), contract, or otherwise,
156
+ unless required by applicable law (such as deliberate and grossly
157
+ negligent acts) or agreed to in writing, shall any Contributor be
158
+ liable to You for damages, including any direct, indirect, special,
159
+ incidental, or consequential damages of any character arising as a
160
+ result of this License or out of the use or inability to use the
161
+ Work (including but not limited to damages for loss of goodwill,
162
+ work stoppage, computer failure or malfunction, or any and all
163
+ other commercial damages or losses), even if such Contributor
164
+ has been advised of the possibility of such damages.
165
+
166
+ 9. Accepting Warranty or Additional Liability. While redistributing
167
+ the Work or Derivative Works thereof, You may choose to offer,
168
+ and charge a fee for, acceptance of support, warranty, indemnity,
169
+ or other liability obligations and/or rights consistent with this
170
+ License. However, in accepting such obligations, You may act only
171
+ on Your own behalf and on Your sole responsibility, not on behalf
172
+ of any other Contributor, and only if You agree to indemnify,
173
+ defend, and hold each Contributor harmless for any liability
174
+ incurred by, or claims asserted against, such Contributor by reason
175
+ of your accepting any such warranty or additional liability.
176
+
177
+ END OF TERMS AND CONDITIONS
178
+
179
+ APPENDIX: How to apply the Apache License to your work.
180
+
181
+ To apply the Apache License to your work, attach the following
182
+ boilerplate notice, with the fields enclosed by brackets "[]"
183
+ replaced with your own identifying information. (Don't include
184
+ the brackets!) The text should be enclosed in the appropriate
185
+ comment syntax for the file format. We also recommend that a
186
+ file or class name and description of purpose be included on the
187
+ same "printed page" as the copyright notice for easier
188
+ identification within third-party archives.
189
+
190
+ Copyright [yyyy] [name of copyright owner]
191
+
192
+ Licensed under the Apache License, Version 2.0 (the "License");
193
+ you may not use this file except in compliance with the License.
194
+ You may obtain a copy of the License at
195
+
196
+ http://www.apache.org/licenses/LICENSE-2.0
197
+
198
+ Unless required by applicable law or agreed to in writing, software
199
+ distributed under the License is distributed on an "AS IS" BASIS,
200
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
201
+ See the License for the specific language governing permissions and
202
+ limitations under the License.
data/README.md ADDED
@@ -0,0 +1,67 @@
1
+ # fluent-plugin-containiq
2
+
3
+ [Fluentd](https://fluentd.org/) output plugin that pushes logs to ContainIQ.
4
+
5
+ [fluent-plugin-containiq on RubyGems.org](https://rubygems.org/gems/fluent-plugin-containiq)
6
+
7
+ ## Getting Started
8
+
9
+ ```
10
+ $ gem install fluent-plugin-containiq
11
+ ```
12
+
13
+ ```
14
+ <match>
15
+ @type containiq
16
+
17
+ <buffer>
18
+ @type file
19
+ path /var/log/fluent/example
20
+ </buffer>
21
+ </match>
22
+ ```
23
+
24
+ ## Publish a new version
25
+
26
+ Manually bump the `spec.version` in `fluent-plugin-containiq.gemspec`. This will trigger a Github action to:
27
+
28
+ - Publish a new version to [RubyGems.org](https://rubygems.org/gems/fluent-plugin-containiq)
29
+ - Push a new latest image to [containiq/logging-agent-dev](https://hub.docker.com/r/containiq/logging-agent)
30
+ - Create a draft [Repository Release](https://docs.github.com/en/repositories/releasing-projects-on-github/managing-releases-in-a-repository)
31
+ - Once that draft is published, another Github action is trigger to:
32
+ - Push a new tagged and latest image to [containiq/logging-agent-dev](https://hub.docker.com/r/containiq/logging-agent)
33
+ - Push a new tagged and latest image to [containiq/logging-agent](https://hub.docker.com/r/containiq/logging-agent)
34
+
35
+ ## Local Development
36
+
37
+ Steps to work on the plugin locally:
38
+
39
+ - Comment out this gem from `k8s/Gemfile`
40
+ - Build the plugin from source: `bundle exec rake build`
41
+ - Uncomment the local build in `Dockerfile` and copy the build path to the `CONTAINIQ_PLUGIN_LOCAL_PACKAGE` variable
42
+ - Build the image: `docker image build . -t containiq/logging-agent-dev`
43
+ - In `k8s/fluentd-daemonset.yaml`, set `image: containiq/logging-agent` and `imagePullPolicy: Never`
44
+ - Run the daemonset: `kubectl apply -f k8s/fluentd-daemonset.yaml`
45
+ - Verify everything is working in the fluentd logs: `kubectl logs -n containiq -f $(kubectl get pod -l name=fluentd -o jsonpath='{.items[0].metadata.name}')`
46
+
47
+ ### Bundler
48
+
49
+ Add following line to your Gemfile:
50
+
51
+ ```ruby
52
+ gem "fluent-plugin-containiq"
53
+ ```
54
+
55
+ And then execute:
56
+
57
+ ```
58
+ $ bundle
59
+ ```
60
+
61
+ ## Configuration
62
+
63
+ You can generate configuration template:
64
+
65
+ ```
66
+ $ fluent-plugin-config-format output containiq
67
+ ```
data/Rakefile ADDED
@@ -0,0 +1,14 @@
1
+ require "bundler"
2
+ require "fileutils"
3
+ Bundler::GemHelper.install_tasks
4
+
5
+ require "rake/testtask"
6
+
7
+ Rake::TestTask.new(:test) do |t|
8
+ t.libs.push("lib", "test")
9
+ t.test_files = FileList["test/**/test_*.rb"]
10
+ t.verbose = true
11
+ t.warning = true
12
+ end
13
+
14
+ task default: [:test]
@@ -0,0 +1,28 @@
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-containiq"
6
+ spec.version = "0.0.7"
7
+ spec.authors = ["ContainIQ"]
8
+ spec.email = ["matt@containiq.com"]
9
+
10
+ spec.summary = "Fluentd output plugin that pushes logs to ContainIQ"
11
+ spec.description = "Fluentd output plugin that pushes logs to ContainIQ"
12
+ spec.homepage = "https://www.containiq.com/"
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_dependency 'net-http-persistent', '~> 4.0.1'
24
+ spec.add_development_dependency "bundler", "~> 2.2.27"
25
+ spec.add_development_dependency "rake", "~> 13.0.6"
26
+ spec.add_development_dependency "test-unit", "~> 3.4.7"
27
+ spec.add_runtime_dependency "fluentd", [">= 0.14.10", "< 2"]
28
+ end
data/k8s/Gemfile ADDED
@@ -0,0 +1,19 @@
1
+ # https://github.com/fluent/fluentd-kubernetes-daemonset/blob/master/templates/Gemfile.erb
2
+
3
+ source "https://rubygems.org"
4
+
5
+ gem "fluentd", "1.14.0"
6
+ gem "oj", "3.11.0"
7
+ gem "fluent-plugin-multi-format-parser", "~> 1.0.0"
8
+ gem "fluent-plugin-concat", "~> 2.5.0"
9
+ gem "fluent-plugin-grok-parser", "~> 2.6.2"
10
+ gem "fluent-plugin-prometheus", "~> 2.0.2"
11
+ gem 'fluent-plugin-json-in-json-2', ">= 1.0.2"
12
+ gem "fluent-plugin-record-modifier", "~> 2.1.0"
13
+ gem "fluent-plugin-detect-exceptions", "~> 0.0.13"
14
+ gem "fluent-plugin-rewrite-tag-filter", "~> 2.4.0"
15
+ gem "fluent-plugin-parser-cri", "~> 0.1.0"
16
+ gem "fluent-plugin-containiq" # comment this out when deving this plugin locally
17
+ gem "fluent-plugin-kubernetes_metadata_filter", "~> 2.8.0"
18
+ gem "fluent-plugin-systemd", "~> 1.0.5"
19
+ gem "ffi"
data/k8s/README.md ADDED
@@ -0,0 +1,3 @@
1
+ # ContainIQ
2
+
3
+ Most of these files were copied over from [fluentd-kubernetes-daemonset/templates at master · fluent/fluentd-kubernetes-daemonset · GitHub](https://github.com/fluent/fluentd-kubernetes-daemonset/tree/master/templates).
@@ -0,0 +1,16 @@
1
+
2
+ @include "#{ENV['FLUENTD_SYSTEMD_CONF'] || 'systemd'}.conf"
3
+ @include "#{ENV['FLUENTD_PROMETHEUS_CONF'] || 'prometheus'}.conf"
4
+ @include kubernetes.conf
5
+ @include conf.d/*.conf
6
+
7
+ <match **>
8
+ @type containiq
9
+ @id out_containiq
10
+ <buffer>
11
+ # Set the buffer type to file to improve the reliability and reduce the memory consumption
12
+ @type file
13
+ path /var/log/fluentd-buffers/containiq.buffer
14
+ </buffer>
15
+ </match>
16
+
@@ -0,0 +1,11 @@
1
+ <source>
2
+ @type tail
3
+ @id in_tail_cluster_autoscaler
4
+ multiline_flush_interval 5s
5
+ path /var/log/cluster-autoscaler.log
6
+ pos_file /var/log/fluentd-cluster-autoscaler.log.pos
7
+ tag cluster-autoscaler
8
+ <parse>
9
+ @type kubernetes
10
+ </parse>
11
+ </source>
@@ -0,0 +1,10 @@
1
+ <source>
2
+ @type tail
3
+ @id in_tail_container_logs
4
+ path /var/log/containers/*.log
5
+ pos_file /var/log/fluentd-containers.log.pos
6
+ tag "#{ENV['FLUENT_CONTAINER_TAIL_TAG'] || 'kubernetes.*'}"
7
+ exclude_path "#{ENV['FLUENT_CONTAINER_TAIL_EXCLUDE_PATH'] || use_default}"
8
+ read_from_head true
9
+ @include ../tail_container_parse.conf
10
+ </source>
@@ -0,0 +1,11 @@
1
+ <source>
2
+ @type tail
3
+ @id in_tail_docker
4
+ path /var/log/docker.log
5
+ pos_file /var/log/fluentd-docker.log.pos
6
+ tag docker
7
+ <parse>
8
+ @type regexp
9
+ expression /^time="(?<time>[^)]*)" level=(?<severity>[^ ]*) msg="(?<message>[^"]*)"( err="(?<error>[^"]*)")?( statusCode=($<status_code>\d+))?/
10
+ </parse>
11
+ </source>
@@ -0,0 +1,10 @@
1
+ <source>
2
+ @type tail
3
+ @id in_tail_etcd
4
+ path /var/log/etcd.log
5
+ pos_file /var/log/fluentd-etcd.log.pos
6
+ tag etcd
7
+ <parse>
8
+ @type none
9
+ </parse>
10
+ </source>
@@ -0,0 +1,11 @@
1
+ <source>
2
+ @type tail
3
+ @id in_tail_glbc
4
+ multiline_flush_interval 5s
5
+ path /var/log/glbc.log
6
+ pos_file /var/log/fluentd-glbc.log.pos
7
+ tag glbc
8
+ <parse>
9
+ @type kubernetes
10
+ </parse>
11
+ </source>
@@ -0,0 +1,23 @@
1
+ # Example:
2
+ # 2017-02-09T00:15:57.992775796Z AUDIT: id="90c73c7c-97d6-4b65-9461-f94606ff825f" ip="104.132.1.72" method="GET" user="kubecfg" as="<self>" asgroups="<lookup>" namespace="default" uri="/api/v1/namespaces/default/pods"
3
+ # 2017-02-09T00:15:57.993528822Z AUDIT: id="90c73c7c-97d6-4b65-9461-f94606ff825f" response="200"
4
+ <source>
5
+ @type tail
6
+ @id in_tail_kube_apiserver_audit
7
+ multiline_flush_interval 5s
8
+ path /var/log/kubernetes/kube-apiserver-audit.log
9
+ pos_file /var/log/kube-apiserver-audit.log.pos
10
+ tag kube-apiserver-audit
11
+ <parse>
12
+ @type multiline
13
+ format_firstline /^\S+\s+AUDIT:/
14
+ # Fields must be explicitly captured by name to be parsed into the record.
15
+ # Fields may not always be present, and order may change, so this just looks
16
+ # for a list of key="\"quoted\" value" pairs separated by spaces.
17
+ # Unknown fields are ignored.
18
+ # Note: We can't separate query/response lines as format1/format2 because
19
+ # they don't always come one after the other for a given query.
20
+ format1 /^(?<time>\S+) AUDIT:(?: (?:id="(?<id>(?:[^"\\]|\\.)*)"|ip="(?<ip>(?:[^"\\]|\\.)*)"|method="(?<method>(?:[^"\\]|\\.)*)"|user="(?<user>(?:[^"\\]|\\.)*)"|groups="(?<groups>(?:[^"\\]|\\.)*)"|as="(?<as>(?:[^"\\]|\\.)*)"|asgroups="(?<asgroups>(?:[^"\\]|\\.)*)"|namespace="(?<namespace>(?:[^"\\]|\\.)*)"|uri="(?<uri>(?:[^"\\]|\\.)*)"|response="(?<response>(?:[^"\\]|\\.)*)"|\w+="(?:[^"\\]|\\.)*"))*/
21
+ time_format %Y-%m-%dT%T.%L%Z
22
+ </parse>
23
+ </source>
@@ -0,0 +1,11 @@
1
+ <source>
2
+ @type tail
3
+ @id in_tail_kube_apiserver
4
+ multiline_flush_interval 5s
5
+ path /var/log/kube-apiserver.log
6
+ pos_file /var/log/fluentd-kube-apiserver.log.pos
7
+ tag kube-apiserver
8
+ <parse>
9
+ @type kubernetes
10
+ </parse>
11
+ </source>
@@ -0,0 +1,11 @@
1
+ <source>
2
+ @type tail
3
+ @id in_tail_kube_controller_manager
4
+ multiline_flush_interval 5s
5
+ path /var/log/kube-controller-manager.log
6
+ pos_file /var/log/fluentd-kube-controller-manager.log.pos
7
+ tag kube-controller-manager
8
+ <parse>
9
+ @type kubernetes
10
+ </parse>
11
+ </source>
@@ -0,0 +1,11 @@
1
+ <source>
2
+ @type tail
3
+ @id in_tail_kube_proxy
4
+ multiline_flush_interval 5s
5
+ path /var/log/kube-proxy.log
6
+ pos_file /var/log/fluentd-kube-proxy.log.pos
7
+ tag kube-proxy
8
+ <parse>
9
+ @type kubernetes
10
+ </parse>
11
+ </source>
@@ -0,0 +1,11 @@
1
+ <source>
2
+ @type tail
3
+ @id in_tail_kube_scheduler
4
+ multiline_flush_interval 5s
5
+ path /var/log/kube-scheduler.log
6
+ pos_file /var/log/fluentd-kube-scheduler.log.pos
7
+ tag kube-scheduler
8
+ <parse>
9
+ @type kubernetes
10
+ </parse>
11
+ </source>
@@ -0,0 +1,11 @@
1
+ <source>
2
+ @type tail
3
+ @id in_tail_kubelet
4
+ multiline_flush_interval 5s
5
+ path /var/log/kubelet.log
6
+ pos_file /var/log/fluentd-kubelet.log.pos
7
+ tag kubelet
8
+ <parse>
9
+ @type kubernetes
10
+ </parse>
11
+ </source>
@@ -0,0 +1,11 @@
1
+ <source>
2
+ @type tail
3
+ @id in_tail_rescheduler
4
+ multiline_flush_interval 5s
5
+ path /var/log/rescheduler.log
6
+ pos_file /var/log/fluentd-rescheduler.log.pos
7
+ tag rescheduler
8
+ <parse>
9
+ @type kubernetes
10
+ </parse>
11
+ </source>
@@ -0,0 +1,13 @@
1
+
2
+ <source>
3
+ @type tail
4
+ @id in_tail_minion
5
+ path /var/log/salt/minion
6
+ pos_file /var/log/fluentd-salt.pos
7
+ tag salt
8
+ <parse>
9
+ @type regexp
10
+ expression /^(?<time>[^ ]* [^ ,]*)[^\[]*\[[^\]]*\]\[(?<severity>[^ \]]*) *\] (?<message>.*)$/
11
+ time_format %Y-%m-%d %H:%M:%S
12
+ </parse>
13
+ </source>