luci/applications/luci-statistics/luasrc/view/admin_statistics/networkplugins.htm
Steven Barth 2bf012a40a * themes/fledermaus: Register on install
* applications/luci-statistics: Fixed wrong paths in templates
2008-06-09 08:48:10 +00:00

18 lines
556 B
HTML

<%+header%>
<h1><%:stat_networkplugins Network plugins%></h1>
<p><%:stat_networkplugins_desc Network plugins are used to collect information
about open tcp connections, interface traffic, iptables rules etc.%></p>
<p><%:stat_networkplugins_installed Installed network plugins:%>
<ul>
<% for plugin, desc in pairs(plugins) do %>
<% if luci.fs.isfile("/usr/lib/collectd/" .. plugin .. ".so") then %>
<li><a href="<%=controller%>/admin/statistics/collectd/network/<%=plugin%>"><%=desc%></a></li>
<% end %>
<% end %>
</ul>
</p>
<%+footer%>