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
# -----------------------------------------------
# statui :: Global Settings
# -----------------------------------------------
# All endpoints will use these values by default
# Default interval (in seconds) to ping all endpoints
= 3
# you shouldn't ping your APIs so often this is just for the demo
# Default timeout (in seconds) for any single request
= 5
# -----------------------------------------------
# statui :: Endpoints
# -----------------------------------------------
# Each [[endpoints]] block is a new site to monitor.
[[]]
# A simple endpoint. It will use the default interval and timeout.
= "Google"
= "https://www.google.com"
[[]]
# A more complex endpoint that overrides global settings.
= "Rust Language"
= "https://www.rust-lang.org"
# -- Optional per-endpoint settings --
# Uncomment these to override the globals for "Rust Language" only
= 10 # Ping this specific API only every 10 seconds
# timeout = 10 # Give it a longer 10-second timeout
= "HEAD" # Use HTTP HEAD instead of GET to save bandwidth
# skip_cert_verification = true
[[]]
# Failing endpoint (Connection Error)
= "Broken API"
= "https://www.my-non-existent-api.monkey/api"
[[]]
= "docs.rs"
= "https://www.docs.rs"
[[]]
= "BadSSL Self Signed"
= "https://self-signed.badssl.com/"
= true