applications/luci-statistics: rework handling of index and detail graphs

Instead of coding the display logic into the graph models, simply annotate
graph models with .detail = true/false and let the renderer decide which
to pick when.
This commit is contained in:
Jo-Philipp Wich 2011-12-05 14:09:24 +00:00
parent 239672e76b
commit e046455389
7 changed files with 143 additions and 146 deletions

View file

@ -513,7 +513,7 @@ function Graph.render( self, plugin, plugin_instance, is_index )
-- get diagram definitions -- get diagram definitions
for i, opts in ipairs( self:_forcelol( def.rrdargs( self, plugin, plugin_instance, nil, is_index ) ) ) do for i, opts in ipairs( self:_forcelol( def.rrdargs( self, plugin, plugin_instance, nil, is_index ) ) ) do
if not is_index or not opts.detail then
_images[i] = { } _images[i] = { }
-- get diagram definition instances -- get diagram definition instances
@ -521,7 +521,6 @@ function Graph.render( self, plugin, plugin_instance, is_index )
-- render all diagrams -- render all diagrams
for j, def in ipairs( diagrams ) do for j, def in ipairs( diagrams ) do
-- remember image -- remember image
_images[i][j] = def[1] _images[i][j] = def[1]
@ -529,6 +528,7 @@ function Graph.render( self, plugin, plugin_instance, is_index )
self:_rrdtool( def ) self:_rrdtool( def )
end end
end end
end
-- remember images - XXX: fixme (will cause probs with asymmetric data) -- remember images - XXX: fixme (will cause probs with asymmetric data)
for y = 1, #_images[1] do for y = 1, #_images[1] do

View file

