-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmonitor_config.sample.json
More file actions
67 lines (67 loc) · 1.37 KB
/
Copy pathmonitor_config.sample.json
File metadata and controls
67 lines (67 loc) · 1.37 KB
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
{
"xray": {
"host": "192.168.1.100",
"user": "root",
"password": "",
"ssh_key": "C:\\Users\\username\\.ssh\\id_rsa",
"config_path": "/etc/xray/config.json",
"log_path": "/var/log/xray/access.log",
"service_name": "xray"
},
"monitoring": {
"local_log_dir": "L:\\_scripts\\System-path\\xray-monitoring\\logs",
"update_interval_sec": 1,
"max_lines": 1000,
"tail_lines": 50
},
"filters": [
{
"id": 1,
"name": "Direct routes",
"enabled": true,
"source_ip": "192.168.1.10",
"destination": "",
"route": "direct",
"color": "#00FF00",
"beep": false
},
{
"id": 2,
"name": "Proxy routes - Server 1",
"enabled": true,
"source_ip": "192.168.1.10",
"destination": "",
"route": "proxy-1",
"color": "#FFFF00",
"beep": false
},
{
"id": 3,
"name": "Proxy routes - Server 2",
"enabled": false,
"source_ip": "192.168.1.10",
"destination": "",
"route": "proxy-2",
"color": "#FF00FF",
"beep": true
}
],
"auto_restart": {
"enabled": false,
"interval_hours": 2
},
"widget": {
"topmost": true,
"opacity": 0.95,
"position": {
"x": 100,
"y": 100
},
"size": {
"width": 900,
"height": 600
},
"font_size": 9,
"font_family": "Consolas"
}
}