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.