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 http://mattfrear.com/2011/01/28/mvc3-logging-exceptions/ http://researchaholic.com/2012/10/01/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 http://mvolo.com/asp-net-health-monitoring-8-years-later/ http://weblogs.asp.net/awilinsk/archive/2008/12/11/handleerrorattribute-and-health-monitoring.aspx http://blogs.msdn.com/b/erikreitan/archive/2006/05/22/603586.aspx Glimpse http://getglimpse.com/ http://elmah4glimpse.codeplex.com/ http://stackoverflow.com/questions/tagged/glimpse http://www.troyhunt.com/2012/01/aspnet-session-hijacking-with-google.html Wolfpack http://wolfpack.codeplex.com/ http://jimblogdog.blogspot.ch/search/label/wolfpack ELMAH http://beletsky.net/2011/03/integrating-elmah-to-aspnet-mvc-in.html http://www.hanselman.com/blog/ELMAHErrorLoggingModulesAndHandlersForASPNETAndMVCToo.aspx http://code.google.com/p/elmah/ http://dotnetslackers.com/articles/aspnet/ErrorLoggingModulesAndHandlers.aspx Firebug […]
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 […]