summaryrefslogtreecommitdiffstats
path: root/web
diff options
context:
space:
mode:
authorthiagoftsm <thiagoftsm@gmail.com>2022-10-25 16:14:41 +0000
committerGitHub <noreply@github.com>2022-10-25 16:14:41 +0000
commit873184d115b896e9061a2c93f2c8c0ea527cf385 (patch)
tree9bd3bfcda4fef77ae3629731efcde44e6dbeaf54 /web
parentbf1cb6048ba63438d0173f86d62ee4106bdcece6 (diff)
Add description for TCP WMI (#13878)
Diffstat (limited to 'web')
-rw-r--r--web/gui/dashboard_info.js28
1 files changed, 28 insertions, 0 deletions
diff --git a/web/gui/dashboard_info.js b/web/gui/dashboard_info.js
index 6654f80ab0..530f15e263 100644
--- a/web/gui/dashboard_info.js
+++ b/web/gui/dashboard_info.js
@@ -4201,6 +4201,34 @@ netdataDashboard.context = {
},
// ------------------------------------------------------------------------
+ // WMI
+
+ 'wmi.tcp_conns_active': {
+ info: 'Number of times TCP connections have made a direct transition from the CLOSED state to the SYN-SENT state.'
+ },
+ 'wmi.tcp_conns_established': {
+ info: 'Number of TCP connections for which the current state is either ESTABLISHED or CLOSE-WAIT.'
+ },
+ 'wmi.tcp_conns_failures': {
+ info: 'Number of times TCP connections have made a direct transition to the CLOSED state from the SYN-SENT state or the SYN-RCVD state, plus the number of times TCP connections have made a direct transition from the SYN-RCVD state to the LISTEN state.'
+ },
+ 'wmi.tcp_conns_passive': {
+ info: 'Number of times TCP connections have made a direct transition from the LISTEN state to the SYN-RCVD state.'
+ },
+ 'wmi.tcp_conns_resets': {
+ info: 'Number of times TCP connections have made a direct transition from the LISTEN state to the SYN-RCVD state.'
+ },
+ 'wmi.tcp_segments_received': {
+ info: 'Rate at which segments are received, including those received in error. This count includes segments received on currently established connections.'
+ },
+ 'wmi.tcp_segments_retransmitted': {
+ info: 'Rate at which segments are retransmitted, that is, segments transmitted that contain one or more previously transmitted bytes.'
+ },
+ 'wmi.tcp_segments_sent': {
+ info: 'Rate at which segments are sent, including those on current connections, but excluding those containing only retransmitted bytes.'
+ },
+
+ // ------------------------------------------------------------------------
// APACHE
'apache.connections': {