diff options
author | Jo-Philipp Wich <jow@openwrt.org> | 2008-05-23 19:23:06 +0000 |
---|---|---|
committer | Jo-Philipp Wich <jow@openwrt.org> | 2008-05-23 19:23:06 +0000 |
commit | eaa763cbdb33f292ed13f9b2c2b4b985323f7b5c (patch) | |
tree | 347a61b1277482384ae8fd768bc2f43326f440ec /applications/luci-statistics/src/view/admin_statistics/networkplugins.htm | |
parent | 83a1263e90ab6a45110e0dc883b9ff3576ccd6a4 (diff) |
* ffluci/statistics: port statistics to new controller api, add mysel to NOTICE
Diffstat (limited to 'applications/luci-statistics/src/view/admin_statistics/networkplugins.htm')
-rw-r--r-- | applications/luci-statistics/src/view/admin_statistics/networkplugins.htm | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/applications/luci-statistics/src/view/admin_statistics/networkplugins.htm b/applications/luci-statistics/src/view/admin_statistics/networkplugins.htm new file mode 100644 index 000000000..0c6d7f7ad --- /dev/null +++ b/applications/luci-statistics/src/view/admin_statistics/networkplugins.htm @@ -0,0 +1,18 @@ +<%+header%> + +<h1><%:stat_networkplugins Netzwerkplugins%></h1> + +<p><%:stat_networkplugins_desc Netzwerkplugins sammeln Werte über offene TCP-Verbindung, allgemeines Verkehrsaufkommen +auf verschiedenen Schnittstellen, DNS-Verkehr u.v.m.%></p> + +<p><%:stat_networkplugins_installed Installierte Netzwerkplugins:%> + <ul> + <% for plugin, desc in pairs(plugins) do %> + <% if ffluci.fs.isfile("/usr/lib/collectd/" .. plugin .. ".so") then %> + <li><a href="/cgi-bin/ffluci/admin/statistics/network/<%=plugin%>"><%=desc%></a></li> + <% end %> + <% end %> + </ul> +</p> + +<%+footer%> |