summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--applications/luci-statistics/luasrc/statistics/rrdtool/definitions/conntrack.lua2
-rw-r--r--applications/luci-statistics/luasrc/statistics/rrdtool/definitions/interface.lua8
-rw-r--r--applications/luci-statistics/luasrc/statistics/rrdtool/definitions/ping.lua2
3 files changed, 6 insertions, 6 deletions
diff --git a/applications/luci-statistics/luasrc/statistics/rrdtool/definitions/conntrack.lua b/applications/luci-statistics/luasrc/statistics/rrdtool/definitions/conntrack.lua
index 449a4e214..0da546c0b 100644
--- a/applications/luci-statistics/luasrc/statistics/rrdtool/definitions/conntrack.lua
+++ b/applications/luci-statistics/luasrc/statistics/rrdtool/definitions/conntrack.lua
@@ -22,7 +22,7 @@ function rrdargs( graph, plugin, plugin_instance, dtype )
number_format = "%5.0lf",
data = {
sources = {
- conntrack = { "entropy" }
+ conntrack = { "value" }
},
options = {
conntrack = {
diff --git a/applications/luci-statistics/luasrc/statistics/rrdtool/definitions/interface.lua b/applications/luci-statistics/luasrc/statistics/rrdtool/definitions/interface.lua
index 9b698d263..a6f3b5c6a 100644
--- a/applications/luci-statistics/luasrc/statistics/rrdtool/definitions/interface.lua
+++ b/applications/luci-statistics/luasrc/statistics/rrdtool/definitions/interface.lua
@@ -22,9 +22,9 @@ function rrdargs( graph, plugin, plugin_instance )
--
local traffic = {
- -- draw this diagram for each data instance
+ -- draw this diagram for each plugin instance
per_instance = true,
- title = "%H: Transfer on %di",
+ title = "%H: Transfer on %pi",
vlabel = "Bytes/s",
-- diagram data description
@@ -58,9 +58,9 @@ function rrdargs( graph, plugin, plugin_instance )
--
local packets = {
- -- draw this diagram for each data instance
+ -- draw this diagram for each plugin instance
per_instance = true,
- title = "%H: Packets on %di",
+ title = "%H: Packets on %pi",
vlabel = "Packets/s",
-- diagram data description
diff --git a/applications/luci-statistics/luasrc/statistics/rrdtool/definitions/ping.lua b/applications/luci-statistics/luasrc/statistics/rrdtool/definitions/ping.lua
index 5707f3aba..bdffc8599 100644
--- a/applications/luci-statistics/luasrc/statistics/rrdtool/definitions/ping.lua
+++ b/applications/luci-statistics/luasrc/statistics/rrdtool/definitions/ping.lua
@@ -20,7 +20,7 @@ function rrdargs( graph, plugin, plugin_instance, dtype )
-- Ping roundtrip time
{ title = "%H: ICMP Round Trip Time", vlabel = "ms",
number_format = "%5.1lf ms", data = {
- sources = { ping = { "ping" } },
+ sources = { ping = { "value" } },
options = { ping__ping = { noarea = true, title = "%di" } }
} },