ssc*_*oof 1 c# console-application azure azure-application-insights .net-core
我有一个使用应用程序洞察的 Windows 控制台应用程序。我使用Microsoft.Extensions.DependencyInjection来设置我的课程并添加ILogger.
如果出现异常,我想将此记录到 Application Insights。但是由于 Application Insights 不会立即发送跟踪,我想刷新日志。
有没有办法触发应用程序洞察的刷新ILogger?
static async Task Main(string[] args)
{
ServiceProvider serviceProvider = ConfigureServices();
var program = serviceProvider.GetService<Program>();
await program.Run();
}
public Program(ILogger<Program> logger)
{
this.logger = logger;
}
private static ServiceProvider ConfigureServices()
{
var services = new ServiceCollection();
services
.AddLogging(opt =>
{
opt.AddConsole();
opt.AddApplicationInsights();
})
.AddTransient<Program>()
return services.BuildServiceProvider();
}
public async Task Run()
{
try
{
do.stuff()
}
catch (Exception e)
{
logger.LogError(e, "Exception occured");
// How to flush Application insights here
// Need to wait for Flush (see https://docs.microsoft.com/en-us/azure/azure-monitor/app/console)
await Task.Delay(1000);
throw;
}
}
Run Code Online (Sandbox Code Playgroud)
请尝试使用该方法InMemoryChannel.Flush,代码示例为:
using Microsoft.ApplicationInsights.Channel;
using Microsoft.ApplicationInsights.Extensibility;
using Microsoft.Extensions.DependencyInjection;
using Microsoft.Extensions.Logging;
using System;
using System.Threading.Tasks;
namespace ConsoleApp3netcore
{
class Program
{
private readonly ILogger logger;
static InMemoryChannel channel = new InMemoryChannel();
static async Task Main(string[] args)
{
ServiceProvider serviceProvider = ConfigureServices();
var program = serviceProvider.GetService<Program>();
await program.Run();
}
public Program(ILogger<Program> logger)
{
this.logger = logger;
}
private static ServiceProvider ConfigureServices()
{
var services = new ServiceCollection();
services.Configure<TelemetryConfiguration>(
(config) =>
{
config.TelemetryChannel = channel;
}
);
services
.AddLogging(opt =>
{
opt.AddConsole();
opt.AddApplicationInsights();
})
.AddTransient<Program>();
return services.BuildServiceProvider();
}
public async Task Run()
{
try
{
throw new Exception("my exception 111");
}
catch (Exception e)
{
logger.LogError(e, "Exception occured");
// How to flush Application insights here
channel.Flush();
await Task.Delay(1000);
throw;
}
}
}
}
Run Code Online (Sandbox Code Playgroud)
希望能帮助到你。
| 归档时间: |
|
| 查看次数: |
1975 次 |
| 最近记录: |