No log entries in Azure Application Insights using Microsoft.ApplicationInsights.NLogTarget
问题 Goal: Forward log entries from NLog to Azure Application Insights. Starting from: https://github.com/Microsoft/ApplicationInsights-dotnet-logging I created a very basic console application: TelemetryConfiguration.Active.InstrumentationKey = "my instrumentation key"; Logger logger = LogManager.GetLogger("Example"); logger.Info("Hello World"); Console.ReadLine(); With the following app.config: <configuration> <configSections> <section name="nlog" type="NLog.Config.ConfigSectionHandler, NLog" />