From 49941b23f5b5060a0905bb0a3abca4dff428f0b8 Mon Sep 17 00:00:00 2001 From: Takahiro YAMASHITA Date: Sat, 2 Jul 2016 22:37:41 +0900 Subject: [PATCH 1/2] installation: update options and plugins Signed-off-by: Takahiro YAMASHITA --- installation/build_install.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/installation/build_install.md b/installation/build_install.md index db3d9cfcc..f1e09001c 100644 --- a/installation/build_install.md +++ b/installation/build_install.md @@ -81,6 +81,7 @@ Fluent Bit provides certain options to CMake that can be enabled or disabled whe | FLB_WITHOUT_SHARED_LIB | Do not build shared library | No | | FLB_VALGRIND | Enable Valgrind support | No | | FLB_TRACE | Enable trace mode" | No | +| FLB_MTRACE | Enable mtrace support | No | ### Input Plugins @@ -99,6 +100,7 @@ available: | [FLB_IN_STDIN](../input/stdin.md) | Enable Standard input plugin | On | | [FLB_IN_MQTT](../input/mqtt.md) | Enable MQTT input plugin | No | | [FLB_IN_XBEE](../input/xbee.md) | Enable Xbee input plugin | No | +| [FLB_IN_FORWARD](../input/forward.md) | Enable Forward input plugin | On | ### Output Plugins @@ -107,7 +109,8 @@ The _output plugins_ gives the capacity to flush the information to some externa | option | description | default | |------------------|--------------------------------------|----------| | [FLB_OUT_ES](../output/elasticsearch.md) | Enable [Elastic Search](http://www.elastic.co) output plugin | On | -| [FLB_OUT_FLUENTD](../output/fluentd.md) | Enable [Fluentd](http://www.fluentd.org) output plugin | On | +| [FLB_OUT_FORWARD](../output/forward.md) | Enable [Fluentd](http://www.fluentd.org) output plugin | On | | [FLB_OUT_NATS](../output/nats.md) | Enable [NATS](http://www.nats.io) output plugin | On | | [FLB_OUT_STDOUT](../output/stdout.md) | Enable STDOUT output plugin | On | +| [FLB_OUT_HTTP](../output/http.md) | Enable HTTP output plugin | On | | [FLB_OUT_TD](../output/td.md) | Enable [Treasure Data](http://www.treasuredata.com) output plugin | On | From a17dfa86d97a046798180fa5851248e8a683bc5a Mon Sep 17 00:00:00 2001 From: Takahiro YAMASHITA Date: Sat, 2 Jul 2016 22:44:13 +0900 Subject: [PATCH 2/2] output: remove extra cell Signed-off-by: Takahiro YAMASHITA --- output/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/output/README.md b/output/README.md index 0b2d5febb..9a270d7dd 100644 --- a/output/README.md +++ b/output/README.md @@ -5,7 +5,7 @@ The _output plugins_ defines where [Fluent Bit](http://fluentbit.io) should flus | name | title | description | |---------------------------|--------------------|-----------------| | [forward](forward.md) | Forward | Fluentd forward protocol. | -| [http](http.md) | HTTP| | Flush records to an HTTP end point. | +| [http](http.md) | HTTP | Flush records to an HTTP end point. | |[stdout](stdout.md) | Standard Output | Flush records to the standard output.| | [td](td.md) | [Treasure Data](http://www.treasuredata.com) | Flush records to the [Treasure Data](http://www.treasuredata.com) cloud service for analytics.| | [es](elasticsearch.md) | Elasticsearch | flush records to a Elasticsearch server. |