Regenerate integrations docs (#20315)
Co-authored-by: thiagoftsm <49162938+thiagoftsm@users.noreply.github.com>
Netdata bot committed
May 20, 2025 at 20:03 UTC
87c997d89973748f1e640e89ba9357ab8f198d02
2 files changed
+31
-3
src/collectors/windows.plugin/integrations/iis.md
+28
@@ -108,6 +108,34 @@ Metrics:
108
| iis.application_pool_recycles | recycles | recycles/s |
109
| iis.application_pool_uptime | uptime | seconds |
110
111
+### Per IIS W3SCV W3MP
112
+
113
+These metrics refer to the World Wide Web Publishing Service, the service responsible for hosting and serving web content.
114
+
115
+Labels:
116
+
117
+| Label | Description |
118
+|:-----------|:----------------|
119
+| app | Application name. |
120
+
121
+Metrics:
122
+
123
+| Metric | Dimensions | Unit |
124
+|:------|:----------|:----|
125
+| iis.w3svc_w3wp_active_threads | threads | threads |
126
+| iis.w3svc_w3wp_requests_total | requests | requests/s |
127
+| iis.w3svc_w3wp_requests_active | requests | requests |
128
+| iis.w3svc_w3wp_file_cache_mem_usage | used | bytes |
129
+| iis.w3svc_w3wp_files_cache_total | cached_files | files/s |
130
+| iis.w3svc_w3wp_files_flushed_total | file_handles | flushes/s |
131
+| iis.w3svc_w3wp_uri_cache_flushed | cached_uris | flushes/s |
132
+| iis.w3svc_w3wp_total_uri_cached | uri_cache_blocks | blocks/s |
133
+| iis.w3svc_w3wp_total_metadata_cached | metadata_blocks | blocks/s |
134
+| iis.w3svc_w3wp_total_metadata_flushed | metadata_blocks | flushes/s |
135
+| iis.w3svc_w3wp_output_cache_active_flushed_items | used | items |
136
+| iis.w3svc_w3wp_output_cache_memory_usage | used | bytes |
137
+| iis.w3svc_w3wp_output_cache_flushed_total | output_cache_entries | flushes |
138
+
139
140
141
## Alerts
src/collectors/windows.plugin/integrations/ms_sql_server.md
+3
-3
@@ -138,7 +138,7 @@ There are no alerts configured by default for this integration.
138
1. **Create Monitoring User**
139
140
Create an SQL Server user with the necessary permissions to collect monitoring data:
141
-
141
+
142
```tsql
143
USE master;
144
CREATE LOGIN netdata_user WITH PASSWORD = '1ReallyStrongPasswordShouldBeInsertedHere';
@@ -151,13 +151,13 @@ There are no alerts configured by default for this integration.
151
2. **Enable Query Store**
152
153
Enable the [Query Store](https://learn.microsoft.com/en-us/sql/relational-databases/performance/monitoring-performance-by-using-the-query-store?view=sql-server-ver16) and grant access to the monitoring user on all relevant databases:
154
-
154
+
155
```tsql
156
DECLARE @dbname NVARCHAR(max)
157
DECLARE nd_user_cursor CURSOR FOR SELECT name
158
FROM master.dbo.sysdatabases
159
WHERE name NOT IN ('master', 'tempdb')
160
-
160
+
161
OPEN nd_user_cursor
162
FETCH NEXT FROM nd_user_cursor INTO @dbname
163
WHILE @@FETCH_STATUS = 0