diff options
Diffstat (limited to 'applications/luci-statistics/luasrc/view/admin_statistics/systemplugins.htm')
-rw-r--r-- | applications/luci-statistics/luasrc/view/admin_statistics/systemplugins.htm | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/applications/luci-statistics/luasrc/view/admin_statistics/systemplugins.htm b/applications/luci-statistics/luasrc/view/admin_statistics/systemplugins.htm new file mode 100644 index 0000000000..2a32bf5ca9 --- /dev/null +++ b/applications/luci-statistics/luasrc/view/admin_statistics/systemplugins.htm @@ -0,0 +1,18 @@ +<%+header%> + +<h1><%:stat_systemplugins Systemplugins%></h1> + +<p><%:stat_systemplugins_desc Systemplugins sammeln Werte über den aktuellen Systemzustand und den Ressourcenverbrauch +auf dem Gerät.%></p> + +<p><%:stat_systemplugins_installed Installierte Systemplugins:%> + <ul> + <% for plugin, desc in pairs(plugins) do %> + <% if luci.fs.isfile("/usr/lib/collectd/" .. plugin .. ".so") then %> + <li><a href="/cgi-bin/luci/admin/statistics/system/<%=plugin%>"><%=desc%></a></li> + <% end %> + <% end %> + </ul> +</p> + +<%+footer%> |