Welcome to mirror list, hosted at ThFree Co, Russian Federation.

luci-mod-status.json « menu.d « luci « share « usr « root « luci-mod-status « modules - github.com/openwrt/luci.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e8eee643d5eb13a4a88b818875aed384ff78d56c (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
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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
{
	"admin/status/overview": {
		"title": "Overview",
		"order": 1,
		"action": {
			"type": "template",
			"path": "admin_status/index"
		},
		"depends": {
			"acl": [ "luci-mod-status-index" ]
		}
	},

	"admin/status/iptables": {
		"title": "Firewall",
		"order": 2,
		"action": {
			"type": "view",
			"path": "status/iptables"
		},
		"depends": {
			"acl": [ "luci-mod-status-firewall" ]
		}
	},

	"admin/status/routes": {
		"title": "Routes",
		"order": 3,
		"action": {
			"type": "view",
			"path": "status/routes"
		},
		"depends": {
			"acl": [ "luci-mod-status-routes" ]
		}
	},

	"admin/status/syslog": {
		"title": "System Log",
		"order": 4,
		"action": {
			"type": "view",
			"path": "status/syslog"
		},
		"depends": {
			"acl": [ "luci-mod-status-logs" ]
		}
	},

	"admin/status/dmesg": {
		"title": "Kernel Log",
		"order": 5,
		"action": {
			"type": "view",
			"path": "status/dmesg"
		},
		"depends": {
			"acl": [ "luci-mod-status-logs" ]
		}
	},

	"admin/status/processes": {
		"title": "Processes",
		"order": 6,
		"action": {
			"type": "view",
			"path": "status/processes"
		},
		"depends": {
			"acl": [ "luci-mod-status-processes" ]
		}
	},

	"admin/status/realtime": {
		"title": "Realtime Graphs",
		"order": 7,
		"action": {
			"type": "alias",
			"path": "admin/status/realtime/load"
		},
		"depends": {
			"acl": [ "luci-mod-status-realtime" ]
		}
	},

	"admin/status/realtime/load": {
		"title": "Load",
		"order": 1,
		"action": {
			"type": "view",
			"path": "status/load"
		}
	},

	"admin/status/realtime/bandwidth": {
		"title": "Traffic",
		"order": 2,
		"action": {
			"type": "view",
			"path": "status/bandwidth"
		}
	},

	"admin/status/realtime/wireless": {
		"title": "Wireless",
		"order": 3,
		"action": {
			"type": "view",
			"path": "status/wireless"
		},
		"depends": {
			"uci": { "wireless": { "@wifi-device": true } }
		}
	},

	"admin/status/realtime/connections": {
		"title": "Connections",
		"order": 4,
		"action": {
			"type": "view",
			"path": "status/connections"
		}
	}
}