-
Notifications
You must be signed in to change notification settings - Fork 1
/
settings.json
92 lines (92 loc) · 2.08 KB
/
settings.json
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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"pluginsDir": "target/plugins",
"logLevel": "INFO",
"dataDir": "target/data",
"apiPort": 8095,
"plugins": {
"report-plugin": {
"active": true
}
},
"protocols": {
"mysql-01": {
"protocol": "mysql",
"port": 3306,
"login": "root",
"password": "password",
"timeout": 30,
"connectionString": "jdbc:mysql://192.168.56.2:23306/db",
"plugins": {
"mock-plugin": {
"active": false,
"dataDir": "target/mocks"
}
}
},
"postgres-01": {
"protocol": "postgres",
"port": 5432,
"login": "remotelogin",
"password": "remotepassword",
"timeout": 30,
"connectionString": "jdbc:mysql://localhost:3306",
"plugins": {
"mock-plugin": {
"active": false,
"dataDir": "target/mocks"
}
}
},
"mqtt-01": {
"protocol": "mqtt",
"port": 1885,
"login": "remotelogin",
"password": "remotepassword",
"timeout": 30,
"connectionString": "tcp://localhost:1885"
},
"http-01": {
"protocol": "http",
"http": 8085,
"https": 8485,
"proxy": 9999,
"ssl": {
"der": "resource://certificates/ca.der",
"key": "resource://certificates/ca.key",
"cname": "C=US,O=Local Development,CN=local.org",
"hosts": [
"*.google.com",
"www.google.com"
]
},
"plugins": {
"error-plugin": {
"active": false,
"errorCode": 0,
"errorMessage": "ERROR",
"percentage": 0
},
"report-plugin": {
"active": true
},
"replay-plugin": {
"active": false,
"replayId": "replay{timestamp}",
"respectCallDuration": true,
"matchSites": [
"net_core_http",
"net_core_rest"
]
},
"record-plugin": {
"active": false,
"recordSites": []
},
"mock-plugin": {
"active": false,
"dataDir": "target/mocks"
}
}
}
}
}