-
Notifications
You must be signed in to change notification settings - Fork 46
/
Copy pathcfg.example.json
50 lines (50 loc) · 870 Bytes
/
cfg.example.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
{
"debug": true,
"logfile": "windows.log",
"hostname": "",
"ip": "",
"iis":{
"enabled": false,
"websites": [
"Default Web Site"
]
},
"mssql":{
"enabled": false,
"addr":"127.0.0.1",
"port":1433,
"username":"sa",
"password":"123456",
"encrypt":"disable",
"instance": [
"test"
]
},
"heartbeat": {
"enabled": true,
"addr": "127.0.0.1:6030",
"interval": 60,
"timeout": 1000
},
"transfer": {
"enabled": true,
"addrs": [
"127.0.0.1:8433"
],
"interval": 60,
"timeout": 1000
},
"http": {
"enabled": true,
"listen": ":1988",
"backdoor": false
},
"collector": {
"ifacePrefix": ["网络"]
},
"default_tags": {
},
"ignore": {
"cpu.busy": true
}
}