我有一个Azure Webjob SDK(v3.0.3)应用程序,该应用程序已配置为使用serilog进行日志记录。 当我在系统中本地运行应用程序时,日志似乎可以正常工作。下面是配置:
static void Main(string[] args)
{
try
{
var builder = new HostBuilder()
.ConfigureAppConfiguration(SetupConfiguration)
.ConfigureLogging(SetupLogging)
.ConfigureServices(SetupServices)
.ConfigureWebJobs(webJobConfiguration =>
{
webJobConfiguration.AddTimers();
webJobConfiguration.AddAzureStorageCoreServices(); //this is to store logs in azure storage
})
.UseSerilog()
.Build();
builder.Run();
}
}
SetupConfiguration的代码如下:
private static void SetupConfiguration(HostBuilderContext hostingContext, IConfigurationBuilder builder)
{
var env = hostingContext.HostingEnvironment;
_configuration = new ConfigurationBuilder()
.SetBasePath(Directory.GetCurrentDirectory())
.AddJsonFile("appsettings.json", optional: false, reloadOnChange: true)
.AddJsonFile($"appsettings.{env.EnvironmentName}.json", optional: false, reloadOnChange: true)
.AddEnvironmentVariables()
.Build();
}
设置服务的代码:
private static void SetupServices(HostBuilderContext hostingContext, IServiceCollection serviceCollection)
{
serviceCollection.AddSingleton<IConfiguration>(_configuration);
Log.Logger = new LoggerConfiguration()
.ReadFrom.Configuration(_configuration)
.CreateLogger();
_logger = serviceCollection.BuildServiceProvider().GetRequiredService<ILoggerFactory>().CreateLogger("test");
}
日志记录设置如下:
private static void SetupLogging(HostBuilderContext hostingContext, ILoggingBuilder loggingBuilder)
{
loggingBuilder.SetMinimumLevel(LogLevel.Information);
loggingBuilder.AddConsole();
loggingBuilder.AddDebug();
loggingBuilder.AddSerilog(dispose: true);
}
在我的TimerTrigger方法中,我使用记录器:
[Singleton]
public async static Task Trigger([TimerTrigger("%Job%")]TimerInfo myTimer)
{
_logger.LogInformation($"From Trigger {DateTime.UtcNow.ToString()}");
}
在appSettings.json中,serilog的配置如下:
"Serilog": {
"MinimumLevel": "Information",
"WriteTo": [
{
"Name": "RollingFile",
"Args": {
"pathFormat": ".\\Log\\log-{Date}.txt",
"retainedFileCountLimit": 7,
"fileSizeLimitBytes": 5000000,
"outputTemplate": "{Timestamp:yyyy-MM-dd HH:mm:ss} {EventId} [{Level}] [{Properties}] {Message}{NewLine}{Exception}"
}
}
]
}
当我在本地运行应用程序时,将创建文件夹“ Log”和日志文件。但是,当我发布webjob时,没有在webjob的“ app_data”文件夹中创建“ Log”文件夹或日志文件。谁能帮我弄清楚如何配置serilog使其与webjobs兼容?
答案 0 :(得分:2)
如果要在serilog
中使用WebJob
,则需要安装此软件包Serilog.Extensions.WebJobs
。然后,在配置serilog
之后,您就可以使用它了。
您必须注入ILogger而不是使用全局Log.Logger,否则日志消息将不会写入Microsoft Azure WebJobs仪表板。
关于如何配置和使用serilog
的详细说明,您可以参考此doc。
希望这对您有帮助,如果您还有其他问题,请告诉我。