blob: a978ed242c98c6b19852094ed2e8b8e0d6955e24 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
|
[SERVICE]
# Flush
# =====
# Set an interval of seconds before to flush records to a destination
Flush 5
# Daemon
# ======
# Instruct Fluent Bit to run in foreground or background mode.
Daemon Off
# Log_Level
# =========
# Set the verbosity level of the service, values can be:
#
# - error
# - warning
# - info
# - debug
# - trace
#
# By default 'info' is set, that means it includes 'error' and 'warning'.
Log_Level trace
# XBee Input
# ==========
# This configuration file specify the information to be used
# when gathering data from XBee input plugin. All key fields
# in the 'XBEE' section are mandatory.
[INPUT]
Name xbee
Tag xbee
# File
# ====
# Filename of serial port. e.g. /dev/ttyS0, /dev/ttyAMA0
File /dev/ttyUSB0
# Baudrate
# ========
# Specify the bitrate to communicate using the port.
Baudrate 9600
[OUTPUT]
Name stdout
Match *
|