You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
WITH_ALL | bool | Enable all features available | off
24
+
WITH_IN_XBEE | bool | Enable XBee support (input) | off
25
+
WITH_DEBUG | bool | Include debug symbols when building targets | off
26
+
WITHOUT_BIN | bool | Do not build the fluent-bit executable | off
27
27
28
28
In order to active one of these features, you need to set a boolean value. As an example if we would like to build _Fluent-Bit_ with _XBee_ support we should do:
29
29
30
30
```bash
31
31
$ cd build/
32
-
$ cmake -DWITH_XBEE=1 ..
32
+
$ cmake -DWITH_IN_XBEE=1 ..
33
33
$ make
34
34
```
35
35
@@ -46,11 +46,11 @@ Once the tool have been compiled, a binary file called _Fluent-Bit_ will be foun
46
46
| CPU | cpu | gather CPU usage between snapshots of one second. It support multiple cores |
47
47
| Memory | mem | usage of system memory |
48
48
| Kernel Ring Buffer | kmsg | read Linux Kernel messages, same behavior as the __dmesg__ command line program |
49
-
| XBee | xbee | listen for incoming messages over a Xbee device |
49
+
| XBee | xbee | listen for incoming messages over a Xbee device |
| Fluentd | fluentd://host:port| flush content to a [Fluentd](http://fluentd.org) service. On the [Fluentd](http://fluentd.org) side, it requires an __in_forward__.|
56
56
| TreasureData | td | flush data collected to [TreasureData](http://treasuredata.com) service (cloud analytics platform) |
0 commit comments