diff options
author | Jo-Philipp Wich <jo@mein.io> | 2020-02-22 23:32:44 +0100 |
---|---|---|
committer | Jo-Philipp Wich <jo@mein.io> | 2020-02-22 23:32:44 +0100 |
commit | 72da3c4c5509a4fe9d779e03d76a97854022fafe (patch) | |
tree | 522e458f156264443fdfe2a13d52f2a53c3c9f1d /applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions | |
parent | d4a475163e0fd87f5ade7a46b075a119178ae24a (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')
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' + } } } }; |