Update my email addresses in the license headers
[project/luci.git] / applications / luci-app-statistics / luasrc / statistics / rrdtool / definitions / conntrack.lua
1 -- Copyright 2011 Jo-Philipp Wich <jow@openwrt.org>
2 -- Licensed to the public under the Apache License 2.0.
3
4 module("luci.statistics.rrdtool.definitions.conntrack",package.seeall)
5
6 function rrdargs( graph, plugin, plugin_instance, dtype )
7 return {
8 title = "%H: Conntrack entries",
9 vlabel = "Count",
10 number_format = "%5.0lf",
11 data = {
12 sources = {
13 conntrack = { "value" }
14 },
15 options = {
16 conntrack = {
17 color = "0000ff",
18 title = "Tracked connections"
19 }
20 }
21 }
22 }
23 end