init
This commit is contained in:
@@ -0,0 +1,31 @@
|
||||
using DouyinApi.Common;
|
||||
using DouyinApi.Serilog.Sink;
|
||||
using Serilog;
|
||||
using Serilog.Sinks.PeriodicBatching;
|
||||
|
||||
namespace DouyinApi.Serilog.Configuration;
|
||||
|
||||
public static class LogBatchingSinkConfiguration
|
||||
{
|
||||
public static LoggerConfiguration WriteToLogBatching(this LoggerConfiguration loggerConfiguration)
|
||||
{
|
||||
if (!AppSettings.app("AppSettings", "LogToDb").ObjToBool())
|
||||
{
|
||||
return loggerConfiguration;
|
||||
}
|
||||
|
||||
var exampleSink = new LogBatchingSink();
|
||||
|
||||
var batchingOptions = new PeriodicBatchingSinkOptions
|
||||
{
|
||||
BatchSizeLimit = 500,
|
||||
Period = TimeSpan.FromSeconds(1),
|
||||
EagerlyEmitFirstEvent = true,
|
||||
QueueLimit = 10000
|
||||
};
|
||||
|
||||
var batchingSink = new PeriodicBatchingSink(exampleSink, batchingOptions);
|
||||
|
||||
return loggerConfiguration.WriteTo.Sink(batchingSink);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user