2008-05-25 17:53:04 +00:00
|
|
|
module("luci.statistics.rrdtool.definitions.tcpconns.tcp_connections", package.seeall)
|
2008-05-25 02:37:39 +00:00
|
|
|
|
2008-05-28 17:51:15 +00:00
|
|
|
function rrdargs( graph, plugin, plugin_instance, dtype )
|
2008-05-25 02:37:39 +00:00
|
|
|
|
2008-05-28 17:51:15 +00:00
|
|
|
return {
|
|
|
|
title = "TCP-Verbindungen auf Port " .. plugin_instance,
|
|
|
|
vlabel = "Anzahl/s",
|
2008-05-25 02:37:39 +00:00
|
|
|
|
2008-05-28 17:51:15 +00:00
|
|
|
data = {
|
|
|
|
instances = {
|
|
|
|
tcp_connections = {
|
|
|
|
"SYN_SENT", "SYN_RECV", "LISTEN", "ESTABLISHED",
|
|
|
|
"LAST_ACK", "TIME_WAIT", "CLOSING", "CLOSE_WAIT",
|
|
|
|
"CLOSED", "FIN_WAIT1", "FIN_WAIT2"
|
|
|
|
}
|
|
|
|
},
|
2008-05-25 02:37:39 +00:00
|
|
|
|
2008-05-28 17:51:15 +00:00
|
|
|
options = {
|
|
|
|
tcp_connections = {
|
|
|
|
total = true
|
|
|
|
}
|
|
|
|
}
|
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
|