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/load.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/load.lua')
-rw-r--r-- | applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/load.lua | 43 |
1 files changed, 0 insertions, 43 deletions
diff --git a/applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/load.lua b/applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/load.lua deleted file mode 100644 index 2caf6a0b1..000000000 --- a/applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/load.lua +++ /dev/null @@ -1,43 +0,0 @@ --- Copyright 2008 Freifunk Leipzig / Jo-Philipp Wich <jow@openwrt.org> --- Licensed to the public under the Apache License 2.0. - -module("luci.statistics.rrdtool.definitions.load", package.seeall) - -function item() - return luci.i18n.translate("System Load") -end - -function rrdargs( graph, plugin, plugin_instance, dtype ) - - return { - title = "%H: Load", vlabel = "Load", - y_min = "0", - units_exponent = "0", - number_format = "%5.2lf", data = { - sources = { - load = { "shortterm", "midterm", "longterm" } - }, - - options = { - load__shortterm = { - color = "ff0000", - title = "1 minute", - noarea = true, - weight = 3 - }, - load__midterm = { - color = "ff6600", - title = "5 minutes", - overlay = true, - weight = 1 - }, - load__longterm = { - color = "ffaa00", - title = "15 minutes", - overlay = true, - weight = 2 - } - } - } - } -end |