From 17dd05830834c1810479715645f9904058217997 Mon Sep 17 00:00:00 2001 From: Shirou WAKAYAMA Date: Thu, 8 Oct 2015 23:10:59 +0900 Subject: [PATCH] add REAME about TCP Connection plugin. --- plugins/system/TCPCONN_README.md | 43 ++++++++++++++++++++++++++++++++ 1 file changed, 43 insertions(+) create mode 100644 plugins/system/TCPCONN_README.md diff --git a/plugins/system/TCPCONN_README.md b/plugins/system/TCPCONN_README.md new file mode 100644 index 000000000..219a407ff --- /dev/null +++ b/plugins/system/TCPCONN_README.md @@ -0,0 +1,43 @@ +Telegraf plugin: TCPCONN + +#### Description + +The TCPCONN plugin collects TCP connections state by using `lsof`. + +Supported TCP Connection states are follows. + +- established +- syn_sent +- syn_recv +- fin_wait1 +- fin_wait2 +- time_wait +- close +- close_wait +- last_ack +- listen +- closing +- none + + +# Measurements: +### TCP Connections measurements: + +Meta: +- units: counts + +Measurement names: +- established +- syn_sent +- syn_recv +- fin_wait1 +- fin_wait2 +- time_wait +- close +- close_wait +- last_ack +- listen +- closing +- none + +If there are no connection on the state, the metric is not counted.