1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113
|
<?xml version="1.0" encoding="UTF-8"?>
<!-- this file is autogenerated, do not edit! -->
<!DOCTYPE section PUBLIC "-//OASIS//DTD DocBook XML V4.2//EN"
"http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd">
<chapter id="counters.tcp">
<title> Counters for tcp</title>
<section id="tcp.established">
<title>tcp.established</title>
<para>
incremented each time a tcp connection is established.
</para>
<para>
</para>
</section>
<section id="tcp.passive_open">
<title>tcp.passive_open</title>
<para>
total number of accepted connections (so far).
</para>
<para>
</para>
</section>
<section id="tcp.connect_success">
<title>tcp.connect_success</title>
<para>
total number of successfully active opened connections
(successful connect()s).
</para>
<para>
</para>
</section>
<section id="tcp.connect_failed">
<title>tcp.connect_failed</title>
<para>
number of failed active connection attempts.
</para>
<para>
</para>
</section>
<section id="tcp.local_reject">
<title>tcp.local_reject</title>
<para>
number of rejected incoming connections.
</para>
<para>
</para>
</section>
<section id="tcp.con_timeout">
<title>tcp.con_timeout</title>
<para>
total number of connections that did timeout (idle for too
long).
</para>
<para>
</para>
</section>
<section id="tcp.con_reset">
<title>tcp.con_reset</title>
<para>
total number of TCP_RSTs received on established connections.
</para>
<para>
</para>
</section>
<section id="tcp.send_timeout">
<title>tcp.send_timeout</title>
<para>
number of send attempts that failed due to a timeout(note:
works only in tcp async mode).
</para>
<para>
</para>
</section>
<section id="tcp.sendq_full">
<title>tcp.sendq_full</title>
<para>
number of send attempts that failed because of exceeded
bufferingcapacity (send queue full, works only in tcp async
mode).
</para>
<para>
</para>
</section>
<section id="tcp.current_opened_connections">
<title>tcp.current_opened_connections</title>
<para>
number of currently opened connections.
</para>
<para>
</para>
</section>
<section id="tcp.current_write_queue_size">
<title>tcp.current_write_queue_size</title>
<para>
current sum of all the connections write queue sizes.
</para>
<para>
</para>
</section>
</chapter>
|