@cryptotaxi247 / netdata-1 / commits / 524be9306

Regenerate integrations docs (#21202)

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

Netdata bot committed Oct 24, 2025 at 15:58 UTC 524be9306e1ed180ead13d4111ba41ae7913ac87
1 file changed +30 -2
src/collectors/windows.plugin/integrations/ms_sql_server.md
+30 -2
@@ -97,6 +97,23 @@ Metrics:
97 | mssql.instance_memmgr_external_benefit_of_memory | benefit | bytes |
98 | mssql.instance_blocked_processes | blocked | processes |
99
100 +### Per MSSQL Jobs
101 +
102 +These metrics refer to the Microsoft SQL Servers jobs on host.
103 +
104 +Labels:
105 +
106 +| Label | Description |
107 +|:-----------|:----------------|
108 +| mssql_instance | The instance name. |
109 +| job_name | The job name. |
110 +
111 +Metrics:
112 +
113 +| Metric | Dimensions | Unit |
114 +|:------|:----------|:----|
115 +| mssql.instance_jobs_status | enabled, disabled | jobs |
116 +
117 ### Per MSSQL Resource Locks
118
119 Monitors SQL Server resource locks by type. SQL Server uses locks to manage concurrent access to database resources during transactions, preventing conflicts when multiple users access the same data simultaneously. This metric tracks locks on different [resource types](https://learn.microsoft.com/en-us/sql/relational-databases/performance-monitor/sql-server-locks-object?view=sql-server-ver17) like rows, pages, tables, and databases.
@@ -215,7 +232,18 @@ For **each SQL Server** instance you want to monitor, complete the following ste
232 GO
233 ```
234
218 -3. **Configure SQL Server Network Settings**
235 +3. **Enable Query Job status**
236 +
237 + Connect to your database and grant `SELECT` permission to `netdata_user`:
238 +
239 + ```tsql
240 + USE msdb;
241 + GO
242 + GRANT SELECT ON SCHEMA::[dbo] TO netdata_user;
243 + GO
244 + ```
245 +
246 +4. **Configure SQL Server Network Settings**
247
248 Enable SQL Server to accept TCP connections:
249
@@ -228,7 +256,7 @@ For **each SQL Server** instance you want to monitor, complete the following ste
256 - Enter a port number in the `TCP Port` field (default is `1433`)
257 - Select `SQL Server Services` and restart your SQL Server instance
258
231 -4. **Configure SQL Server Authentication (Optional)**
259 +5. **Configure SQL Server Authentication (Optional)**
260
261 If you're using SQL Server authentication (rather than Windows authentication):
262