2015-01-16 22:46:42 +00:00
|
|
|
-- Copyright 2008 Freifunk Leipzig / Jo-Philipp Wich <jow@openwrt.org>
|
2015-01-16 22:38:38 +00:00
|
|
|
-- Licensed to the public under the Apache License 2.0.
|
2008-06-03 23:15:16 +00:00
|
|
|
|
2011-11-28 03:26:59 +00:00
|
|
|
module("luci.statistics.rrdtool.definitions.tcpconns", package.seeall)
|
2008-05-25 02:37:39 +00:00
|
|
|
|
2019-03-07 13:50:17 +00:00
|
|
|
function item()
|
|
|
|
return luci.i18n.translate("TCP Connections")
|
|
|
|
end
|
|
|
|
|
2008-05-28 17:51:15 +00:00
|
|
|
function rrdargs( graph, plugin, plugin_instance, dtype )
|
2019-01-21 13:05:57 +00:00
|
|
|
|
2008-05-28 17:51:15 +00:00
|
|
|
return {
|
2011-11-28 03:26:59 +00:00
|
|
|
title = "%H: TCP connections to port %pi",
|
|
|
|
vlabel = "Connections/s",
|
|
|
|
number_format = "%5.0lf",
|
2008-05-28 17:51:15 +00:00
|
|
|
data = {
|
2011-11-28 03:26:59 +00:00
|
|
|
types = { "tcp_connections" },
|
2008-05-28 17:51:15 +00:00
|
|
|
instances = {
|
|
|
|
tcp_connections = {
|
|
|
|
"SYN_SENT", "SYN_RECV", "LISTEN", "ESTABLISHED",
|
|
|
|
"LAST_ACK", "TIME_WAIT", "CLOSING", "CLOSE_WAIT",
|
|
|
|
"CLOSED", "FIN_WAIT1", "FIN_WAIT2"
|
2011-11-28 03:26:59 +00:00
|
|
|
},
|
2011-12-05 14:09:24 +00:00
|
|
|
options = {
|
|
|
|
load__ESTABLISHED = { title = "%di", noarea = true }
|
2008-05-28 17:51:15 +00:00
|
|
|
}
|
|
|
|
}
|
2008-05-25 02:37:39 +00:00
|
|
|
}
|
2008-05-28 17:51:15 +00:00
|
|
|
}
|
2008-05-25 02:37:39 +00:00
|
|
|
end
|