From 9680fdea9e2e38bfafe0d97967925dd9fc836a05 Mon Sep 17 00:00:00 2001 From: Jo-Philipp Wich Date: Thu, 13 Feb 2020 20:45:26 +0100 Subject: 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 --- .../luasrc/statistics/rrdtool/definitions/load.lua | 43 ---------------------- 1 file changed, 43 deletions(-) delete mode 100644 applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/load.lua (limited to 'applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/load.lua') 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 2caf6a0b1c..0000000000 --- a/applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/load.lua +++ /dev/null @@ -1,43 +0,0 @@ --- Copyright 2008 Freifunk Leipzig / Jo-Philipp Wich --- 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 -- cgit v1.2.3