summaryrefslogtreecommitdiffhomepage
path: root/applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions
diff options
context:
space:
mode:
authorJo-Philipp Wich <jo@mein.io>2020-02-22 23:32:44 +0100
committerJo-Philipp Wich <jo@mein.io>2020-02-22 23:32:44 +0100
commit72da3c4c5509a4fe9d779e03d76a97854022fafe (patch)
tree522e458f156264443fdfe2a13d52f2a53c3c9f1d /applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions
parentd4a475163e0fd87f5ade7a46b075a119178ae24a (diff)
luci-app-statistics: rearrange graph display
- Add a per-plugin overview tab that contains the (non-detail) graphs of each plugin instance, similar to the old Lua based implementation - Numerically order plugin instances starting with numbers - Avoid multiple renderings of the same graphs - Fix legend of tcpconns graphs - Move cpufreq distribution and transition charts to detail tabs Signed-off-by: Jo-Philipp Wich <jo@mein.io>
Diffstat (limited to 'applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions')
-rw-r--r--applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/cpufreq.js2
-rw-r--r--applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/tcpconns.js5
2 files changed, 7 insertions, 0 deletions
diff --git a/applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/cpufreq.js b/applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/cpufreq.js
index c12260ea9d..6f4d52deb2 100644
--- a/applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/cpufreq.js
+++ b/applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/cpufreq.js
@@ -22,6 +22,7 @@ return L.Class.extend({
if (uci.get("luci_statistics", "collectd_cpufreq", "ExtraItems")) {
var transitions = {
+ detail: true,
title: "%H: Frequency transitions - core %pi",
alt_autoscale: true,
vlabel: "Transitions",
@@ -35,6 +36,7 @@ return L.Class.extend({
};
var percentage = {
+ detail: true,
title: "%H: Frequency distribution - core %pi",
alt_autoscale: true,
vlabel: "Percent",
diff --git a/applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/tcpconns.js b/applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/tcpconns.js
index f2a2d7c222..4ecd532fa0 100644
--- a/applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/tcpconns.js
+++ b/applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/tcpconns.js
@@ -21,6 +21,11 @@ return L.Class.extend({
options: {
load__ESTABLISHED: { title: "%di", noarea: true }
}
+ },
+ options: {
+ tcp_connections__value: {
+ title: '%di'
+ }
}
}
};