-
Notifications
You must be signed in to change notification settings - Fork 248
/
config.js
28 lines (25 loc) · 1001 Bytes
/
config.js
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
checkup.config = {
// How much history to show on the status page. Long durations and
// frequent checks make for slow loading, so be conservative.
// This value is in NANOSECONDS to mirror Go's time package.
"timeframe": 1 * time.Day,
// How often, in seconds, to pull new checks and update the page.
"refresh_interval": 60,
// Configure read-only access to stored checks. This configuration
// depends on your storage provider. Any credentials and other values
// here will be visible to everyone, so use keys with ONLY read access!
"storage": {
// Storage type (fs for local, s3 for AWS S3)
"type": "fs",
// Local checkup server by default, set to github page if
// you're hosting your status page on GitHub.
// e.g. "https://sourcegraph.github.io/checkup/checks/"
"url": "/"
},
// The text to display along the top bar depending on overall status.
"status_text": {
"healthy": "Situation Normal",
"degraded": "Degraded Service",
"down": "Service Disruption"
}
};