statistics: Add support for entropy stats 452/head
authorHannu Nyman <hannu.nyman@iki.fi>
Thu, 27 Aug 2015 07:19:38 +0000 (10:19 +0300)
committerHannu Nyman <hannu.nyman@iki.fi>
Thu, 27 Aug 2015 07:19:38 +0000 (10:19 +0300)
Add statistics on the available entropy.

Signed-off-by: Hannu Nyman <hannu.nyman@iki.fi>
applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua
applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/entropy.lua [new file with mode: 0644]
applications/luci-app-statistics/luasrc/statistics/rrdtool/entropy.lua [new file with mode: 0644]
applications/luci-app-statistics/root/etc/config/luci_statistics
applications/luci-app-statistics/root/usr/bin/stat-genconfig

index c532b4a..49eab5a 100644 (file)
@@ -30,6 +30,7 @@ function index()
                disk            = _("Disk Usage"),
                dns                     = _("DNS"),
                email           = _("Email"),
+               entropy         = _("Entropy"),
                exec            = _("Exec"),
                interface       = _("Interfaces"),
                iptables        = _("Firewall"),
@@ -53,7 +54,7 @@ function index()
        -- our collectd menu
        local collectd_menu = {
                output  = { "csv", "network", "rrdtool", "unixsock" },
-               system  = { "cpu", "df", "disk", "email", "exec", "irq", "load", "memory", "nut", "processes", "uptime" },
+               system  = { "cpu", "df", "disk", "email", "entropy", "exec", "irq", "load", "memory", "nut", "processes", "uptime" },
                network = { "conntrack", "dns", "interface", "iptables", "netlink", "olsrd", "ping", "splash_leases", "tcpconns", "iwinfo" }
        }
 
diff --git a/applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/entropy.lua b/applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/entropy.lua
new file mode 100644 (file)
index 0000000..d18bf91
--- /dev/null
@@ -0,0 +1,14 @@
+-- Copyright 2015 Hannu Nyman <hannu.nyman@iki.fi>
+-- Licensed to the public under the Apache License 2.0.
+
+m = Map("luci_statistics",
+       translate("Entropy Plugin Configuration"),
+       translate("The entropy plugin collects statistics about the available entropy."))
+
+s = m:section( NamedSection, "collectd_entropy", "luci_statistics" )
+
+enable = s:option( Flag, "enable", translate("Enable this plugin") )
+enable.default = 0
+
+return m
+
diff --git a/applications/luci-app-statistics/luasrc/statistics/rrdtool/entropy.lua b/applications/luci-app-statistics/luasrc/statistics/rrdtool/entropy.lua
new file mode 100644 (file)
index 0000000..3d30a70
--- /dev/null
@@ -0,0 +1,19 @@
+-- Copyright 2015 Hannu Nyman <hannu.nyman@iki.fi>
+-- Licensed to the public under the Apache License 2.0.
+
+module("luci.statistics.rrdtool.definitions.entropy", package.seeall)
+
+function rrdargs( graph, plugin, plugin_instance, dtype )
+
+       return {
+               title = "%H: Available entropy",
+               vlabel = "bits",
+               number_format = "%4.0lf",
+               data = {
+                       types = { "entropy" },
+                       options = { entropy = { title = "Entropy %di" } }
+               }
+       }
+
+end
+
index e39db35..b91b20f 100644 (file)
@@ -45,6 +45,9 @@ config 'statistics' 'collectd_email'
        option 'SocketFile' '/var/run/collectd/email.sock'
        option 'SocketGroup' 'nogroup'
 
+config 'statistics' 'collectd_entropy'
+       option 'enable' '0'
+
 config 'statistics' 'collectd_exec'
        option 'enable' '0'
 
index cb94e28..8acae46 100755 (executable)
@@ -303,6 +303,12 @@ plugins = {
                { }
        },
 
+       entropy = {
+               { },
+               { },
+               { }
+       },
+
        exec    = config_exec,
 
        interface = {