From 7392558e3618fa695a3bd981c03e2684558dfa30 Mon Sep 17 00:00:00 2001 From: Sanskar Jaiswal Date: Sat, 21 Dec 2024 00:48:22 +0530 Subject: [PATCH] chore(host_metrics): update changelog Signed-off-by: Sanskar Jaiswal --- ...-add-tcp-collector-host-metrics.feature.md | 19 +++++++++---------- 1 file changed, 9 insertions(+), 10 deletions(-) diff --git a/changelog.d/21972-add-tcp-collector-host-metrics.feature.md b/changelog.d/21972-add-tcp-collector-host-metrics.feature.md index f28e292546af45..d6a4c05397d4dd 100644 --- a/changelog.d/21972-add-tcp-collector-host-metrics.feature.md +++ b/changelog.d/21972-add-tcp-collector-host-metrics.feature.md @@ -1,13 +1,12 @@ -The `host_metrics` source has a new collector, `tcp`. The `tcp` -collector exposes three metrics related to the TCP stack of the -system: -* `tcp_connections_total`: The total number of TCP connections. It - includes the `state` of the connection as a tag. -* `tcp_tx_queued_bytes_total`: The sum of the number of bytes in the - send queue across all connections. -* `tcp_rx_queued_bytes_total`: The sum of the number of bytes in the - receive queue across all connections. +The `network` collector in the `host_metrics` source has been +updated to expose three metrics about the TCP stack of the system: +* `network_tcp_connections_total`: The total number of TCP + connections. It includes the `state` of the connection as a tag. +* `network_tcp_tx_queued_bytes_total`: The sum of the number of bytes + in the send queue across all connections. +* `network_tcp_rx_queued_bytes_total`: The sum of the number of bytes + in the receive queue across all connections. -This collector is enabled only on Linux systems. +These metrics are only available for Linux systems. authors: aryan9600