fluent-plugin-kubernetes_sumologic 2.3.2 → 2.4.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 +4 -4
- data/Dockerfile +1 -4
- data/README.md +1 -1
- data/daemonset/nonrbac/fluentd.yaml +1474 -1
- data/daemonset/rbac/fluentd.yaml +1467 -1
- data/fluent-plugin-kubernetes_sumologic.gemspec +1 -1
- data/lib/fluent/plugin/filter_kubernetes_sumologic.rb +52 -21
- data/test/plugin/test_filter_kubernetes_sumologic.rb +840 -648
- metadata +2 -12
- data/conf.d/file/source.containers.conf +0 -64
- data/conf.d/file/source.docker.conf +0 -20
- data/conf.d/file/source.kubernetes.conf +0 -158
- data/conf.d/forward/.gitignore +0 -1
- data/conf.d/out.sumo.conf +0 -13
- data/conf.d/systemd/source.containers.conf +0 -47
- data/conf.d/systemd/source.systemd.conf +0 -1088
- data/etc/fluent.file.conf +0 -13
- data/etc/fluent.forward.conf +0 -18
- data/etc/fluent.systemd.conf +0 -13
data/etc/fluent.file.conf
DELETED
@@ -1,13 +0,0 @@
|
|
1
|
-
<match containers.**.fluentd**>
|
2
|
-
@type null
|
3
|
-
</match>
|
4
|
-
|
5
|
-
<source>
|
6
|
-
@type monitor_agent
|
7
|
-
bind 0.0.0.0
|
8
|
-
port 24220
|
9
|
-
</source>
|
10
|
-
|
11
|
-
@include /fluentd/conf.d/file/source.*.conf
|
12
|
-
@include /fluentd/conf.d/user/*.conf
|
13
|
-
@include /fluentd/conf.d/out.sumo.conf
|
data/etc/fluent.forward.conf
DELETED
@@ -1,18 +0,0 @@
|
|
1
|
-
## built-in TCP input
|
2
|
-
## $ echo <json> | fluent-cat <tag>
|
3
|
-
<source>
|
4
|
-
@type forward
|
5
|
-
@id forward_input
|
6
|
-
port "#{ENV['FORWARD_INPUT_PORT']}"
|
7
|
-
bind "#{ENV['FORWARD_INPUT_BIND']}"
|
8
|
-
</source>
|
9
|
-
|
10
|
-
<source>
|
11
|
-
@type monitor_agent
|
12
|
-
bind 0.0.0.0
|
13
|
-
port 24220
|
14
|
-
</source>
|
15
|
-
|
16
|
-
@include /fluentd/conf.d/forward/source.*.conf
|
17
|
-
@include /fluentd/conf.d/user/*.conf
|
18
|
-
@include /fluentd/conf.d/out.sumo.conf
|
data/etc/fluent.systemd.conf
DELETED
@@ -1,13 +0,0 @@
|
|
1
|
-
<match containers.**.fluentd**>
|
2
|
-
@type null
|
3
|
-
</match>
|
4
|
-
|
5
|
-
<source>
|
6
|
-
@type monitor_agent
|
7
|
-
bind 0.0.0.0
|
8
|
-
port 24220
|
9
|
-
</source>
|
10
|
-
|
11
|
-
@include /fluentd/conf.d/systemd/source.*.conf
|
12
|
-
@include /fluentd/conf.d/user/*.conf
|
13
|
-
@include /fluentd/conf.d/out.sumo.conf
|