@ -49,6 +49,8 @@ function rrdargs( graph, plugin, plugin_instance, dtype )
vlabel = "Bytes/s", vlabel = "Bytes/s",
number_format = "%5.1lf%sB/s", number_format = "%5.1lf%sB/s",
detail = true,
data = { data = {
types = { "disk_octets" }, types = { "disk_octets" },
sources = { sources = {

View file

@ -53,7 +53,7 @@ function rrdargs( graph, plugin, plugin_instance )
-- --
local packets = { local packets = {
title = "%H: Netlink - Packets on %pi", title = "%H: Netlink - Packets on %pi",
vlabel = "Packets/s", vlabel = "Packets/s", detail = true,
-- diagram data description -- diagram data description
data = { data = {
@ -123,7 +123,7 @@ function rrdargs( graph, plugin, plugin_instance )
-- --
local multicast = { local multicast = {
title = "%H: Netlink - Multicast on %pi", title = "%H: Netlink - Multicast on %pi",
vlabel = "Packets/s", vlabel = "Packets/s", detail = true,
-- diagram data description -- diagram data description
data = { data = {
@ -147,7 +147,7 @@ function rrdargs( graph, plugin, plugin_instance )
-- --
local collisions = { local collisions = {
title = "%H: Netlink - Collisions on %pi", title = "%H: Netlink - Collisions on %pi",
vlabel = "Collisions/s", vlabel = "Collisions/s", detail = true,
-- diagram data description -- diagram data description
data = { data = {
@ -171,7 +171,7 @@ function rrdargs( graph, plugin, plugin_instance )
-- --
local errors = { local errors = {
title = "%H: Netlink - Errors on %pi", title = "%H: Netlink - Errors on %pi",
vlabel = "Errors/s", vlabel = "Errors/s", detail = true,
-- diagram data description -- diagram data description
data = { data = {

View file

@ -15,8 +15,7 @@ module("luci.statistics.rrdtool.definitions.olsrd", package.seeall)
local tree = luci.statistics.datatree.Instance() local tree = luci.statistics.datatree.Instance()
function rrdargs( graph, plugin, plugin_instance, dtype, is_index ) function rrdargs( graph, plugin, plugin_instance, dtype )
local g = { } local g = { }
if plugin_instance == "routes" then if plugin_instance == "routes" then
@ -35,9 +34,8 @@ function rrdargs( graph, plugin, plugin_instance, dtype, is_index )
} }
} }
if not is_index then
g[#g+1] = { g[#g+1] = {
title = "%H: Average route ETX", vlabel = "ETX", title = "%H: Average route ETX", vlabel = "ETX", detail = true,
number_format = "%5.1lf",data = { number_format = "%5.1lf",data = {
instances = { "average" }, -- falls es irgendwann mal welche pro ip gibt, wie bei links, dann werden die hier excludiert instances = { "average" }, -- falls es irgendwann mal welche pro ip gibt, wie bei links, dann werden die hier excludiert
types = { "route_etx" }, types = { "route_etx" },
@ -50,7 +48,7 @@ function rrdargs( graph, plugin, plugin_instance, dtype, is_index )
} }
g[#g+1] = { g[#g+1] = {
title = "%H: Average route metric", vlabel = "metric", title = "%H: Average route metric", vlabel = "metric", detail = true,
number_format = "%5.1lf", data = { number_format = "%5.1lf", data = {
instances = { "average" }, -- falls es irgendwann mal welche pro ip gibt, wie bei links, dann werden die hier excludiert instances = { "average" }, -- falls es irgendwann mal welche pro ip gibt, wie bei links, dann werden die hier excludiert
types = { "route_metric" }, types = { "route_metric" },
@ -61,7 +59,6 @@ function rrdargs( graph, plugin, plugin_instance, dtype, is_index )
} }
} }
} }
end
elseif plugin_instance == "links" then elseif plugin_instance == "links" then
@ -80,7 +77,6 @@ function rrdargs( graph, plugin, plugin_instance, dtype, is_index )
} }
} }
if not is_index then
local instances = tree:data_instances(plugin, plugin_instance, "signal_quality") local instances = tree:data_instances(plugin, plugin_instance, "signal_quality")
table.sort(instances) table.sort(instances)
@ -93,7 +89,8 @@ function rrdargs( graph, plugin, plugin_instance, dtype, is_index )
g[#g+1] = { g[#g+1] = {
title = "%H: Signal Quality" .. " (" .. (host or "avg") ..")", vlabel = "ETX", title = "%H: Signal Quality" .. " (" .. (host or "avg") ..")", vlabel = "ETX",
number_format = "%5.2lf", data = { number_format = "%5.2lf", detail = true,
data = {
types = { "signal_quality" }, types = { "signal_quality" },
instances = { instances = {
@ -114,7 +111,6 @@ function rrdargs( graph, plugin, plugin_instance, dtype, is_index )
} }
} }
end end
end
elseif plugin_instance == "topology" then elseif plugin_instance == "topology" then
@ -124,7 +120,7 @@ function rrdargs( graph, plugin, plugin_instance, dtype, is_index )
instances = { "" }, instances = { "" },
types = { "links" }, types = { "links" },
options = { options = {
links = { -- or: links__value is aber egal weils eh nur eines davon gibt links = {
color = "0000ff", color = "0000ff",
title = "Total number of links" title = "Total number of links"
} }
@ -132,10 +128,10 @@ function rrdargs( graph, plugin, plugin_instance, dtype, is_index )
} }
} }
if not is_index then
g[#g+1] = { g[#g+1] = {
title= "%H: Average signal quality", vlabel = "n", title= "%H: Average signal quality", vlabel = "n",
number_format = "%5.2lf", data = { number_format = "%5.2lf", detail = true,
data = {
instances = { "average" }, -- exclude possible per-ip stuff instances = { "average" }, -- exclude possible per-ip stuff
types = { "signal_quality" }, types = { "signal_quality" },
options = { options = {
@ -147,7 +143,6 @@ function rrdargs( graph, plugin, plugin_instance, dtype, is_index )
} }
} }
end end
end
return g return g
end end

View file

@ -15,7 +15,7 @@ $Id: ping.lua 6810 2011-01-29 03:33:48Z jow $
module("luci.statistics.rrdtool.definitions.ping", package.seeall) module("luci.statistics.rrdtool.definitions.ping", package.seeall)
function rrdargs( graph, plugin, plugin_instance, dtype, is_index ) function rrdargs( graph, plugin, plugin_instance, dtype )
return { return {
-- Ping roundtrip time -- Ping roundtrip time
{ title = "%H: ICMP Round Trip Time", vlabel = "ms", { title = "%H: ICMP Round Trip Time", vlabel = "ms",

View file

@ -15,10 +15,10 @@ $Id$
module("luci.statistics.rrdtool.definitions.processes", package.seeall) module("luci.statistics.rrdtool.definitions.processes", package.seeall)
function rrdargs( graph, plugin, plugin_instance, dtype, is_index ) function rrdargs( graph, plugin, plugin_instance, dtype )
if is_index then
return { return {
{
title = "%H: Processes", title = "%H: Processes",
vlabel = "Processes/s", vlabel = "Processes/s",
data = { data = {
@ -37,9 +37,8 @@ function rrdargs( graph, plugin, plugin_instance, dtype, is_index )
ps_state_zombies = { color = "ff0000" } ps_state_zombies = { color = "ff0000" }
} }
} }
} },
else
return {
{ {
title = "%H: CPU time used by %pi", title = "%H: CPU time used by %pi",
vlabel = "Jiffies", vlabel = "Jiffies",
@ -65,6 +64,7 @@ function rrdargs( graph, plugin, plugin_instance, dtype, is_index )
{ {
title = "%H: Threads and processes belonging to %pi", title = "%H: Threads and processes belonging to %pi",
vlabel = "Count", vlabel = "Count",
detail = true,
data = { data = {
sources = { sources = {
ps_count = { "threads", "processes" } ps_count = { "threads", "processes" }
@ -80,6 +80,7 @@ function rrdargs( graph, plugin, plugin_instance, dtype, is_index )
{ {
title = "%H: Page faults in %pi", title = "%H: Page faults in %pi",
vlabel = "Pagefaults", vlabel = "Pagefaults",
detail = true,
data = { data = {
sources = { sources = {
ps_pagefaults = { "minflt", "majflt" } ps_pagefaults = { "minflt", "majflt" }
@ -95,6 +96,7 @@ function rrdargs( graph, plugin, plugin_instance, dtype, is_index )
{ {
title = "%H: Virtual memory size of %pi", title = "%H: Virtual memory size of %pi",
vlabel = "Bytes", vlabel = "Bytes",
detail = true,
number_format = "%5.1lf%sB", number_format = "%5.1lf%sB",
data = { data = {
types = { "ps_rss" }, types = { "ps_rss" },
@ -106,4 +108,3 @@ function rrdargs( graph, plugin, plugin_instance, dtype, is_index )
} }
} }
end end
end

View file

@ -28,9 +28,8 @@ function rrdargs( graph, plugin, plugin_instance, dtype )
"LAST_ACK", "TIME_WAIT", "CLOSING", "CLOSE_WAIT", "LAST_ACK", "TIME_WAIT", "CLOSING", "CLOSE_WAIT",
"CLOSED", "FIN_WAIT1", "FIN_WAIT2" "CLOSED", "FIN_WAIT1", "FIN_WAIT2"
}, },
options = { for k, v in (tcp_connections) do options = {
v = { title = "%di", noarea = true } load__ESTABLISHED = { title = "%di", noarea = true }
end
} }
} }
} }