Category Monitoring

ASP.NET Core logging with NLog and Microsoft SQL Server

This article shows how to setup logging in an ASP.NET Core application which logs to a Microsoft SQL Server using NLog. Code: https://github.com/damienbod/AspNetCoreNlog 2020-01-12 Updated to .NET Core 3.1, NLog.Web.AspNetCore 4.9.0 2018-04-04 Updated to NLog.Web.AspNetCore 4.5.1, ASP.NET Core 2.0 2017-02-08 Updated to NLog.Web.AspNetCore 4.3.0 and VS2017 RC3 2016-12-17 Updated to ASP.NET Core 1.1 NLog posts […]

MVC WEB HTTP, HTTPS Application Monitoring Tools

This is just a collection of links, tools for monitoring, testing, tracing, debugging ASP.NET applications. When I have time I’ll evaluate each of the different tools. Health Monitoring and ASP.NET MVC http://msdn.microsoft.com/en-us/library/bb398933.aspx http://msdn.microsoft.com/en-us/library/x28wfk74.aspx http://odetocode.com/blogs/scott/archive/2009/10/12/health-monitoring-and-asp-net-mvc.aspx http://maxivak.com/asp-net-mvc-error-logging/#health Log exceptions with Health Monitoring in ASP.NET MVC3 Health Monitoring with ASP.NET MVC http://www.asp.net/web-forms/tutorials/deployment/deploying-web-site-projects/logging-error-details-with-asp-net-health-monitoring-cs How I Over-Engineered the ASP.NET Health Monitoring Feature […]

MVC real time Diagnosis using SignalR

UPDATED 2014.04.12: latest version of SignalR used and all other packages. The idea of this example is to create a simple SignalR service, so that all Log messages can be sent to a client browser in real time. In the example, EventSource classes are used to send the logs to the ETW. Semantic Logging OUT-OF-PROCESS […]