Regenerate integrations docs (#20749)
Co-authored-by: thiagoftsm <49162938+thiagoftsm@users.noreply.github.com>
Netdata bot committed
Aug 1, 2025 at 07:58 UTC
2c99c80efdac0a24ba41840bfd86afddfdc794b8
1 file changed
+8
src/collectors/windows.plugin/integrations/ms_sql_server.md
+8
@@ -269,12 +269,14 @@ These options allow the collector to connect to your MSSQL instance and collect
269
|:----|:-----------|:-------|:--------:|
270
| update every | Data collection frequency. | 10 | no |
271
| driver | ODBC driver used to connect to the SQL Server. | SQL Server | no |
272
+| instance | Instance name | empty | yes |
273
| server | Server address or instance name. | empty | yes |
274
| address | Alternative to `server`; supports named pipes if the server supports them. | empty | yes |
275
| uid | SQL Server user identifier. | empty | yes |
276
| pwd | Password for the specified user. | empty | yes |
277
| additional instances | Number of additional SQL Server instances to monitor. | 0 | no |
278
| windows authentication | Set to yes to use Windows credentials instead of SQL Server authentication. | no | no |
279
+| express | Set to yes when running SQL Express version. | no | no |
280
281
#### Examples
282
@@ -285,9 +287,11 @@ An example configuration with one instance.
287
```yaml
288
[plugin:windows:PerflibMSSQL]
289
driver = SQL Server
290
+ instance = Dev
291
server = 127.0.0.1\\Dev, 1433
292
uid = netdata_user
293
pwd = 1ReallyStrongPasswordShouldBeInsertedHere
294
+ express = no
295
296
```
297
##### Multiple Instances
@@ -298,14 +302,18 @@ An example configuration with two instances.
302
[plugin:windows:PerflibMSSQL]
303
driver = SQL Server
304
server = 127.0.0.1\\Dev, 1433
305
+ instance = Dev
306
uid = netdata_user
307
pwd = 1ReallyStrongPasswordShouldBeInsertedHere
308
additional instances = 1
309
+ express = no
310
[plugin:windows:PerflibMSSQL1]
311
driver = SQL Server
312
server = 127.0.0.1\\Production, 1434
313
+ instance = Production
314
uid = netdata_user
315
pwd = AnotherReallyStrongPasswordShouldBeInsertedHere2
316
+ express = no
317
318
```
319