Regenerate integrations docs (#20818)
Co-authored-by: ilyam8 <22274335+ilyam8@users.noreply.github.com>
Netdata bot committed
Aug 20, 2025 at 18:55 UTC
ccaee65e44260ea3d39c27ee5b0cf836bee8e4a7
3 files changed
+139
-1
src/collectors/COLLECTORS.md
+2
@@ -1195,6 +1195,8 @@ If you don't see the app/service you'd like to monitor in this list:
1195
1196
- [Semaphore statistics](https://github.com/netdata/netdata/blob/master/src/collectors/windows.plugin/integrations/semaphore_statistics.md)
1197
1198
+- [Sensors](https://github.com/netdata/netdata/blob/master/src/collectors/windows.plugin/integrations/sensors.md)
1199
+
1200
- [System statistics](https://github.com/netdata/netdata/blob/master/src/collectors/windows.plugin/integrations/system_statistics.md)
1201
1202
- [System thermal zone](https://github.com/netdata/netdata/blob/master/src/collectors/windows.plugin/integrations/system_thermal_zone.md)
src/collectors/windows.plugin/integrations/ms_sql_server.md
+5
-1
@@ -88,7 +88,11 @@ Metrics:
88
| mssql.instance_bufman_iops | read, written | pages/s |
89
| mssql.instance_bufman_checkpoint_pages | log | pages/s |
90
| mssql.instance_bufman_page_life_expectancy | life_expectancy | seconds |
91
+| mssql.instance_bufman_lazy_write | writes | writes/s |
92
+| mssql.instance_bufman_page_lookups | lookups | lookups/s |
93
| mssql.instance_memmgr_server_memory | memory | bytes |
94
+| mssql.database_readonly | writable, readonly | status |
95
+| mssql.database_state | online, restoring, recovering, recovering_pending, suspect, offline | status |
96
| mssql.instance_memmgr_connection_memory_bytes | memory | bytes |
97
| mssql.instance_memmgr_pending_memory_grants | pending | processes |
98
| mssql.instance_memmgr_external_benefit_of_memory | benefit | bytes |
@@ -197,7 +201,7 @@ For **each SQL Server** instance you want to monitor, complete the following ste
201
DECLARE @dbname NVARCHAR(max)
202
DECLARE nd_user_cursor CURSOR FOR SELECT name
203
FROM master.dbo.sysdatabases
200
- WHERE name NOT IN ('master', 'tempdb')
204
+ WHERE name NOT IN ('master')
205
206
OPEN nd_user_cursor
207
FETCH NEXT FROM nd_user_cursor INTO @dbname
src/collectors/windows.plugin/integrations/sensors.md
new
+132
@@ -0,0 +1,132 @@
1
+<!--startmeta
2
+custom_edit_url: "https://github.com/netdata/netdata/edit/master/src/collectors/windows.plugin/integrations/sensors.md"
3
+meta_yaml: "https://github.com/netdata/netdata/edit/master/src/collectors/windows.plugin/metadata.yaml"
4
+sidebar_label: "Sensors"
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
+# Sensors
12
+
13
+
14
+<img src="https://netdata.cloud/img/windows.svg" width="150"/>
15
+
16
+
17
+Plugin: windows.plugin
18
+Module: GetSensors
19
+
20
+<img src="https://img.shields.io/badge/maintained%20by-Netdata-%2300ab44" />
21
+
22
+## Overview
23
+
24
+This collector monitors sensors on Windows systems.
25
+
26
+
27
+It uses Sensors API to retrieve available data.
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 Sensor
62
+
63
+These metrics refer to Sensors.
64
+
65
+Labels:
66
+
67
+| Label | Description |
68
+|:-----------|:----------------|
69
+| name | Sensor friendly name. |
70
+| manufacturer | The sensor manufacturer. |
71
+| model | The sensor model. |
72
+
73
+Metrics:
74
+
75
+| Metric | Dimensions | Unit |
76
+|:------|:----------|:----|
77
+| system.hw.sensor.temperature.input | input | Cel |
78
+| system.hw.sensor.power.input | input | W |
79
+| system.hw.sensor.current.input | input | A |
80
+| system.hw.sensor.humidity.input | input | % |
81
+| system.hw.sensor.lux.input | input | lx |
82
+| system.hw.sensor.state.input | ready, not_available, no_data, initializing, access_denied, error | status |
83
+
84
+
85
+
86
+## Alerts
87
+
88
+There are no alerts configured by default for this integration.
89
+
90
+
91
+## Setup
92
+
93
+### Prerequisites
94
+
95
+No action required.
96
+
97
+### Configuration
98
+
99
+#### File
100
+
101
+The configuration file name for this integration is `netdata.conf`.
102
+Configuration for this specific integration is located in the `[plugin:windows:GetSensors]` section within that file.
103
+
104
+The file format is a modified INI syntax. The general structure is:
105
+
106
+```ini
107
+[section1]
108
+ option1 = some value
109
+ option2 = some other value
110
+
111
+[section2]
112
+ option3 = some third value
113
+```
114
+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
115
+Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration/README.md#the-netdata-config-directory).
116
+
117
+```bash
118
+cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
119
+sudo ./edit-config netdata.conf
120
+```
121
+#### Options
122
+
123
+
124
+
125
+| Name | Description | Default | Required |
126
+|:----|:-----------|:-------|:--------:|
127
+| update every | Data collection frequency. | 1 | no |
128
+
129
+#### Examples
130
+There are no configuration examples.
131
+
132
+