Newer
Older
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
(
// Directory where to look for '*.ron' files where you can define each drive
include: "/etc/dfim.d/",
logging: {
// how much to log. Mandatory
// all logs less than this priority will be dropped
// Possible values:
// Critical,
// Error,
// Warning,
// Info,
// Debug,
// Trace,
level: Debug,
// output format of the timestamps:
// either "UTC" or "Local"
// Usually It's a very good ide to keep all systems in UTC
time: UTC,
// Note: Terminal output will be overridden
// if you activate syslog after it
// possibilities: StdOut, StdErr
terminal: StdErr,
// Activating syslog will deactivate terminal logging
//syslog: (
// facility: force the reported syslog facility
// possible values:
// Kern
// User
// Mail
// Daemon
// Auth
// Syslog
// Lpr
// News
// Uucp
// Cron
// Authpriv
// Ftp
// Local0
// Local1
// Local2
// Local3
// Local4
// Local5
// Local6
// Local7
//facility: Local0,
// force syslog log level
// this is not the same as chosing the logging level,
// but merely what we tell the syslog server
// Possible values:
// Critical,
// error,
// Earning,
// Info,
// Debug,
// Trace,
//level: Info,
// How to send your logs to syslog:
//dest: (
// You can choose ONE between socket, udp, tcp:
//socket : "/run/syslog.sock",
//udp: (
// hostname_id is mandatory. it is this machine
//hostname_id: "test",
// both ipv4 and ipv6 are supported
//from: "127.0.0.1:1234",
//from: "[::1]:1234",
//to: "127.0.0.1:1234",
//to: "[::1]:1234",
//),
//tcp: (
// hostname_id is mandatory. it is this machine
//hostname_id: "test",
// both ipv4 and ipv6 are supported
//from: "127.0.0.1:1234",
//from: "[::1]:1234",
//to: "127.0.0.1:1234",
//to: "[::1]:1234",
//),
//),
//),
},
)