From 5e4be8f848dc5de6c30c1e9f9165296bcaed1dd6 Mon Sep 17 00:00:00 2001 From: David Karlsson <35727626+dvdksn@users.noreply.github.com> Date: Thu, 30 Nov 2023 13:14:56 +0100 Subject: [PATCH] fix: missing lang tag for fluentd config examples Signed-off-by: David Karlsson <35727626+dvdksn@users.noreply.github.com> --- content/config/containers/logging/fluentd.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/content/config/containers/logging/fluentd.md b/content/config/containers/logging/fluentd.md index b606e9a825..579733c4ff 100644 --- a/content/config/containers/logging/fluentd.md +++ b/content/config/containers/logging/fluentd.md @@ -150,7 +150,7 @@ aggregate store. 1. Write a configuration file (`test.conf`) to dump input logs: - ```none + ```text @type forward @@ -158,16 +158,16 @@ aggregate store. @type stdout - ```none + ``` 2. Launch Fluentd container with this configuration file: - ```none + ```text $ docker run -it -p 24224:24224 -v /path/to/conf/test.conf:/fluentd/etc/test.conf -e FLUENTD_CONF=test.conf fluent/fluentd:latest ``` 3. Start one or more containers with the `fluentd` logging driver: - ```none + ```text $ docker run --log-driver=fluentd your/application ```