We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c74b417 commit b2b7dc3Copy full SHA for b2b7dc3
src/Serilog.Sinks.UDP/Sinks/Splunk/SplunkUdpSinkConnectionInfo.cs
@@ -36,15 +36,15 @@ public class SplunkUdpSinkConnectionInfo
36
public int Port { get; }
37
38
///<summary>
39
- /// The maximum number of events to post in a single batch. Defaults to: 50.
+ /// The maximum number of events to post in a single batch. Defaults to: 100.
40
/// </summary>
41
- public int BatchPostingLimit { get; set; }
+ public int BatchPostingLimit { get; set; } = 100;
42
43
44
45
/// The time to wait between checking for event batches. Defaults to 2 seconds.
46
47
- public TimeSpan Period { get; set; }
+ public TimeSpan Period { get; set; } = TimeSpan.FromSeconds(2);
48
49
50
/// <summary>
0 commit comments