summaryrefslogtreecommitdiffhomepage
path: root/applications
diff options
context:
space:
mode:
authorJo-Philipp Wich <jow@openwrt.org>2008-05-23 19:23:06 +0000
committerJo-Philipp Wich <jow@openwrt.org>2008-05-23 19:23:06 +0000
commiteaa763cbdb33f292ed13f9b2c2b4b985323f7b5c (patch)
tree347a61b1277482384ae8fd768bc2f43326f440ec /applications
parent83a1263e90ab6a45110e0dc883b9ff3576ccd6a4 (diff)
* ffluci/statistics: port statistics to new controller api, add mysel to NOTICE
Diffstat (limited to 'applications')
-rw-r--r--applications/luci-statistics/src/controller/admin/statistics.lua1
-rw-r--r--applications/luci-statistics/src/controller/luci_statistics/luci_statistics.lua88
-rw-r--r--applications/luci-statistics/src/controller/public/statistics.lua1
-rw-r--r--applications/luci-statistics/src/model/cbi/luci_statistics/collectd.lua (renamed from applications/luci-statistics/src/model/cbi/admin_statistics/index.lua)0
-rw-r--r--applications/luci-statistics/src/model/cbi/luci_statistics/csv.lua (renamed from applications/luci-statistics/src/model/cbi/admin_statistics/csv.lua)0
-rw-r--r--applications/luci-statistics/src/model/cbi/luci_statistics/df.lua (renamed from applications/luci-statistics/src/model/cbi/admin_statistics/df.lua)0
-rw-r--r--applications/luci-statistics/src/model/cbi/luci_statistics/disk.lua (renamed from applications/luci-statistics/src/model/cbi/admin_statistics/disk.lua)0
-rw-r--r--applications/luci-statistics/src/model/cbi/luci_statistics/dns.lua (renamed from applications/luci-statistics/src/model/cbi/admin_statistics/dns.lua)0
-rw-r--r--applications/luci-statistics/src/model/cbi/luci_statistics/email.lua (renamed from applications/luci-statistics/src/model/cbi/admin_statistics/email.lua)0
-rw-r--r--applications/luci-statistics/src/model/cbi/luci_statistics/exec.lua (renamed from applications/luci-statistics/src/model/cbi/admin_statistics/exec.lua)0
-rw-r--r--applications/luci-statistics/src/model/cbi/luci_statistics/interface.lua (renamed from applications/luci-statistics/src/model/cbi/admin_statistics/interface.lua)0
-rw-r--r--applications/luci-statistics/src/model/cbi/luci_statistics/iptables.lua (renamed from applications/luci-statistics/src/model/cbi/admin_statistics/iptables.lua)0
-rw-r--r--applications/luci-statistics/src/model/cbi/luci_statistics/irq.lua (renamed from applications/luci-statistics/src/model/cbi/admin_statistics/irq.lua)0
-rw-r--r--applications/luci-statistics/src/model/cbi/luci_statistics/netlink.lua (renamed from applications/luci-statistics/src/model/cbi/admin_statistics/netlink.lua)0
-rw-r--r--applications/luci-statistics/src/model/cbi/luci_statistics/network.lua (renamed from applications/luci-statistics/src/model/cbi/admin_statistics/network.lua)0
-rw-r--r--applications/luci-statistics/src/model/cbi/luci_statistics/ping.lua (renamed from applications/luci-statistics/src/model/cbi/admin_statistics/ping.lua)0
-rw-r--r--applications/luci-statistics/src/model/cbi/luci_statistics/processes.lua (renamed from applications/luci-statistics/src/model/cbi/admin_statistics/processes.lua)0
-rw-r--r--applications/luci-statistics/src/model/cbi/luci_statistics/rrdtool.lua (renamed from applications/luci-statistics/src/model/cbi/admin_statistics/rrdtool.lua)0
-rw-r--r--applications/luci-statistics/src/model/cbi/luci_statistics/tcpconns.lua (renamed from applications/luci-statistics/src/model/cbi/admin_statistics/tcpconns.lua)0
-rw-r--r--applications/luci-statistics/src/model/cbi/luci_statistics/unixsock.lua (renamed from applications/luci-statistics/src/model/cbi/admin_statistics/unixsock.lua)0
-rw-r--r--applications/luci-statistics/src/model/menu/70luci-statistics.lua31
-rw-r--r--applications/luci-statistics/src/view/admin_statistics/index.htm8
-rw-r--r--applications/luci-statistics/src/view/admin_statistics/networkplugins.htm18
-rw-r--r--applications/luci-statistics/src/view/admin_statistics/outputplugins.htm19
-rw-r--r--applications/luci-statistics/src/view/admin_statistics/systemplugins.htm18
25 files changed, 151 insertions, 33 deletions
diff --git a/applications/luci-statistics/src/controller/admin/statistics.lua b/applications/luci-statistics/src/controller/admin/statistics.lua
deleted file mode 100644
index 3318f70cd..000000000
--- a/applications/luci-statistics/src/controller/admin/statistics.lua
+++ /dev/null
@@ -1 +0,0 @@
-module("ffluci.controller.admin.statistics", package.seeall)
diff --git a/applications/luci-statistics/src/controller/luci_statistics/luci_statistics.lua b/applications/luci-statistics/src/controller/luci_statistics/luci_statistics.lua
new file mode 100644
index 000000000..ad914d80e
--- /dev/null
+++ b/applications/luci-statistics/src/controller/luci_statistics/luci_statistics.lua
@@ -0,0 +1,88 @@
+--[[
+
+ Luci controller for statistics
+ Copyright 2008 Jo-Philipp Wich <xm@leipzig.freifunk.net>
+
+ $Id$
+
+]]--
+
+module("ffluci.controller.luci_statistics.luci_statistics", package.seeall)
+
+fs = require("ffluci.fs")
+tpl = require("ffluci.template")
+
+function _entry( path, ... )
+ if fs.isfile( "/usr/lib/collectd/" .. path[4] .. ".so" ) then
+ entry( path, ... )
+ end
+end
+
+
+function index()
+ entry({"admin", "statistics"}, statistics_index, "Statistiken", 80)
+ entry({"admin", "statistics", "collectd"}, cbi("luci_statistics/collectd"), "Collectd", 10)
+
+ entry({"admin", "statistics", "output"}, statistics_outputplugins, "Ausgabeplugins", 20)
+ _entry({"admin", "statistics", "output", "rrdtool"}, cbi("luci_statistics/rrdtool"), "RRDTool", 10)
+ _entry({"admin", "statistics", "output", "network"}, cbi("luci_statistics/network"), "Netzwerk", 20)
+ _entry({"admin", "statistics", "output", "unixsock"}, cbi("luci_statistics/unixsock"), "Unix Socket", 30)
+ _entry({"admin", "statistics", "output", "csv"}, cbi("luci_statistics/csv"), "CSV", 40)
+
+ entry({"admin", "statistics", "system"}, statistics_systemplugins, "Systemplugins", 30)
+ _entry({"admin", "statistics", "system", "exec"}, cbi("luci_statistics/exec"), "Exec", 10)
+ _entry({"admin", "statistics", "system", "email"}, cbi("luci_statistics/email"), "E-Mail", 20)
+ _entry({"admin", "statistics", "system", "df"}, cbi("luci_statistics/df"), "Speicherplatz", 30)
+ _entry({"admin", "statistics", "system", "disk"}, cbi("luci_statistics/disk"), "Datenträger", 40)
+ _entry({"admin", "statistics", "system", "irq"}, cbi("luci_statistics/irq"), "Interrupts", 50)
+ _entry({"admin", "statistics", "system", "processes"}, cbi("luci_statistics/processes"), "Prozesse", 60)
+
+ entry({"admin", "statistics", "network"}, statistics_networkplugins, "Netzwerkplugins", 40)
+ _entry({"admin", "statistics", "network", "interface"}, cbi("luci_statistics/interface"), "Schnittstellen", 10)
+ _entry({"admin", "statistics", "network", "netlink"}, cbi("luci_statistics/netlink"), "Netlink", 20)
+ _entry({"admin", "statistics", "network", "iptables"}, cbi("luci_statistics/iptables"), "Firewall", 30)
+ _entry({"admin", "statistics", "network", "tcpconns"}, cbi("luci_statistics/tcpconns"), "Verbindungen", 40)
+ _entry({"admin", "statistics", "network", "ping"}, cbi("luci_statistics/ping"), "Ping", 50)
+ _entry({"admin", "statistics", "network", "dns"}, cbi("luci_statistics/dns"), "DNS", 60)
+end
+
+
+function statistics_index()
+ tpl.render("admin_statistics/index")
+end
+
+function statistics_outputplugins()
+ plugins = {
+ rrdtool="RRDTool",
+ network="Netzwerk",
+ unixsock="Unix Socket",
+ csv="CSV"
+ }
+
+ tpl.render("admin_statistics/outputplugins", {plugins=plugins})
+end
+
+function statistics_systemplugins()
+ plugins = {
+ exec="Exec",
+ email="E-Mail",
+ disk="Datenträger",
+ irq="Interrupts",
+ processes="Prozesse"
+ }
+
+ tpl.render("admin_statistics/systemplugins", {plugins=plugins})
+end
+
+function statistics_networkplugins()
+ plugins = {
+ interface="Schnittstellen",
+ netlink="Netlink",
+ iptables="Firewall",
+ tcpconns="Verbindungen",
+ ping="Ping",
+ dns="DNS"
+ }
+
+ tpl.render("admin_statistics/networkplugins", {plugins=plugins})
+end
diff --git a/applications/luci-statistics/src/controller/public/statistics.lua b/applications/luci-statistics/src/controller/public/statistics.lua
deleted file mode 100644
index d7ed1e327..000000000
--- a/applications/luci-statistics/src/controller/public/statistics.lua
+++ /dev/null
@@ -1 +0,0 @@
-module("ffluci.controller.public.statistics", package.seeall)
diff --git a/applications/luci-statistics/src/model/cbi/admin_statistics/index.lua b/applications/luci-statistics/src/model/cbi/luci_statistics/collectd.lua
index 21ff457e3..21ff457e3 100644
--- a/applications/luci-statistics/src/model/cbi/admin_statistics/index.lua
+++ b/applications/luci-statistics/src/model/cbi/luci_statistics/collectd.lua
diff --git a/applications/luci-statistics/src/model/cbi/admin_statistics/csv.lua b/applications/luci-statistics/src/model/cbi/luci_statistics/csv.lua
index e1f2c351d..e1f2c351d 100644
--- a/applications/luci-statistics/src/model/cbi/admin_statistics/csv.lua
+++ b/applications/luci-statistics/src/model/cbi/luci_statistics/csv.lua
diff --git a/applications/luci-statistics/src/model/cbi/admin_statistics/df.lua b/applications/luci-statistics/src/model/cbi/luci_statistics/df.lua
index 6e35afcb3..6e35afcb3 100644
--- a/applications/luci-statistics/src/model/cbi/admin_statistics/df.lua
+++ b/applications/luci-statistics/src/model/cbi/luci_statistics/df.lua
diff --git a/applications/luci-statistics/src/model/cbi/admin_statistics/disk.lua b/applications/luci-statistics/src/model/cbi/luci_statistics/disk.lua
index 587091fbd..587091fbd 100644
--- a/applications/luci-statistics/src/model/cbi/admin_statistics/disk.lua
+++ b/applications/luci-statistics/src/model/cbi/luci_statistics/disk.lua
diff --git a/applications/luci-statistics/src/model/cbi/admin_statistics/dns.lua b/applications/luci-statistics/src/model/cbi/luci_statistics/dns.lua
index ed71a55a3..ed71a55a3 100644
--- a/applications/luci-statistics/src/model/cbi/admin_statistics/dns.lua
+++ b/applications/luci-statistics/src/model/cbi/luci_statistics/dns.lua
diff --git a/applications/luci-statistics/src/model/cbi/admin_statistics/email.lua b/applications/luci-statistics/src/model/cbi/luci_statistics/email.lua
index 7b259e829..7b259e829 100644
--- a/applications/luci-statistics/src/model/cbi/admin_statistics/email.lua
+++ b/applications/luci-statistics/src/model/cbi/luci_statistics/email.lua
diff --git a/applications/luci-statistics/src/model/cbi/admin_statistics/exec.lua b/applications/luci-statistics/src/model/cbi/luci_statistics/exec.lua
index d1fe0f0db..d1fe0f0db 100644
--- a/applications/luci-statistics/src/model/cbi/admin_statistics/exec.lua
+++ b/applications/luci-statistics/src/model/cbi/luci_statistics/exec.lua
diff --git a/applications/luci-statistics/src/model/cbi/admin_statistics/interface.lua b/applications/luci-statistics/src/model/cbi/luci_statistics/interface.lua
index 5acd4e93c..5acd4e93c 100644
--- a/applications/luci-statistics/src/model/cbi/admin_statistics/interface.lua
+++ b/applications/luci-statistics/src/model/cbi/luci_statistics/interface.lua
diff --git a/applications/luci-statistics/src/model/cbi/admin_statistics/iptables.lua b/applications/luci-statistics/src/model/cbi/luci_statistics/iptables.lua
index 475729589..475729589 100644
--- a/applications/luci-statistics/src/model/cbi/admin_statistics/iptables.lua
+++ b/applications/luci-statistics/src/model/cbi/luci_statistics/iptables.lua
diff --git a/applications/luci-statistics/src/model/cbi/admin_statistics/irq.lua b/applications/luci-statistics/src/model/cbi/luci_statistics/irq.lua
index 2d15e5232..2d15e5232 100644
--- a/applications/luci-statistics/src/model/cbi/admin_statistics/irq.lua
+++ b/applications/luci-statistics/src/model/cbi/luci_statistics/irq.lua
diff --git a/applications/luci-statistics/src/model/cbi/admin_statistics/netlink.lua b/applications/luci-statistics/src/model/cbi/luci_statistics/netlink.lua
index 478560f97..478560f97 100644
--- a/applications/luci-statistics/src/model/cbi/admin_statistics/netlink.lua
+++ b/applications/luci-statistics/src/model/cbi/luci_statistics/netlink.lua
diff --git a/applications/luci-statistics/src/model/cbi/admin_statistics/network.lua b/applications/luci-statistics/src/model/cbi/luci_statistics/network.lua
index ab3c6303c..ab3c6303c 100644
--- a/applications/luci-statistics/src/model/cbi/admin_statistics/network.lua
+++ b/applications/luci-statistics/src/model/cbi/luci_statistics/network.lua
diff --git a/applications/luci-statistics/src/model/cbi/admin_statistics/ping.lua b/applications/luci-statistics/src/model/cbi/luci_statistics/ping.lua
index 334a0300d..334a0300d 100644
--- a/applications/luci-statistics/src/model/cbi/admin_statistics/ping.lua
+++ b/applications/luci-statistics/src/model/cbi/luci_statistics/ping.lua
diff --git a/applications/luci-statistics/src/model/cbi/admin_statistics/processes.lua b/applications/luci-statistics/src/model/cbi/luci_statistics/processes.lua
index 354cecaf1..354cecaf1 100644
--- a/applications/luci-statistics/src/model/cbi/admin_statistics/processes.lua
+++ b/applications/luci-statistics/src/model/cbi/luci_statistics/processes.lua
diff --git a/applications/luci-statistics/src/model/cbi/admin_statistics/rrdtool.lua b/applications/luci-statistics/src/model/cbi/luci_statistics/rrdtool.lua
index 89adf52a7..89adf52a7 100644
--- a/applications/luci-statistics/src/model/cbi/admin_statistics/rrdtool.lua
+++ b/applications/luci-statistics/src/model/cbi/luci_statistics/rrdtool.lua
diff --git a/applications/luci-statistics/src/model/cbi/admin_statistics/tcpconns.lua b/applications/luci-statistics/src/model/cbi/luci_statistics/tcpconns.lua
index 079befac5..079befac5 100644
--- a/applications/luci-statistics/src/model/cbi/admin_statistics/tcpconns.lua
+++ b/applications/luci-statistics/src/model/cbi/luci_statistics/tcpconns.lua
diff --git a/applications/luci-statistics/src/model/cbi/admin_statistics/unixsock.lua b/applications/luci-statistics/src/model/cbi/luci_statistics/unixsock.lua
index dcedd381b..dcedd381b 100644
--- a/applications/luci-statistics/src/model/cbi/admin_statistics/unixsock.lua
+++ b/applications/luci-statistics/src/model/cbi/luci_statistics/unixsock.lua
diff --git a/applications/luci-statistics/src/model/menu/70luci-statistics.lua b/applications/luci-statistics/src/model/menu/70luci-statistics.lua
deleted file mode 100644
index e53a0a0d4..000000000
--- a/applications/luci-statistics/src/model/menu/70luci-statistics.lua
+++ /dev/null
@@ -1,31 +0,0 @@
-add( "admin", "statistics", "Statistiken", 70 )
---act( "apache", "Apache" )
---act( "apcups", "Apcups" )
---act( "ascent", "Ascent" )
---act( "cpufreq", "Cpufreq" )
-act( "csv", "CSV" )
-act( "df", "Speicher" )
-act( "disk", "Festplatte" )
-act( "dns", "DNS" )
-act( "email", "E-Mail" )
-act( "exec", "Exec" )
-act( "interface", "Schnittstellen" )
-act( "iptables", "Firewall" )
-act( "irq", "Interrupts" )
-act( "logfile", "Protokolldateien" )
-act( "netlink", "Netlink" )
-act( "network", "Netzwerk" )
---act( "nginx", "nginx Server" )
---act( "ntpd", "NTP Server" )
-act( "ping", "Ping" )
---act( "powerdns", "Powerdns Server" )
-act( "processes", "Prozesse" )
-act( "rrdtool", "RRDTool" )
---act( "sensors", "Sensoren" )
---act( "snmp", "SNMP Datenquellen" )
---act( "syslog", "Systemlog" )
---act( "tail", "Dateiverfolgung" )
---act( "teamspeak2", "TeamSpeak 2" )
-act( "tcpconns", "TCP Verbindungen" )
-act( "unixsock", "UNIX Socket" )
---act( "vmem", "Vmem" )
diff --git a/applications/luci-statistics/src/view/admin_statistics/index.htm b/applications/luci-statistics/src/view/admin_statistics/index.htm
new file mode 100644
index 000000000..2c1befa50
--- /dev/null
+++ b/applications/luci-statistics/src/view/admin_statistics/index.htm
@@ -0,0 +1,8 @@
+<%+header%>
+
+<h1><%:stat Statistiken%></h1>
+
+<p><%:stat_desc Die Statistiken bauen auf <a href="http://collectd.org/index.shtml">Collectd</a> auf und nutzen
+<a href="http://oss.oetiker.ch/rrdtool/">RRD Tool</a> um Graphen aus den erfassten Daten zu rendern.%></p>
+
+<%+footer%>
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%>
diff --git a/applications/luci-statistics/src/view/admin_statistics/outputplugins.htm b/applications/luci-statistics/src/view/admin_statistics/outputplugins.htm
new file mode 100644
index 000000000..ed8651407
--- /dev/null
+++ b/applications/luci-statistics/src/view/admin_statistics/outputplugins.htm
@@ -0,0 +1,19 @@
+<%+header%>
+
+<h1><%:stat_outputplugins Ausgabeplugins%></h1>
+
+<p><%:stat_outputplugins_desc Ausgabeplugins stellen verschiedene Möglichkeiten zur Speicherung
+der Daten bereit. Es können auch mehrere Plugins gleichzeitig aktiviert werden um beispielsweise
+die gesammelten Werte in RRD-Datenbanken zu sichern und zusätzlich über das Netzwerk zu versenden.%></p>
+
+<p><%:stat_outputplugins_installed Installierte Ausgabeplugins:%>
+ <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/output/<%=plugin%>"><%=desc%></a></li>
+ <% end %>
+ <% end %>
+ </ul>
+</p>
+
+<%+footer%>
diff --git a/applications/luci-statistics/src/view/admin_statistics/systemplugins.htm b/applications/luci-statistics/src/view/admin_statistics/systemplugins.htm
new file mode 100644
index 000000000..cbb469a1f
--- /dev/null
+++ b/applications/luci-statistics/src/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 ffluci.fs.isfile("/usr/lib/collectd/" .. plugin .. ".so") then %>
+ <li><a href="/cgi-bin/ffluci/admin/statistics/system/<%=plugin%>"><%=desc%></a></li>
+ <% end %>
+ <% end %>
+ </ul>
+</p>
+
+<%+footer%>