diff options
Diffstat (limited to 'applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/conntrack.lua')
-rw-r--r-- | applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/conntrack.lua | 32 |
1 files changed, 0 insertions, 32 deletions
diff --git a/applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/conntrack.lua b/applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/conntrack.lua deleted file mode 100644 index d99dab0f0..000000000 --- a/applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/conntrack.lua +++ /dev/null @@ -1,32 +0,0 @@ --- Copyright 2011 Jo-Philipp Wich <jow@openwrt.org> --- Licensed to the public under the Apache License 2.0. - -module("luci.statistics.rrdtool.definitions.conntrack",package.seeall) - -function item() - return luci.i18n.translate("Conntrack") -end - -function rrdargs( graph, plugin, plugin_instance, dtype ) - - return { - title = "%H: Conntrack entries", - vlabel = "Count", - number_format = "%5.0lf", - data = { - -- collectd 5.5+: specify "" to exclude "max" instance - instances = { - conntrack = { "" } - }, - sources = { - conntrack = { "value" } - }, - options = { - conntrack = { - color = "0000ff", - title = "Tracked connections" - } - } - } - } -end |