Add description for TCP WMI (#13878)
thiagoftsm committed
Oct 25, 2022 at 16:14 UTC
873184d115b896e9061a2c93f2c8c0ea527cf385
2 files changed
+29
-1
docs/collect/system-metrics.md
+1
-1
@@ -43,7 +43,7 @@ First, [download windows_exporter](https://github.com/prometheus-community/windo
43
with the following collectors enabled, changing `0.14.0` to the version you downloaded.
44
45
```powershell
46
-windows_exporter-0.14.0-amd64.exe --collectors.enabled="cpu,memory,net,logical_disk,os,system,logon"
46
+windows_exporter-0.14.0-amd64.exe --collectors.enabled="cpu,memory,net,logical_disk,os,system,logon,tcp"
47
```
48
49
Next, [configure the WMI
web/gui/dashboard_info.js
+28
@@ -4200,6 +4200,34 @@ netdataDashboard.context = {
4200
info: 'Requests for which a storage exception was encountered.'
4201
},
4202
4203
+ // ------------------------------------------------------------------------
4204
+ // WMI
4205
+
4206
+ 'wmi.tcp_conns_active': {
4207
+ info: 'Number of times TCP connections have made a direct transition from the CLOSED state to the SYN-SENT state.'
4208
+ },
4209
+ 'wmi.tcp_conns_established': {
4210
+ info: 'Number of TCP connections for which the current state is either ESTABLISHED or CLOSE-WAIT.'
4211
+ },
4212
+ 'wmi.tcp_conns_failures': {
4213
+ 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.'
4214
+ },
4215
+ 'wmi.tcp_conns_passive': {
4216
+ info: 'Number of times TCP connections have made a direct transition from the LISTEN state to the SYN-RCVD state.'
4217
+ },
4218
+ 'wmi.tcp_conns_resets': {
4219
+ info: 'Number of times TCP connections have made a direct transition from the LISTEN state to the SYN-RCVD state.'
4220
+ },
4221
+ 'wmi.tcp_segments_received': {
4222
+ info: 'Rate at which segments are received, including those received in error. This count includes segments received on currently established connections.'
4223
+ },
4224
+ 'wmi.tcp_segments_retransmitted': {
4225
+ info: 'Rate at which segments are retransmitted, that is, segments transmitted that contain one or more previously transmitted bytes.'
4226
+ },
4227
+ 'wmi.tcp_segments_sent': {
4228
+ info: 'Rate at which segments are sent, including those on current connections, but excluding those containing only retransmitted bytes.'
4229
+ },
4230
+
4231
// ------------------------------------------------------------------------
4232
// APACHE
4233