Humayun Ahmed
Humayun Ahmed

Reputation: 45

Best tool for Microsoft Azure diagnostics for .net logging

Previously in my .net application I used NLog to write log in UDP which I used to view by log4View, now I am developing a web api service which I'll deploy to azure app service, is there any interactive tool like log4View for the web api service that will be deploy in azure app service?

I need to filtering facility by namespaces (like log4View), error, debug level? What type of logging I have to implement in .net for azure support like .net tracing/Etw?

Upvotes: 2

Views: 504

Answers (2)

Robin B
Robin B

Reputation: 301

I recently implemented Application Insights in my ASP.NET MVC (Sitecore) website. It works like a champ and it integrates easily. You can send your own telemetry, integrate it with Log4Net or Nlog, make own events and so on. It wil generate some charts and reports and you can also make your own. I suggest to take a look at this website.

Application Insights has a free version where you can collect 5M data points. This is not that much for a live website but it's enough to do some tests.

Upvotes: 0

Ilya Chernomordik
Ilya Chernomordik

Reputation: 30265

You can try to use Application Insights. It has the possibility of integration with NLog as far as I know as well, so you will do ordinary NLog and it will be gathered on the server by Application Insights with possibility to filter, etc. + it has a lot more than that in terms of diagnostics.

Upvotes: 1

Related Questions