-
Notifications
You must be signed in to change notification settings - Fork 1
/
rsca.toml
59 lines (48 loc) · 939 Bytes
/
rsca.toml
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
[general]
tags=["darwin"]
registration-interval="10s"
[default]
timeout="5s"
name-format="uppercase"
[nagios]
command-file="testdata/test.cmd"
[admin]
server="127.0.0.1:15888"
cert-dir="artifacts/certs"
[client]
server="127.0.0.1:15888"
cert-dir="artifacts/certs"
[server]
listen="0.0.0.0:15888"
cert-dir="artifacts/certs"
state-store="artifacts/rsca-state.db"
[check.HOST_CHECK]
name="HOST"
type="host"
period="15s"
command="/usr/bin/true"
[check.SERVICE_OK]
name="OK"
type="service"
period="5s"
command="testdata/check_ok.sh"
[check.SERVICE_WARNING]
name="WARNING"
type="service"
period="5s"
command="testdata/check_warning.sh"
[check.SERVICE_ERROR]
name="ERROR"
type="service"
period="5s"
command="testdata/check_error.sh"
[check.SERVICE_UNKNOWN]
name="UNKNOWN"
type="service"
period="5s"
command="testdata/check_unknown.sh"
[check.SERVICE_TIMEOUT]
name="TIMEOUT"
type="service"
period="5s"
command="testdata/check_sleep.sh"