blob: dcedea6b892e05f353b3e03763f1279b2cc3013d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
<%+header%>
<h1><%:stat_systemplugins System plugins%></h1>
<p><%:stat_systemplugins_desc System plugins collecting values about system state and ressource usage on the device.:%>
<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/system/<%=plugin%>"><%=desc%></a></li>
<% end %>
<% end %>
</ul>
</p>
<%+footer%>
|