* luc/statistics: add file/license headers
[project/luci.git] / applications / luci-statistics / luasrc / statistics / rrdtool / definitions / tcpconns / tcp_connections.lua
1 --[[
2
3 Luci statistics - tcpconns plugin diagram definition
4 (c) 2008 Freifunk Leipzig / Jo-Philipp Wich <xm@leipzig.freifunk.net>
5
6 Licensed under the Apache License, Version 2.0 (the "License");
7 you may not use this file except in compliance with the License.
8 You may obtain a copy of the License at
9
10 http://www.apache.org/licenses/LICENSE-2.0
11
12 $Id$
13
14 ]]--
15
16 module("luci.statistics.rrdtool.definitions.tcpconns.tcp_connections", package.seeall)
17
18 function rrdargs( graph, plugin, plugin_instance, dtype )
19
20 return {
21 data = {
22 instances = {
23 tcp_connections = {
24 "SYN_SENT", "SYN_RECV", "LISTEN", "ESTABLISHED",
25 "LAST_ACK", "TIME_WAIT", "CLOSING", "CLOSE_WAIT",
26 "CLOSED", "FIN_WAIT1", "FIN_WAIT2"
27 }
28 }
29 }
30 }
31 end