From: Hannu Nyman Date: Wed, 31 Jul 2019 21:49:05 +0000 (+0300) Subject: luci-app-statistics: cpufreq: enhance additional data X-Git-Url: http://git.lede-project.org./?a=commitdiff_plain;h=05cad423ce2582a2828f35291c825f8ce7eb38a1;p=project%2Fluci.git luci-app-statistics: cpufreq: enhance additional data * Use the new data series sorting and coloring options to display the frequencies in order and with matching coloring in different cores. * Fix the y-axis text and legend in the frequency usage graph Signed-off-by: Hannu Nyman --- diff --git a/applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpufreq.lua b/applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpufreq.lua index 40a6955e53..d3596637b2 100644 --- a/applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpufreq.lua +++ b/applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpufreq.lua @@ -42,12 +42,13 @@ function rrdargs( graph, plugin, plugin_instance, dtype ) local percentage = { title = "%H: Frequency distribution - core %pi", alt_autoscale = true, - vlabel = "Frequency (Hz)", + vlabel = "Percent", number_format = "%5.2lf%%", + ordercolor = true, data = { types = { "percent" }, options = { - percent = { title = "Frequency %di" }, + percent = { title = "%di Hz", negweight = true }, } } }