-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathconfig.sample.yaml
More file actions
38 lines (26 loc) · 889 Bytes
/
Copy pathconfig.sample.yaml
File metadata and controls
38 lines (26 loc) · 889 Bytes
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
redis: localhost:6379
# need to set this to the same secret value on agents and API server.
api_key: foobar
# URL of the api server for agents to post to
api_url: http://localhost:8000
api_listen: ':8000'
# alert when filesystems get bigger than this percentage
max_filesystem_percentage: 95
# servers are considered dead of they haven't updated in this many seconds
server_staleness_duration: 300
# process alert loop every this interval
alert_process_interval: 30
# send the "alert ongoing" email once every this interval. -1 to never send ongoing emails
alert_send_email_interval: 300
# allow sending emails
enable_emails: True
# smtp server
email_server: localhost
email_server_port: 25
# From line
email_sender: HealthApp <noreply@yourdomain.com>
# list of recipients for emails
email_recipients:
- you@yourdomain.com
# Don't be verbose in agent logging
hush_logs: True