Getting Started
Installing and Setting up WatchDog.
Installation
Install via .NET CLI
Install via Package Manager
Usage
To enable WatchDog to listen for requests, use the WatchDog middleware provided by WatchDog.
Add WatchDog Namespace
Register WatchDog
For .NET Core 3.1, this should be under the ConfigureService() in your Startup.cs
file.
For .NET 5 and above, this should be in your Program.cs
file.
Add WatchDog middleware in the HTTP request pipeline
This authentication information (Username and Password) will be used to access the log viewer.
NOTE If your project uses authentication, then
app.UseWatchDog();
should come after app.UseRouting(), app.UseAuthentication(), app.UseAuthorization(), in that order
Last updated
Was this helpful?