public AzureDataExplorerSinkOptions()

in src/Serilog.Sinks.AzureDataExplorer/AzureDataExplorerSinkOptions.cs [204:215]


        public AzureDataExplorerSinkOptions()
        {
            this.Period = TimeSpan.FromSeconds(10);
            this.BatchPostingLimit = 1000;
            this.QueueSizeLimit = 100000;
            this.BufferFileRollingInterval = RollingInterval.Hour;
            this.BufferFileCountLimit = 20;
            this.BufferFileSizeLimitBytes = 10L * 1024 * 1024;
            this.BufferFileOutputFormat =
                "{Timestamp:yyyy-MM-dd HH:mm:ss.fff zzz} [{Level:u3}] {Message:lj}{NewLine}{Exception}";
            this.FlushImmediately = false;
        }