-
Notifications
You must be signed in to change notification settings - Fork 0
/
.sparklarc
59 lines (44 loc) · 1.74 KB
/
.sparklarc
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
{
// Output debug level log entries?
"debug": false,
// The host address that the server should listen on.
"host": "127.0.0.1",
// The port that the server should listen on.
"port": 9000,
// The JWT secret to use to sign and verify JWT tokens.
// If `null` then a random secret will be generated.
"jwtSecret": null,
// The class of sessions created.
"sessionType": "docker",
// The total number of CPUs that can be allocated to sessions.
// `null` = use the number of CPUs on the machine.
"cpuTotal": null,
// The total number amount of memory (Gib) that can be allocated to sessions.
// `null` = use the total amount of memory on the machine.
"memoryTotal": null,
// Interval in seconds between checks
// for expired sessions.
"expiryInterval": 15,
// Number of seconds to provide clients with
// a warning prior to reaching maximum session duration.
"durationWarning": 600,
// Number of seconds to provide clients with
// a warning prior to a reaching session timeout.
"timeoutWarning": 60,
// Interval in seconds between checks
// for stale sessions.
"staleInterval": 60,
// Number of seconds that a stopped session is
// considered stale and will be removed from the list of sessions.
"stalePeriod": 3600,
// Interval in seconds for collecting system statistics
"statsInterval": 60,
// The port to serve Prometheus compatible metrics on.
// Set to `0` to turn off Prometheus exporting.
"statsPrometheus": 9464,
// The Sentry DSN (Data Source Name) to record warning and error log entries.
// Set to `null` to not send logs to Sentry.
"logsSentry": "https://[email protected]/1818023",
// The name of the peer swarm to join.
"peerSwarm": "sparkla"
}