@cryptotaxi247 / netdata-1 / commits / ea3161b04

Regenerate integrations docs (#21601)

Co-authored-by: thiagoftsm <49162938+thiagoftsm@users.noreply.github.com>

Netdata bot committed Jan 22, 2026 at 07:31 UTC ea3161b04f5ba27fa26ace831af13bb84188a518
3 files changed +23 -3
src/collectors/windows.plugin/integrations/active_directory.md
-2
@@ -77,8 +77,6 @@ Metrics:
77 | ad.dra_replication_pending_syncs | pending | syncs |
78 | ad.dra_replication_pending_syncs | pending | syncs |
79 | ad.dra_replication_sync_requests | request | requests/s |
80 -| ad.dra_replication_sync_objects_remaining | object | objects |
81 -| ad.dra_replication_sync_objects_remaining | object | objects |
80 | ad.name_cache_hits | hits | hits/s |
81 | ad.ds_threads | thread | threads |
82 | ad.ldap_last_bind_time | last_bind | seconds |
src/collectors/windows.plugin/integrations/sensors.md
+1 -1
@@ -81,7 +81,7 @@ Metrics:
81 | system.hw.sensor.lux.input | input | lx |
82 | system.hw.sensor.color.input | input | Cel |
83 | system.hw.sensor.voltage.input | input | V |
84 -| system.hw.sensor.resistence.input | input | Ohms |
84 +| system.hw.sensor.resistance.input | input | Ohms |
85 | system.hw.sensor.capacitance.input | input | F |
86 | system.hw.sensor.inductance.input | input | H |
87 | system.hw.sensor.pressure.input | input | Pa |
src/go/plugin/go.d/collector/mssql/integrations/microsoft_sql_server.md
+22
@@ -311,6 +311,8 @@ The following options can be defined globally: update_every, autodetection_retry
311 | | autodetection_retry | Autodetection retry interval (seconds). Set 0 to disable. | 0 | no |
312 | **Target** | dsn | SQL Server DSN (Data Source Name). See [DSN syntax](https://github.com/microsoft/go-mssqldb#connection-parameters-and-dsn). | sqlserver://localhost:1433 | yes |
313 | | timeout | Query timeout (seconds). | 5 | no |
314 +| **Query Store** | query_store_function_enabled | Enable the Query Store function to expose top queries via Netdata Functions. **WARNING**: Query Store may contain unmasked literal values (customer names, emails, IDs). Only enable after ensuring proper access controls to the Netdata dashboard. | no | no |
315 +| | query_store_time_window_days | Number of days of Query Store data to analyze. Set to 0 to include all available data. Smaller values improve query performance but show less history. | 7 | no |
316 | **Virtual Node** | vnode | Associates this data collection job with a [Virtual Node](https://learn.netdata.cloud/docs/netdata-agent/configuration/organize-systems-metrics-and-alerts#virtual-nodes). | | no |
317
318
@@ -430,6 +432,26 @@ jobs:
432 ```
433 </details>
434
435 +###### With Query Store function
436 +
437 +Enable the Query Store function to view top queries in the Netdata dashboard.
438 +
439 +> **Warning**: Query Store may contain unmasked literal values (PII).
440 +> Only enable in environments with proper access controls.
441 +
442 +
443 +<details open><summary>Config</summary>
444 +
445 +```yaml
446 +jobs:
447 + - name: local
448 + dsn: "sqlserver://netdata_user:password@localhost:1433"
449 + query_store_function_enabled: true
450 + query_store_time_window_days: 7
451 +
452 +```
453 +</details>
454 +
455
456
457 ## Troubleshooting