Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions content/web-monitoring/aspnet-core/endpoint-middleware.md
Original file line number Diff line number Diff line change
Expand Up @@ -451,6 +451,8 @@ The following are example response generated by the App Metrics ASP.NET Core MVC
OS Version = Microsoft Windows 10.0.15063
Process Architecture = X64
```
{{% /expand%}}

## Securing Metrics Endpoints

Using ASP.NET Core's IStartupFilter is great way to restrice access to metrics and health endpoints beause startup filters are evaluated before any middleware logic runs.
Expand Down Expand Up @@ -507,5 +509,3 @@ Register the implementation with Dependency Injection in `Startup.cs`:
...
}
```

{{% /expand%}}