-
Notifications
You must be signed in to change notification settings - Fork 0
/
default-config.yaml
106 lines (75 loc) · 2.32 KB
/
default-config.yaml
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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
######################################################################
# GENERAL OPTIONS
# Set path to directory containing source and service definitions.
# default: /etc/jsonlogalert.d
#config_dir: DIRECTORY
# Read only these log SOURCE(s).
#sources:
# - SOURCE
# - ...
# Enable only these SERVICE(s) for a log SOURCE.
#services:
# - SERVICE
# - ...
# Be more verbose
#verbose: 1
######################################################################
# TAIL LOG OPTIONS
# Tail systemd journal DIRECTORY.
#journal_dir: DIRECTORY
# Set path of executable to tail systemd journal.
# default: logtail-journal
#tail_journal_bin: FILE
# Tail text log LOGFILE(s).
# A single SOURCE must be specified to know how to parse given files.
#tail_file_paths:
# - LOGFILE
# - ...
# Set path of executable to tail log files.
# default: logtail2
#tail_file_bin: FILE
# Set path of DIRECTORY to save tail offset/cursor state.
# default: /var/lib/misc
#tail_state_dir: DIRECTORY
# Do not update tail offset/cursor.
#tail_dryrun: True
######################################################################
# GENERAL OUTPUT OPTIONS
# Output results to stdout.
#output_stdout: True
# Use FILENAME instead of default output template.
#output_template_file: FILENAME
######################################################################
# FILE OUTPUT OPTIONS
# Output results to files in DIRECTORY.
#output_file_dir: DIRECTORY
# Output results to FILENAME in DIRECTORY when a single SERVICE is specified.
#output_file_name: FILENAME
######################################################################
# SMTP OUTPUT OPTIONS
# Mail server hostname or address.
# default: localhost
#output_smtp_host: HOSTNAME
# Mail server port.
# default: 25
#output_smtp_port: INTEGER
# Mail server uses SSL connection.
#output_smtp_auth_ssl: False
# Mail server uses TLS.
#output_smtp_auth_tls: False
# Mail server authentication username.
#output_smtp_auth_username: USERNAME
# Mail server authentication password.
#output_smtp_auth_password: PASSWORD
# Email recipient address. Required.
#output_smtp_rcpt: EMAIL
# Email sender address.
# default: recipient address
#output_smtp_sender: EMAIL
# Email recipient name.
#output_smtp_rcpt_name: NAME
# Email sender name.
# default: recipient name
#output_smtp_sender_name: NAME
# Email subject line.
#output_smtp_subject: SUBJECT