summaryrefslogtreecommitdiff
path: root/config.json
blob: 204ac18ec011517f8194d6def42feb5a65a23a29 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{
	"comment Interval": "Interval is how large time intervals that the data should be grouped into",
	"interval": "5min",

	"comment Epsilon": "Epsilon is the epsilon value for differential privacy. epsilon < 1 high privacy, 10 < epsilon low privacy. If epsilon is set to 0, differential privacy will not be used.",
	"epsilon": 0,

	"comment Volumes": "The volumes that a packet size can fall into. size is the label given to the volume. The interval of the volumes is [lower,upper).",
	"volumes": [
		{
			"size": "small",
			"upper": 100
		},
		{
			"size": "medium",
			"lower": 100,
			"upper": 200
		},
		{
			"size": "large",
			"lower": 200
		}
	]
}