Skip to content

Commit aaa9e96

Browse files
authored
Updates for UDP and TCP sinks (#181)
1 parent edc2e81 commit aaa9e96

File tree

7 files changed

+59
-32
lines changed

7 files changed

+59
-32
lines changed

src/Serilog.Sinks.Splunk/Sinks/Splunk/EventCollectorSink.cs

+3-3
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ public class EventCollectorSink : IBatchedLogEventSink
5656
/// <param name="eventCollectorToken">The token to use when authenticating with the event collector</param>
5757
/// <param name="formatProvider">The format provider used when rendering the message</param>
5858
/// <param name="renderTemplate">Whether to render the message template</param>
59-
/// <param name="renderMessage">Include "RenderedMessage" parameter from output JSON message.</param>
59+
/// <param name="renderMessage">Include "RenderedMessage" parameter in output JSON message.</param>
6060
/// <param name="subSecondPrecision">Timestamp sub-second precision. Splunk props.conf setup is required.</param>
6161
public EventCollectorSink(
6262
string splunkHost,
@@ -89,7 +89,7 @@ public EventCollectorSink(
8989
/// <param name="sourceType">The source type of the event</param>
9090
/// <param name="host">The host of the event</param>
9191
/// <param name="messageHandler">The handler used to send HTTP requests</param>
92-
/// <param name="renderMessage">Include "RenderedMessage" parameter from output JSON message.</param>
92+
/// <param name="renderMessage">Include "RenderedMessage" parameter in output JSON message.</param>
9393
/// <param name="subSecondPrecision">Timestamp sub-second precision. Splunk props.conf setup is required.</param>
9494
public EventCollectorSink(
9595
string splunkHost,
@@ -127,7 +127,7 @@ public EventCollectorSink(
127127
/// <param name="sourceType">The source type of the event</param>
128128
/// <param name="host">The host of the event</param>
129129
/// <param name="messageHandler">The handler used to send HTTP requests</param>
130-
/// <param name="renderMessage">Include "RenderedMessage" parameter from output JSON message.</param>
130+
/// <param name="renderMessage">Include "RenderedMessage" parameter in output JSON message.</param>
131131
/// <param name="subSecondPrecision">Timestamp sub-second precision. Splunk props.conf setup is required.</param>
132132
public EventCollectorSink(
133133
string splunkHost,

src/Serilog.Sinks.Splunk/Sinks/Splunk/SplunkJsonFormatter.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ public SplunkJsonFormatter(
8686
/// <param name="host">The host of the event</param>
8787
/// <param name="customFields">Object that describes extra splunk fields that should be indexed with event see: http://dev.splunk.com/view/event-collector/SP-CAAAFB6 </param>
8888
/// <param name="subSecondPrecision">Timestamp sub-second precision. Splunk props.conf setup is required.</param>
89-
/// <param name="renderMessage">Include "RenderedMessage" parameter from output JSON message.</param>
89+
/// <param name="renderMessage">Include "RenderedMessage" parameter in output JSON message.</param>
9090
public SplunkJsonFormatter(
9191
bool renderTemplate,
9292
bool renderMessage,

src/Serilog.Sinks.Splunk/SplunkLoggingConfigurationExtensions.cs

+4-3
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ public static class SplunkLoggingConfigurationExtensions
4343
/// <param name="restrictedToMinimumLevel">The minimum log event level required in order to write an event to the sink.</param>
4444
/// <param name="formatProvider">Supplies culture-specific formatting information, or null.</param>
4545
/// <param name="renderTemplate">If true, the message template will be rendered</param>
46-
/// <param name="renderMessage">Include "RenderedMessage" parameter from output JSON message.</param>
46+
/// <param name="renderMessage">Include "RenderedMessage" parameter in output JSON message.</param>
4747
/// <param name="batchIntervalInSeconds">The interval in seconds that the queue should be instpected for batching</param>
4848
/// <param name="batchSizeLimit">The size of the batch</param>
4949
/// <param name="queueLimit">Maximum number of events in the queue</param>
@@ -92,6 +92,7 @@ public static LoggerConfiguration EventCollector(
9292
formatProvider,
9393
renderTemplate,
9494
renderMessage,
95+
messageHandler: messageHandler,
9596
subSecondPrecision: subSecondPrecision);
9697

9798
var batchingSink = new PeriodicBatchingSink(eventCollectorSink, batchingOptions);
@@ -172,7 +173,7 @@ public static LoggerConfiguration EventCollector(
172173
/// <param name="messageHandler">The handler used to send HTTP requests</param>
173174
/// <param name="levelSwitch">A switch allowing the pass-through minimum level to be changed at runtime.</param>
174175
/// <param name="fields">Customfields that will be indexed in splunk with this event</param>
175-
/// <param name="renderMessage">Include "RenderedMessage" parameter from output JSON message.</param>
176+
/// <param name="renderMessage">Include "RenderedMessage" parameter in output JSON message.</param>
176177
/// <param name="subSecondPrecision">Timestamp sub-second precision. Splunk props.conf setup is required.</param>
177178
/// <returns></returns>
178179
public static LoggerConfiguration EventCollector(
@@ -228,4 +229,4 @@ public static LoggerConfiguration EventCollector(
228229
return configuration.Sink(batchingSink, restrictedToMinimumLevel, levelSwitch);
229230
}
230231
}
231-
}
232+
}

src/Serilog.Sinks.TCP/Sinks/Splunk/TcpSink.cs

+5-4
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,9 @@ public class TcpSink : ILogEventSink, IDisposable
3939
/// <param name="connectionInfo">Connection info used for connecting against Splunk.</param>
4040
/// <param name="formatProvider">Optional format provider</param>
4141
/// <param name="renderTemplate">If true, the message template will be rendered</param>
42-
public TcpSink(SplunkTcpSinkConnectionInfo connectionInfo, IFormatProvider formatProvider = null, bool renderTemplate = true)
43-
: this(connectionInfo, CreateDefaultFormatter(formatProvider, renderTemplate))
42+
/// <param name="renderMessage">Include "RenderedMessage" parameter in output JSON message.</param>
43+
public TcpSink(SplunkTcpSinkConnectionInfo connectionInfo, IFormatProvider formatProvider = null, bool renderTemplate = true, bool renderMessage = true)
44+
: this(connectionInfo, CreateDefaultFormatter(formatProvider, renderTemplate, renderMessage))
4445
{
4546
}
4647

@@ -94,9 +95,9 @@ private static TcpSocketWriter CreateSocketWriter(SplunkTcpSinkConnectionInfo co
9495
return new TcpSocketWriter(connectionInfo.Host, connectionInfo.Port, reconnectionPolicy, connectionInfo.MaxQueueSize);
9596
}
9697

97-
private static SplunkJsonFormatter CreateDefaultFormatter(IFormatProvider formatProvider, bool renderTemplate)
98+
private static SplunkJsonFormatter CreateDefaultFormatter(IFormatProvider formatProvider, bool renderTemplate, bool renderMessage = true)
9899
{
99-
return new SplunkJsonFormatter(renderTemplate, formatProvider);
100+
return new SplunkJsonFormatter(renderTemplate, renderMessage, formatProvider);
100101
}
101102
}
102103
}

src/Serilog.Sinks.TCP/SplunkLoggingConfigurationExtensions.cs

+4-3
Original file line numberDiff line numberDiff line change
@@ -33,11 +33,12 @@ public static class LoggerConfigurationSplunkExtensions
3333
/// <param name="restrictedToMinimumLevel">The minimum log event level required in order to write an event to the sink.</param>
3434
/// <param name="formatProvider">Supplies culture-specific formatting information, or null.</param>
3535
/// <param name="renderTemplate">If true, the message template is rendered</param>
36+
/// <param name="renderMessage">Include "RenderedMessage" parameter in output JSON message.</param>
3637
/// <returns></returns>
3738
public static LoggerConfiguration SplunkViaTcp(this LoggerSinkConfiguration loggerConfiguration, SplunkTcpSinkConnectionInfo connectionInfo,
38-
LogEventLevel restrictedToMinimumLevel = LevelAlias.Minimum, IFormatProvider formatProvider = null, bool renderTemplate = true)
39+
LogEventLevel restrictedToMinimumLevel = LevelAlias.Minimum, IFormatProvider formatProvider = null, bool renderTemplate = true, bool renderMessage = true)
3940
{
40-
var sink = new TcpSink(connectionInfo, formatProvider, renderTemplate);
41+
var sink = new TcpSink(connectionInfo, formatProvider, renderTemplate, renderMessage);
4142

4243
return loggerConfiguration.Sink(sink, restrictedToMinimumLevel);
4344
}
@@ -58,4 +59,4 @@ public static LoggerConfiguration SplunkViaTcp(this LoggerSinkConfiguration logg
5859
return loggerConfiguration.Sink(sink, restrictedToMinimumLevel);
5960
}
6061
}
61-
}
62+
}

src/Serilog.Sinks.UDP/Sinks/Splunk/UdpSink.cs

+13-12
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ namespace Serilog.Sinks.Splunk
2828
/// <summary>
2929
/// A sink that logs to Splunk over UDP
3030
/// </summary>
31-
public class UdpSink : PeriodicBatchingSink
31+
public class UdpSink : IBatchedLogEventSink
3232
{
3333
private readonly SplunkUdpSinkConnectionInfo _connectionInfo;
3434
private readonly ITextFormatter _formatter;
@@ -40,8 +40,9 @@ public class UdpSink : PeriodicBatchingSink
4040
/// <param name="connectionInfo">Connection info used for connecting against Splunk.</param>
4141
/// <param name="formatProvider">Optional format provider</param>
4242
/// <param name="renderTemplate">If true, the message template will be rendered</param>
43-
public UdpSink(SplunkUdpSinkConnectionInfo connectionInfo, IFormatProvider formatProvider = null, bool renderTemplate = true)
44-
: this(connectionInfo, CreateDefaultFormatter(formatProvider, renderTemplate))
43+
/// <param name="renderMessage">Include "RenderedMessage" parameter in output JSON message.</param>
44+
public UdpSink(SplunkUdpSinkConnectionInfo connectionInfo, IFormatProvider formatProvider = null, bool renderTemplate = true, bool renderMessage = true)
45+
: this(connectionInfo, CreateDefaultFormatter(formatProvider, renderTemplate, renderMessage))
4546
{
4647
}
4748

@@ -51,7 +52,6 @@ public UdpSink(SplunkUdpSinkConnectionInfo connectionInfo, IFormatProvider forma
5152
/// <param name="connectionInfo">Connection info used for connecting against Splunk.</param>
5253
/// <param name="formatter">Custom formatter to use if you e.g. do not want to use the JsonFormatter.</param>
5354
public UdpSink(SplunkUdpSinkConnectionInfo connectionInfo, ITextFormatter formatter)
54-
: base(connectionInfo.BatchPostingLimit, connectionInfo.Period, connectionInfo.QueueSizeLimit)
5555
{
5656
_connectionInfo = connectionInfo;
5757
_formatter = formatter;
@@ -74,11 +74,9 @@ private void Connect()
7474
}
7575

7676

77-
protected override void Dispose(bool disposing)
77+
protected void Dispose(bool disposing)
7878
{
7979
DisposeSocket();
80-
81-
base.Dispose(true);
8280
}
8381

8482
private void DisposeSocket()
@@ -91,15 +89,15 @@ private void DisposeSocket()
9189
/// <summary>
9290
/// Emit a batch of log events, running to completion synchronously.
9391
/// </summary>
94-
/// <param name="events">The events to emit.</param>
92+
/// <param name="batch">The events to emit.</param>
9593
/// <remarks>
9694
/// Override either <see cref="M:Serilog.Sinks.PeriodicBatching.PeriodicBatchingSink.EmitBatch(System.Collections.Generic.IEnumerable{Serilog.Events.LogEvent})" />
9795
/// or <see cref="M:Serilog.Sinks.PeriodicBatching.PeriodicBatchingSink.EmitBatchAsync(System.Collections.Generic.IEnumerable{Serilog.Events.LogEvent})" />,
9896
/// not both.
9997
/// </remarks>
100-
protected override async Task EmitBatchAsync(IEnumerable<LogEvent> events)
98+
public async Task EmitBatchAsync(IEnumerable<LogEvent> batch)
10199
{
102-
foreach (var logEvent in events)
100+
foreach (var logEvent in batch)
103101
{
104102
byte[] data = Convert(logEvent);
105103

@@ -118,10 +116,13 @@ protected override async Task EmitBatchAsync(IEnumerable<LogEvent> events)
118116
}
119117

120118

121-
private static SplunkJsonFormatter CreateDefaultFormatter(IFormatProvider formatProvider, bool renderTemplate)
119+
private static SplunkJsonFormatter CreateDefaultFormatter(IFormatProvider formatProvider, bool renderTemplate, bool renderMessage)
122120
{
123-
return new SplunkJsonFormatter(renderTemplate, formatProvider);
121+
return new SplunkJsonFormatter(renderTemplate, renderMessage, formatProvider);
124122
}
123+
124+
/// <inheritdoc />
125+
public Task OnEmptyBatchAsync() => Task.CompletedTask;
125126
}
126127
}
127128

src/Serilog.Sinks.UDP/SplunkLoggingConfigurationExtensions.cs

+29-6
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515
using Serilog.Configuration;
1616
using Serilog.Events;
1717
using Serilog.Formatting;
18+
using Serilog.Sinks.PeriodicBatching;
1819
using Serilog.Sinks.Splunk;
1920
using System;
2021

@@ -33,17 +34,29 @@ public static class LoggerConfigurationSplunkExtensions
3334
/// <param name="restrictedToMinimumLevel">The minimum log event level required in order to write an event to the sink.</param>
3435
/// <param name="formatProvider">Supplies culture-specific formatting information, or null.</param>
3536
/// <param name="renderTemplate">If true, the message template is rendered</param>
37+
/// <param name="renderMessage">Include "RenderedMessage" parameter in output JSON message.</param>
3638
/// <returns></returns>
3739
public static LoggerConfiguration SplunkViaUdp(
3840
this LoggerSinkConfiguration loggerConfiguration,
3941
SplunkUdpSinkConnectionInfo connectionInfo,
4042
LogEventLevel restrictedToMinimumLevel = LevelAlias.Minimum,
4143
IFormatProvider formatProvider = null,
42-
bool renderTemplate = true)
44+
bool renderTemplate = true,
45+
bool renderMessage = true)
4346
{
44-
var sink = new UdpSink(connectionInfo, formatProvider, renderTemplate);
47+
var batchingOptions = new PeriodicBatchingSinkOptions
48+
{
49+
BatchSizeLimit = connectionInfo.BatchPostingLimit,
50+
Period = connectionInfo.Period,
51+
EagerlyEmitFirstEvent = true,
52+
QueueLimit = connectionInfo.QueueSizeLimit
53+
};
4554

46-
return loggerConfiguration.Sink(sink, restrictedToMinimumLevel);
55+
var sink = new UdpSink(connectionInfo, formatProvider, renderTemplate, renderMessage);
56+
57+
var batchingSink = new PeriodicBatchingSink(sink, batchingOptions);
58+
59+
return loggerConfiguration.Sink(batchingSink, restrictedToMinimumLevel);
4760
}
4861

4962
/// <summary>
@@ -60,9 +73,19 @@ public static LoggerConfiguration SplunkViaUdp(
6073
ITextFormatter formatter,
6174
LogEventLevel restrictedToMinimumLevel = LevelAlias.Minimum)
6275
{
76+
var batchingOptions = new PeriodicBatchingSinkOptions
77+
{
78+
BatchSizeLimit = connectionInfo.BatchPostingLimit,
79+
Period = connectionInfo.Period,
80+
EagerlyEmitFirstEvent = true,
81+
QueueLimit = connectionInfo.QueueSizeLimit
82+
};
83+
6384
var sink = new UdpSink(connectionInfo, formatter);
64-
65-
return loggerConfiguration.Sink(sink, restrictedToMinimumLevel);
85+
86+
var batchingSink = new PeriodicBatchingSink(sink, batchingOptions);
87+
88+
return loggerConfiguration.Sink(batchingSink, restrictedToMinimumLevel);
6689
}
6790
}
68-
}
91+
}

0 commit comments

Comments
 (0)