We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ee35bd1 commit 80f4ffdCopy full SHA for 80f4ffd
swarm/logging/config/stdout.conf
@@ -0,0 +1,9 @@
1
+<source>
2
+ type forward
3
+ port 24224
4
+ bind 0.0.0.0
5
+</source>
6
+
7
+<match **>
8
+ type stdout
9
+</match>
swarm/logging/docker-stack.yml
@@ -0,0 +1,17 @@
+version: "3.4"
+services:
+ fluentd:
+ image: fluent/fluentd:v1.1.0
+ ports:
+ - 24224:24224
+ configs:
+ - source: fluentd_config
10
+ target: /fluentd/etc/stdout.conf
11
+ mode: 0444
12
+ environment:
13
+ - FLUENTD_CONF=stdout.conf
14
15
+configs:
16
+ fluentd_config:
17
+ file: config/stdout.conf
0 commit comments