Regenerate integrations docs (#20577)
Co-authored-by: thiagoftsm <49162938+thiagoftsm@users.noreply.github.com>
Netdata bot committed
Jun 25, 2025 at 13:35 UTC
45009465cfd6aa7ebbeb728cf9028ba11336f372
2 files changed
+127
src/collectors/COLLECTORS.md
+2
@@ -1181,6 +1181,8 @@ If you don't see the app/service you'd like to monitor in this list:
1181
1182
- [NET Framework](https://github.com/netdata/netdata/blob/master/src/collectors/windows.plugin/integrations/net_framework.md)
1183
1184
+- [NUMA Architecture](https://github.com/netdata/netdata/blob/master/src/collectors/windows.plugin/integrations/numa_architecture.md)
1185
+
1186
- [Network Subsystem](https://github.com/netdata/netdata/blob/master/src/collectors/windows.plugin/integrations/network_subsystem.md)
1187
1188
- [Physical and Logical Disk Performance Metrics](https://github.com/netdata/netdata/blob/master/src/collectors/windows.plugin/integrations/physical_and_logical_disk_performance_metrics.md)
src/collectors/windows.plugin/integrations/numa_architecture.md
new
+125
@@ -0,0 +1,125 @@
1
+<!--startmeta
2
+custom_edit_url: "https://github.com/netdata/netdata/edit/master/src/collectors/windows.plugin/integrations/numa_architecture.md"
3
+meta_yaml: "https://github.com/netdata/netdata/edit/master/src/collectors/windows.plugin/metadata.yaml"
4
+sidebar_label: "NUMA Architecture"
5
+learn_status: "Published"
6
+learn_rel_path: "Collecting Metrics/Windows Systems"
7
+most_popular: False
8
+message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9
+endmeta-->
10
+
11
+# NUMA Architecture
12
+
13
+
14
+<img src="https://netdata.cloud/img/windows.svg" width="150"/>
15
+
16
+
17
+Plugin: windows.plugin
18
+Module: PerflibNUMA
19
+
20
+<img src="https://img.shields.io/badge/maintained%20by-Netdata-%2300ab44" />
21
+
22
+## Overview
23
+
24
+This collector monitors NUMA Architecture on Windows.
25
+
26
+
27
+It queries NUMA Node Memory from Perflib in order to gather the metrics.
28
+
29
+
30
+This collector is only supported on the following platforms:
31
+
32
+- windows
33
+
34
+This collector only supports collecting metrics from a single instance of this integration.
35
+
36
+
37
+### Default Behavior
38
+
39
+#### Auto-Detection
40
+
41
+The collector automatically detects all of the metrics, no further configuration is required.
42
+
43
+
44
+#### Limits
45
+
46
+The default configuration for this integration does not impose any limits on data collection.
47
+
48
+#### Performance Impact
49
+
50
+The default configuration for this integration is not expected to impose a significant performance impact on the system.
51
+
52
+
53
+## Metrics
54
+
55
+Metrics grouped by *scope*.
56
+
57
+The scope defines the instance that the metric belongs to. An instance is uniquely identified by a set of labels.
58
+
59
+
60
+
61
+### Per NUMA
62
+
63
+These metrics refer to memory utilization on NUMA systems.
64
+
65
+Labels:
66
+
67
+| Label | Description |
68
+|:-----------|:----------------|
69
+| node | The identifier of the CPU node. |
70
+
71
+Metrics:
72
+
73
+| Metric | Dimensions | Unit |
74
+|:------|:----------|:----|
75
+| mem.numa_node_mem_usage | free, standby, available | bytes |
76
+
77
+
78
+
79
+## Alerts
80
+
81
+There are no alerts configured by default for this integration.
82
+
83
+
84
+## Setup
85
+
86
+### Prerequisites
87
+
88
+No action required.
89
+
90
+### Configuration
91
+
92
+#### File
93
+
94
+The configuration file name for this integration is `netdata.conf`.
95
+Configuration for this specific integration is located in the `[plugin:windows]` section within that file.
96
+
97
+The file format is a modified INI syntax. The general structure is:
98
+
99
+```ini
100
+[section1]
101
+ option1 = some value
102
+ option2 = some other value
103
+
104
+[section2]
105
+ option3 = some third value
106
+```
107
+You can edit the configuration file using the [`edit-config`](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration/README.md#edit-a-configuration-file-using-edit-config) script from the
108
+Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration/README.md#the-netdata-config-directory).
109
+
110
+```bash
111
+cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
112
+sudo ./edit-config netdata.conf
113
+```
114
+#### Options
115
+
116
+
117
+
118
+| Name | Description | Default | Required |
119
+|:----|:-----------|:-------|:--------:|
120
+| PerflibNUMA | An option to enable or disable the data collection. | yes | no |
121
+
122
+#### Examples
123
+There are no configuration examples.
124
+
125
+