Skip to content

Commit a0eca38

Browse files
nokute78edsiper
authored andcommitted
conf: add a conf file about in_disk
Signed-off-by: Takahiro YAMASHITA <[email protected]>
1 parent 6362f4f commit a0eca38

File tree

1 file changed

+61
-0
lines changed

1 file changed

+61
-0
lines changed

conf/in_disk.conf

+61
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,61 @@
1+
[SERVICE]
2+
# Flush
3+
# =====
4+
# Set an interval of seconds before to flush records to a destination
5+
Flush 5
6+
7+
# Daemon
8+
# ======
9+
# Instruct Fluent Bit to run in foreground or background mode.
10+
Daemon Off
11+
12+
# Log_Level
13+
# =========
14+
# Set the verbosity level of the service, values can be:
15+
#
16+
# - error
17+
# - warning
18+
# - info
19+
# - debug
20+
# - trace
21+
#
22+
# By default 'info' is set, that means it includes 'error' and 'warning'.
23+
Log_Level info
24+
25+
# HTTP Monitoring Server
26+
# ======================
27+
#
28+
# HTTP_Monitor: enable/disable the HTTP Server to monitor
29+
# Fluent Bit internals.
30+
# HTTP_Port : specify the TCP port of the HTTP Server
31+
HTTP_Monitor Off
32+
HTTP_Port 2020
33+
34+
# Head Input
35+
# ==========
36+
[INPUT]
37+
Name disk
38+
Tag disk.all
39+
40+
# Dev_Name
41+
# ====
42+
# To limit the target disk/partition.
43+
# If not set, the plugin gathers from all of disks and partitions.
44+
# Dev_Name sda
45+
46+
# Total Interval
47+
# = Interval Sec + ( Interval Nsec / 1000 / 1000 / 1000 )
48+
#
49+
# Interval Sec
50+
# ====
51+
# Read interval (sec) Default: 1
52+
Interval_Sec 1
53+
54+
# Interval NSec
55+
# ====
56+
# Read interval (nsec) Default: 0
57+
Interval_NSec 0
58+
59+
[OUTPUT]
60+
Name stdout
61+
Match disk.*

0 commit comments

Comments
 (0)