Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion installation/build_install.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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

Expand All @@ -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 |
2 changes: 1 addition & 1 deletion output/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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. |
Expand Down