From 3ad65987d0f72ba51bcc8bcb6267c810f975bf7a Mon Sep 17 00:00:00 2001 From: Shizuo Fujita Date: Sun, 26 Jul 2026 15:38:17 +0900 Subject: [PATCH] Move the dummy article to input/ `plugins/input/dummy.md` was the last file left under `plugins/`. Every other article moved out of that directory long ago, but this one stayed behind and was never added to SUMMARY.md, so GitBook does not publish it and `v1.0/articles/in_dummy` returns 404. `in_dummy` was renamed `in_sample` in v1.11.12, but the plugin itself is still shipped, so readers who land on the old URL should still get the article that explains the rename instead of a 404. * Move it to `input/dummy.md`, next to the other input plugin articles, and add it to SUMMARY.md right after `sample`. * Point the `v1.0/articles/in_dummy` redirect at the new path. * Fix its link to the `sample` article. `/input/sample.md` is a root-absolute path and does not resolve. * Match the conventions of the surrounding articles: `# dummy` as the title, like `input/sample.md` and the rest, and the current one-line footer. This was the only file in the repository still carrying the old hard-wrapped footer with a horizontal rule. It is intentionally left out of the plugin list in `input/README.md`, since `dummy` is a deprecated alias rather than a plugin to choose; `monitor_agent` is listed in SUMMARY.md but not there either. Co-Authored-By: Claude Opus 5 Signed-off-by: Shizuo Fujita --- .gitbook.yaml | 2 +- SUMMARY.md | 1 + input/dummy.md | 16 ++++++++++++++++ plugins/input/dummy.md | 24 ------------------------ 4 files changed, 18 insertions(+), 25 deletions(-) create mode 100644 input/dummy.md delete mode 100644 plugins/input/dummy.md diff --git a/.gitbook.yaml b/.gitbook.yaml index 79b073d5..44e8b959 100644 --- a/.gitbook.yaml +++ b/.gitbook.yaml @@ -84,7 +84,7 @@ redirects: v1.0/articles/in_exec: plugins/input/exec.md v1.0/articles/in_syslog: plugins/input/syslog.md v1.0/articles/in_unix: plugins/input/unix.md - v1.0/articles/in_dummy: plugins/input/dummy.md + v1.0/articles/in_dummy: input/dummy.md # Plugin/Output v1.0/articles/output-plugin-overview: plugins/output/README.md diff --git a/SUMMARY.md b/SUMMARY.md index 47574758..128ba119 100644 --- a/SUMMARY.md +++ b/SUMMARY.md @@ -85,6 +85,7 @@ * [syslog](input/syslog.md) * [exec](input/exec.md) * [sample](input/sample.md) + * [dummy](input/dummy.md) * [monitor\_agent](input/monitor_agent.md) * [windows\_eventlog](input/windows_eventlog.md) * [Output Plugins](output/README.md) diff --git a/input/dummy.md b/input/dummy.md new file mode 100644 index 00000000..ae505140 --- /dev/null +++ b/input/dummy.md @@ -0,0 +1,16 @@ +# dummy + +`in_dummy` has been renamed `in_sample` since Fluentd v1.11.12. See [`sample` input plugin](sample.md) article for more details. + +You can keep using the following configuration in v1: + +```text + + @type dummy + dummy {"hello":"world"} + +``` + +Fluentd v2 will remove this plugin name. + +If this article is incorrect or outdated, or omits critical information, please [let us know](https://github.com/fluent/fluentd-docs-gitbook/issues?state=open). [Fluentd](http://www.fluentd.org/) is an open-source project under [Cloud Native Computing Foundation \(CNCF\)](https://cncf.io/). All components are available under the Apache 2 License. diff --git a/plugins/input/dummy.md b/plugins/input/dummy.md deleted file mode 100644 index 6752eb0f..00000000 --- a/plugins/input/dummy.md +++ /dev/null @@ -1,24 +0,0 @@ -# `dummy` Input Plugin - -`in_dummy` has been renamed `in_sample` since Fluentd v1.11.12. -See [`sample` input plugin](/input/sample.md) article for more details. - -You can keep using the following configuration in v1: - -```text - - @type dummy - dummy {"hello":"world"} - -``` - -Fluentd v2 will remove this plugin name. - - ------------------------------------------------------------------------- - -If this article is incorrect or outdated, or omits critical information, please -[let us know](https://github.com/fluent/fluentd-docs-gitbook/issues?state=open). -[Fluentd](http://www.fluentd.org/) is an open-source project under [Cloud Native -Computing Foundation (CNCF)](https://cncf.io/). All components are available -under the Apache 2 License.