Skip to content

Commit abdc246

Browse files
author
Prasad Muley
committed
Added default value to BatchIntervalInMiliseconds parameter of HECConfiguration
1 parent b31322c commit abdc246

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/SplunkLogger/Configurations/HECConfiguration.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@ public enum ChannelIdOption
1414
}
1515

1616
/// <summary>
17-
/// Gets or sets the batch interval in miliseconds.
17+
/// Gets or sets the batch interval in miliseconds (default 1000).
1818
/// </summary>
19-
public uint BatchIntervalInMiliseconds { get; set; }
19+
public uint BatchIntervalInMiliseconds { get; set; } = 1000;
2020

2121
/// <summary>
2222
/// Gets or sets the batch size count.

0 commit comments

Comments
 (0)