diff options
author | Jo-Philipp Wich <jo@mein.io> | 2020-02-13 20:45:26 +0100 |
---|---|---|
committer | Jo-Philipp Wich <jo@mein.io> | 2020-02-13 20:45:26 +0100 |
commit | 9680fdea9e2e38bfafe0d97967925dd9fc836a05 (patch) | |
tree | ccc5e30e098eab84c4eaf2da8bda97dbfd5a17df /applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/splash_leases.lua | |
parent | 1d47f0c1a913ccbcba86061daa20e1e336d7b559 (diff) |
luci-app-statistics: convert graph rendering to client side js
This conversion requires cgi-io >= version 17 and uhttpd version >= 2020-02-12
to function properly.
Signed-off-by: Jo-Philipp Wich <jo@mein.io>
Diffstat (limited to 'applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/splash_leases.lua')
-rw-r--r-- | applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/splash_leases.lua | 30 |
1 files changed, 0 insertions, 30 deletions
diff --git a/applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/splash_leases.lua b/applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/splash_leases.lua deleted file mode 100644 index 5af998cfb..000000000 --- a/applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/splash_leases.lua +++ /dev/null @@ -1,30 +0,0 @@ --- Copyright 2013 Freifunk Augsburg / Michael Wendland <michael@michiwend.com> --- Licensed to the public under the Apache License 2.0. - -module("luci.statistics.rrdtool.definitions.splash_leases", package.seeall) - -function item() - return luci.i18n.translate("Splash Leases") -end - -function rrdargs( graph, plugin, plugin_instance, dtype ) - - return { - title = "%H: Splash Leases", - vlabel = "Active Clients", - y_min = "0", - number_format = "%5.1lf", - data = { - sources = { - splash_leases = { "leased", "whitelisted", "blacklisted" } - }, - - options = { - splash_leases__leased = { color = "00CC00", title = "Leased", overlay = false }, - splash_leases__whitelisted = { color = "0000FF", title = "Whitelisted", overlay = false }, - splash_leases__blacklisted = { color = "FF0000", title = "Blacklisted", overlay = false } - } - } - } - -end |