Regenerate integrations docs (#20659)
Co-authored-by: thiagoftsm <49162938+thiagoftsm@users.noreply.github.com>
Netdata bot committed
Jul 13, 2025 at 16:57 UTC
4dd5d0bbb918ce708070cca0d4f645b360c6d62f
2 files changed
+167
src/collectors/COLLECTORS.md
+2
@@ -1163,6 +1163,8 @@ If you don't see the app/service you'd like to monitor in this list:
1163
1164
### Windows Systems
1165
1166
+- [ASP.NET](https://github.com/netdata/netdata/blob/master/src/collectors/windows.plugin/integrations/asp.net.md)
1167
+
1168
- [Active Directory Certificate Service](https://github.com/netdata/netdata/blob/master/src/collectors/windows.plugin/integrations/active_directory_certificate_service.md)
1169
1170
- [Active Directory Federation Service](https://github.com/netdata/netdata/blob/master/src/collectors/windows.plugin/integrations/active_directory_federation_service.md)
src/collectors/windows.plugin/integrations/asp.net.md
new
+165
@@ -0,0 +1,165 @@
1
+<!--startmeta
2
+custom_edit_url: "https://github.com/netdata/netdata/edit/master/src/collectors/windows.plugin/integrations/asp.net.md"
3
+meta_yaml: "https://github.com/netdata/netdata/edit/master/src/collectors/windows.plugin/metadata.yaml"
4
+sidebar_label: "ASP.NET"
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
+# ASP.NET
12
+
13
+
14
+<img src="https://netdata.cloud/img/windows.svg" width="150"/>
15
+
16
+
17
+Plugin: windows.plugin
18
+Module: PerflibASP
19
+
20
+<img src="https://img.shields.io/badge/maintained%20by-Netdata-%2300ab44" />
21
+
22
+## Overview
23
+
24
+This collector monitors ASP.NET applications.
25
+
26
+
27
+It queries for the 'ASP.NET' and 'ASP.NET Applications' objects from Perflib in order to gather the metrics.
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 ASP.NET Global Data
62
+
63
+These metrics refer to ASP.NET global metrics.
64
+
65
+This scope has no labels.
66
+
67
+Metrics:
68
+
69
+| Metric | Dimensions | Unit |
70
+|:------|:----------|:----|
71
+| aspnet.application_restarts | restarts | restarts |
72
+| aspnet.worker_process_restarts | restarts | restarts |
73
+
74
+### Per ASP.NET Applications
75
+
76
+ASP.NET application performance counters
77
+
78
+Labels:
79
+
80
+| Label | Description |
81
+|:-----------|:----------------|
82
+| aspnet_app | The application name. |
83
+
84
+Metrics:
85
+
86
+| Metric | Dimensions | Unit |
87
+|:------|:----------|:----|
88
+| aspnet.anonymous_request | requests | requests |
89
+| aspnet.compilation_totals | compilations | compilations |
90
+| aspnet.errors_during_preprocessing | preprocessing | errors |
91
+| aspnet.errors_during_compilation | compilation | errors |
92
+| aspnet.errors_during_execution | execution | errors |
93
+| aspnet.errors_during_unhandled_execution | unhandled | errors |
94
+| aspnet.requests_byte_total | in, out | bytes |
95
+| aspnet.requests_executing | executing | requests |
96
+| aspnet.requests_failed | executing | requests |
97
+| aspnet.requests_not_found | not found | requests |
98
+| aspnet.requests_in_application_queue | queue | requests |
99
+| aspnet.requests_timeout | timeout | requests |
100
+| aspnet.requests_succeeded | success | requests |
101
+| aspnet.sessions_active | active | sessions |
102
+| aspnet.sessions_abandoned | abandoned | sessions |
103
+| aspnet.sessions_abandoned | abandoned | sessions |
104
+| aspnet.sessions_timed_out | timed out | sessions |
105
+| aspnet.transactions_aborted | aborted | transactions |
106
+| aspnet.transactions_committed | committed | transactions |
107
+| aspnet.transactions_pending | pending | transactions |
108
+| aspnet.events_raised_per_sec | raised | events |
109
+| aspnet.error_events_raised_per_sec | events | errors |
110
+| aspnet.events_audit_success | events | errors |
111
+| aspnet.events_audit_failure | audit | failures |
112
+| aspnet.membership_auth_success | success | auth |
113
+| aspnet.form_authentication_success | success | auth |
114
+| aspnet.form_authentication_success | success | auth |
115
+| aspnet.form_authentication_failure | failure | auth |
116
+
117
+
118
+
119
+## Alerts
120
+
121
+There are no alerts configured by default for this integration.
122
+
123
+
124
+## Setup
125
+
126
+### Prerequisites
127
+
128
+No action required.
129
+
130
+### Configuration
131
+
132
+#### File
133
+
134
+The configuration file name for this integration is `netdata.conf`.
135
+Configuration for this specific integration is located in the `[plugin:windows]` section within that file.
136
+
137
+The file format is a modified INI syntax. The general structure is:
138
+
139
+```ini
140
+[section1]
141
+ option1 = some value
142
+ option2 = some other value
143
+
144
+[section2]
145
+ option3 = some third value
146
+```
147
+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
148
+Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration/README.md#the-netdata-config-directory).
149
+
150
+```bash
151
+cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
152
+sudo ./edit-config netdata.conf
153
+```
154
+#### Options
155
+
156
+
157
+
158
+| Name | Description | Default | Required |
159
+|:----|:-----------|:-------|:--------:|
160
+| PerflibASP | An option to enable or disable the data collection. | yes | no |
161
+
162
+#### Examples
163
+There are no configuration examples.
164
+
165
+