-
Notifications
You must be signed in to change notification settings - Fork 1
/
config.yml
69 lines (57 loc) · 2.03 KB
/
config.yml
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
60
61
62
63
64
65
66
67
68
69
###############################################################################
## fixture settings
###############################################################################
fixtures:
accounts:
# the number of fake accounts to seed
n: 20
courses:
# the maximum number of courses to seed per account
max: 100
users:
# the maximum number of users to seed per account
max: 50
###############################################################################
## jsonrpc settings
###############################################################################
http:
# sets the upper bound for simulated network latency
max_latency: 200
# jsonrpc server port
port: "8080"
###############################################################################
## in memory repository settings
###############################################################################
inmem:
# the number of attempts to keep in memory, afterwhich
# older attempts will be truncated
size: 10000
###############################################################################
## event diversity settings
###############################################################################
lifecycle:
# the number of active attempts at any given time
n: 100
odds:
# the threshold over which events will have type FOO
foo: 0.99
# the threshold over which events will be reset events
reset: 0.99
steps:
# the minimum/maximum number of progress events in any attempt lifecycle
min: 3
max: 65
###############################################################################
## log settings
###############################################################################
log:
format: text
level: info
###############################################################################
## activity stream settings
###############################################################################
seed:
# how frequently events are published
interval: 1s
# the maximum number of events in any given batch
max: 20