luci-app-statistics: backport 'reorder interface and netlink datasources'
Backport from commit 78c61d6d
the interface and netlink plugin changes.
Signed-off-by: Hannu Nyman <hannu.nyman@iki.fi>
This commit is contained in:
parent
8a9ff2b210
commit
18d9c672c0
2 changed files with 14 additions and 4 deletions
|
@ -66,36 +66,40 @@ function rrdargs( graph, plugin, plugin_instance )
|
|||
options = {
|
||||
-- processed packets (tx DS)
|
||||
if_packets__tx = {
|
||||
weight = 1,
|
||||
overlay = true, -- don't summarize
|
||||
total = true, -- report total amount of bytes
|
||||
color = "00ff00", -- processed tx is green
|
||||
title = "Processed (tx)"
|
||||
title = "Processed (TX)"
|
||||
},
|
||||
|
||||
-- processed packets (rx DS)
|
||||
if_packets__rx = {
|
||||
weight = 2,
|
||||
overlay = true, -- don't summarize
|
||||
flip = true, -- flip rx line
|
||||
total = true, -- report total amount of bytes
|
||||
color = "0000ff", -- processed rx is blue
|
||||
title = "Processed (rx)"
|
||||
title = "Processed (RX)"
|
||||
},
|
||||
|
||||
-- packet errors (tx DS)
|
||||
if_errors__tx = {
|
||||
weight = 0,
|
||||
overlay = true, -- don't summarize
|
||||
total = true, -- report total amount of packets
|
||||
color = "ff5500", -- tx errors are orange
|
||||
title = "Errors (tx)"
|
||||
title = "Errors (TX)"
|
||||
},
|
||||
|
||||
-- packet errors (rx DS)
|
||||
if_errors__rx = {
|
||||
weight = 3,
|
||||
overlay = true, -- don't summarize
|
||||
flip = true, -- flip rx line
|
||||
total = true, -- report total amount of packets
|
||||
color = "ff0000", -- rx errors are red
|
||||
title = "Errors (rx)"
|
||||
title = "Errors (RX)"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -61,6 +61,7 @@ function rrdargs( graph, plugin, plugin_instance )
|
|||
options = {
|
||||
-- processed packets (tx DS)
|
||||
if_packets__tx = {
|
||||
weight = 2,
|
||||
title = "Total (TX)",
|
||||
overlay = true, -- don't summarize
|
||||
total = true, -- report total amount of bytes
|
||||
|
@ -69,6 +70,7 @@ function rrdargs( graph, plugin, plugin_instance )
|
|||
|
||||
-- processed packets (rx DS)
|
||||
if_packets__rx = {
|
||||
weight = 3,
|
||||
title = "Total (RX)",
|
||||
overlay = true, -- don't summarize
|
||||
flip = true, -- flip rx line
|
||||
|
@ -78,6 +80,7 @@ function rrdargs( graph, plugin, plugin_instance )
|
|||
|
||||
-- dropped packets (tx DS)
|
||||
if_dropped__tx = {
|
||||
weight = 1,
|
||||
title = "Dropped (TX)",
|
||||
overlay = true, -- don't summarize
|
||||
total = true, -- report total amount of bytes
|
||||
|
@ -86,6 +89,7 @@ function rrdargs( graph, plugin, plugin_instance )
|
|||
|
||||
-- dropped packets (rx DS)
|
||||
if_dropped__rx = {
|
||||
weight = 4,
|
||||
title = "Dropped (RX)",
|
||||
overlay = true, -- don't summarize
|
||||
flip = true, -- flip rx line
|
||||
|
@ -95,6 +99,7 @@ function rrdargs( graph, plugin, plugin_instance )
|
|||
|
||||
-- packet errors (tx DS)
|
||||
if_errors__tx = {
|
||||
weight = 0,
|
||||
title = "Errors (TX)",
|
||||
overlay = true, -- don't summarize
|
||||
total = true, -- report total amount of packets
|
||||
|
@ -103,6 +108,7 @@ function rrdargs( graph, plugin, plugin_instance )
|
|||
|
||||
-- packet errors (rx DS)
|
||||
if_errors__rx = {
|
||||
weight = 5,
|
||||
title = "Errors (RX)",
|
||||
overlay = true, -- don't summarize
|
||||
flip = true, -- flip rx line
|
||||
|
|
Loading…
Reference in a new issue