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

	"comment Limit": "Limit is how many rows that is processed at a time for the program. If limit <= 0, there will be no limit",
	"limit": 100,

	"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 dataSource": "dataSource is from where the program should read and process data. Currently only mydql and stdin is supported.",
	"dataSource": "stdin",

	"DBConn": "",
	"DBName": "test",
	"rawTable": "test_raw",
	"cleanTable": "test_clean",
	"DBUser": "flowcleaner",
	"DBPass": "nil"
}