aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorPeter Bueschel <petersemailkonto@googlemail.com>2020-03-31 10:46:32 +0200
committerGitHub <noreply@github.com>2020-03-31 10:46:32 +0200
commitda5972b5398cd67a8854e6b1ee6b861bfda5ef83 (patch)
tree1fd34052702883fc048d715328b7fcfe7c7f6d95 /README.md
parent4891b01b6c9ea01864ba01b8d0e3ddd5b7e0d369 (diff)
downloadprometheus_node_collector-da5972b5398cd67a8854e6b1ee6b861bfda5ef83.tar.bz2
prometheus_node_collector-da5972b5398cd67a8854e6b1ee6b861bfda5ef83.tar.xz
prometheus_node_collector-da5972b5398cd67a8854e6b1ee6b861bfda5ef83.zip
Add gauges for allocated memory for queued UDP and TCP packages (#1503)
* Two new states will be added to the tcpstat collector called rx_queued_bytes and tx_queued_bytes. For UDP datagrams an additional collector 'udp_queues' can be used to expose the total lengths of the tx_queue and rx_queue. @SuperQ and @discordianfish this changes gives us the option to check for overloaded UDP + TCP processing. The names of the new TCP states and the UDP metric can be discussed. The current reasons are just: I don't want to add another collector for the same exposed file, so I just added the new states to the tcpstat collector. I chose the name 'udp_queue' instead of 'udpstat' as UDP has no state. Signed-off-by: Peter Bueschel <peter.bueschel@logmein.com>
Diffstat (limited to 'README.md')
-rw-r--r--README.md1
1 files changed, 1 insertions, 0 deletions
diff --git a/README.md b/README.md
index 1332372..3a1546e 100644
--- a/README.md
+++ b/README.md
@@ -60,6 +60,7 @@ textfile | Exposes statistics read from local disk. The `--collector.textfile.di
60thermal\_zone | Exposes thermal zone & cooling device statistics from `/sys/class/thermal`. | Linux 60thermal\_zone | Exposes thermal zone & cooling device statistics from `/sys/class/thermal`. | Linux
61time | Exposes the current system time. | _any_ 61time | Exposes the current system time. | _any_
62timex | Exposes selected adjtimex(2) system call stats. | Linux 62timex | Exposes selected adjtimex(2) system call stats. | Linux
63udp_queues | Exposes UDP total lengths of the rx_queue and tx_queue from `/proc/net/udp` and `/proc/net/udp6`. | Linux
63uname | Exposes system information as provided by the uname system call. | Darwin, FreeBSD, Linux, OpenBSD 64uname | Exposes system information as provided by the uname system call. | Darwin, FreeBSD, Linux, OpenBSD
64vmstat | Exposes statistics from `/proc/vmstat`. | Linux 65vmstat | Exposes statistics from `/proc/vmstat`. | Linux
65xfs | Exposes XFS runtime statistics. | Linux (kernel 4.4+) 66xfs | Exposes XFS runtime statistics. | Linux (kernel 4.4+)