Regenerate integrations docs (#21237)
Co-authored-by: thiagoftsm <49162938+thiagoftsm@users.noreply.github.com>
Netdata bot committed
Oct 30, 2025 at 07:37 UTC
65ec1086832ee0d287284b666d020a18929ce9ea
2 files changed
+128
src/collectors/COLLECTORS.md
+1
@@ -323,6 +323,7 @@ Need a dedicated integration? [Submit a feature request](https://github.com/netd
323
| [Active Directory Certificate Service](https://github.com/netdata/netdata/blob/master/src/collectors/windows.plugin/integrations/active_directory_certificate_service.md) | This collector monitors Active Directory Certificate Services statistics. |
324
| [Active Directory Federation Service](https://github.com/netdata/netdata/blob/master/src/collectors/windows.plugin/integrations/active_directory_federation_service.md) | This collector monitors Active Directory Federation Services statistics. |
325
| [ASP.NET](https://github.com/netdata/netdata/blob/master/src/collectors/windows.plugin/integrations/asp.net.md) | This collector monitors ASP.NET applications. |
326
+| [Hardware information collected from kernel ring.](https://github.com/netdata/netdata/blob/master/src/collectors/windows.plugin/integrations/hardware_information_collected_from_kernel_ring..md) | This collector monitors cpu temperature on Windows systems. |
327
| [Hyper-V](https://github.com/netdata/netdata/blob/master/src/collectors/windows.plugin/integrations/hyper-v.md) | This collector monitors website requests and logins. |
328
| [IIS](https://github.com/netdata/netdata/blob/master/src/collectors/windows.plugin/integrations/iis.md) | This collector monitors website requests and logins. |
329
| [Memory statistics](https://github.com/netdata/netdata/blob/master/src/collectors/windows.plugin/integrations/memory_statistics.md) | This collector monitors swap and memory pool statistics on Windows systems. |
src/collectors/windows.plugin/integrations/hardware_information_collected_from_kernel_ring..md
new
+127
@@ -0,0 +1,127 @@
1
+<!--startmeta
2
+custom_edit_url: "https://github.com/netdata/netdata/edit/master/src/collectors/windows.plugin/integrations/hardware_information_collected_from_kernel_ring..md"
3
+meta_yaml: "https://github.com/netdata/netdata/edit/master/src/collectors/windows.plugin/metadata.yaml"
4
+sidebar_label: "Hardware information collected from kernel ring."
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
+# Hardware information collected from kernel ring.
12
+
13
+
14
+<img src="https://netdata.cloud/img/windows.svg" width="150"/>
15
+
16
+
17
+Plugin: windows.plugin
18
+Module: GetHardwareInfo
19
+
20
+<img src="https://img.shields.io/badge/maintained%20by-Netdata-%2300ab44" />
21
+
22
+## Overview
23
+
24
+This collector monitors cpu temperature on Windows systems.
25
+
26
+
27
+It reads `msr` register using netdata_driver.sys driver.
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
+This optional feature requires the Netdata Driver (netdata_driver.sys) to be installed on the host.
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
+## Metrics
53
+
54
+Metrics grouped by *scope*.
55
+
56
+The scope defines the instance that the metric belongs to. An instance is uniquely identified by a set of labels.
57
+
58
+
59
+
60
+### Per Hardware information collected from kernel ring. instance
61
+
62
+This metric show latest CPU temperature.
63
+
64
+This scope has no labels.
65
+
66
+Metrics:
67
+
68
+| Metric | Dimensions | Unit |
69
+|:------|:----------|:----|
70
+| cpu.temperature | a dimension per core | Celcius |
71
+
72
+
73
+
74
+## Alerts
75
+
76
+There are no alerts configured by default for this integration.
77
+
78
+
79
+## Setup
80
+
81
+
82
+### Prerequisites
83
+
84
+No action required.
85
+
86
+### Configuration
87
+
88
+#### Options
89
+
90
+
91
+
92
+
93
+
94
+| Option | Description | Default | Required |
95
+|:-----|:------------|:--------|:---------:|
96
+| update every | Data collection frequency. | 1 | no |
97
+
98
+
99
+
100
+
101
+#### via File
102
+
103
+The configuration file name for this integration is `netdata.conf`.
104
+Configuration for this specific integration is located in the `[plugin:windows:GetHardwareInfo]` section within that file.
105
+
106
+The file format is a modified INI syntax. The general structure is:
107
+
108
+```ini
109
+[section1]
110
+ option1 = some value
111
+ option2 = some other value
112
+
113
+[section2]
114
+ option3 = some third value
115
+```
116
+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
117
+Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration/README.md#the-netdata-config-directory).
118
+
119
+```bash
120
+cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
121
+sudo ./edit-config netdata.conf
122
+```
123
+
124
+##### Examples
125
+There are no configuration examples.
126
+
127
+