Skip to content
This repository was archived by the owner on Jun 1, 2024. It is now read-only.

Automatically handle TypeName parameter for different versions of Elasticsearch (<7, 7 or higher) #462

Merged
merged 28 commits into from
Jan 23, 2023
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
71f5031
fix file references in the Visual Studio Solution file.
Aug 16, 2022
705980d
Merge branch 'serilog-contrib:dev' into dev
nenadvicentic Jan 13, 2023
8ae37b9
Do not set `TypeName` by default any more.
Aug 17, 2022
7eae031
Automatically handle `ElasticsearchSinkOptions.TypeName` for differen…
Aug 17, 2022
e52c880
Add unit test for automatic settings of `TypeName` when `DetectElasti…
Aug 19, 2022
7be19ed
Add Elasticsearch v8 template + parsing of Elasticsearch major versio…
Dec 18, 2022
234c1fd
Upgrade to .NET 6.0 and update test-frameworks related NuGet pacakges
Dec 23, 2022
0568290
Merge branch 'dev' of https://github.com/nenadvicentic/serilog-sinks-…
Jan 16, 2023
77450bc
Upgrade to Elasticsearch.NET 7.17.5 + handle new "preflight" request
Jan 17, 2023
fe02aaa
Make `ConnectionStub` a bit more robust .
Jan 18, 2023
f6fcc06
Use `System.Version` to parse Elasticsearch server version number (si…
Jan 18, 2023
dfc8b05
Update NuGet packages
Jan 18, 2023
44b404d
Replace obsolete NuGet package `Serilog.Sinks.ColoredConsole` with `S…
Jan 18, 2023
28c1a88
Update `Serilog.Sinks.PeriodicBatching` package and reimplent `Elasti…
Jan 18, 2023
3741af9
Better handling of Elasticsearch server version number in mocked `Con…
Jan 18, 2023
9dd2fbd
Cleanup: refactor to use single `JsonEquals` method.
Jan 19, 2023
db20a77
Turn on `DetectElasticSearchVersion` option by default. Assume versio…
Jan 19, 2023
1d31d96
Cleanup: remove unused namespaces
Jan 20, 2023
9da3ae6
Cleanup: move `ElasticsearchSinkTestsBase` into `Stubs` subfolder.
Jan 20, 2023
c0a5d30
Refactor: extract `ConnectionStub` into a separate file.
Jan 20, 2023
bad5136
Fix: json comparison in .NET Framework 4.6+
Jan 20, 2023
0937748
Run unit-tests on multiple .NET frameworks.
Jan 20, 2023
a148a8e
Cleanup: remove unused NUnit runner package.
Jan 20, 2023
ee5e25a
Use newer, built-in compilation constants.
Jan 23, 2023
65f62d6
Use standard MSBuild property `IsPackable` for clarity.
Jan 23, 2023
1ae15d1
Cleanup: remove unused package refrence.
Jan 23, 2023
1bd39da
Update GitHub actions
Jan 23, 2023
778eefd
docs: updated documentation to reflect changes in behavior of the sink.
Jan 23, 2023
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Update Serilog.Sinks.PeriodicBatching package and reimplent `Elasti…
…csearchSink` so that it does not use obsolete `PeriodicBatchingSink` constructor.
  • Loading branch information
Nenad Vicentic committed Jan 18, 2023
commit 28c1a887a66ea71436fa7f001bf1a6f0f5769b02
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
<PackageReference Include="Serilog" Version="2.12.0" />
<PackageReference Include="Serilog.Formatting.Compact" Version="1.1.0" />
<PackageReference Include="Serilog.Sinks.File" Version="5.0.0" />
<PackageReference Include="Serilog.Sinks.PeriodicBatching" Version="2.1.1" />
<PackageReference Include="Serilog.Sinks.PeriodicBatching" Version="3.1.0" />
<PackageReference Include="Elasticsearch.Net" Version="7.17.5" />
<PackageReference Include="System.Diagnostics.DiagnosticSource" Version="6.0.0" />
</ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ private InvalidResult GetInvalidPayloadAsync(DynamicResponse baseResult, List<st
bool hasErrors = false;
foreach (dynamic item in items)
{
var itemIndex = item?[ElasticsearchSink.BulkAction(_elasticOpType)];
var itemIndex = item?[BatchedElasticsearchSink.BulkAction(_elasticOpType)];
long? status = itemIndex?["status"];
i++;
if (!status.HasValue || status < 300)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ protected override List<string> FinishPayLoad()
protected override void AddToPayLoad(string nextLine)
{
var indexName = _getIndexForEvent(nextLine, _date);
var action = ElasticsearchSink.CreateElasticAction(
var action = BatchedElasticsearchSink.CreateElasticAction(
opType: _elasticOpType,
indexName: indexName, pipelineName: _pipelineName,
id: _count + "_" + Guid.NewGuid(),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,26 +25,40 @@

namespace Serilog.Sinks.Elasticsearch
{
public sealed class ElasticsearchSink : PeriodicBatchingSink
{
public ElasticsearchSink(ElasticsearchSinkOptions options)
: this(
new BatchedElasticsearchSink(options),
new PeriodicBatchingSinkOptions
{
BatchSizeLimit = options.BatchPostingLimit,
Period = options.Period,
EagerlyEmitFirstEvent = true,
QueueLimit = (options.QueueSizeLimit == -1) ? null : new int?(options.QueueSizeLimit)
}
)
{
}

private ElasticsearchSink(IBatchedLogEventSink batchedSink, PeriodicBatchingSinkOptions options)
: base(batchedSink, options)
{
}
}
/// <summary>
/// Writes log events as documents to ElasticSearch.
/// </summary>
public class ElasticsearchSink : PeriodicBatchingSink
internal sealed class BatchedElasticsearchSink : IBatchedLogEventSink
{

private readonly ElasticsearchSinkState _state;

/// <summary>
/// Creates a new ElasticsearchSink instance with the provided options
/// </summary>
/// <param name="options">Options configuring how the sink behaves, may NOT be null</param>
public ElasticsearchSink(ElasticsearchSinkOptions options)
: base(options.BatchPostingLimit, options.Period, options.QueueSizeLimit)
public BatchedElasticsearchSink(ElasticsearchSinkOptions options)
{
_state = ElasticsearchSinkState.Create(options);
_state.DiscoverClusterVersion();
_state.RegisterTemplateIfNeeded();
}

/// <summary>
/// Emit a batch of log events, running to completion synchronously.
/// </summary>
Expand All @@ -54,7 +68,7 @@ public ElasticsearchSink(ElasticsearchSinkOptions options)
/// or <see cref="M:Serilog.Sinks.PeriodicBatching.PeriodicBatchingSink.EmitBatchAsync(System.Collections.Generic.IEnumerable{Serilog.Events.LogEvent})" />,
/// not both.
/// </remarks>
protected override async Task EmitBatchAsync(IEnumerable<LogEvent> events)
public async Task EmitBatchAsync(IEnumerable<LogEvent> events)
{
DynamicResponse result;

Expand All @@ -71,42 +85,32 @@ protected override async Task EmitBatchAsync(IEnumerable<LogEvent> events)
HandleResponse(events, result);
}

/// <summary>
/// Emit a batch of log events, running to completion synchronously.
/// </summary>
/// <param name="events">The events to emit.</param>
/// <returns>Response from Elasticsearch</returns>
protected virtual Task<T> EmitBatchCheckedAsync<T>(IEnumerable<LogEvent> events) where T : class, IElasticsearchResponse, new()
public Task OnEmptyBatchAsync()
{
// ReSharper disable PossibleMultipleEnumeration
if (events == null || !events.Any())
return Task.FromResult<T>(default(T));

var payload = CreatePayload(events);
return _state.Client.BulkAsync<T>(PostData.MultiJson(payload));
return Task.CompletedTask;
}

/// <summary>
/// Emit a batch of log events, running to completion synchronously.
/// </summary>
/// <param name="events">The events to emit.</param>
/// <returns>Response from Elasticsearch</returns>
protected virtual T EmitBatchChecked<T>(IEnumerable<LogEvent> events) where T : class, IElasticsearchResponse, new()
private Task<T> EmitBatchCheckedAsync<T>(IEnumerable<LogEvent> events) where T : class, IElasticsearchResponse, new()
{
// ReSharper disable PossibleMultipleEnumeration
if (events == null || !events.Any())
return null;
return Task.FromResult<T>(default(T));

var payload = CreatePayload(events);
return _state.Client.Bulk<T>(PostData.MultiJson(payload));
return _state.Client.BulkAsync<T>(PostData.MultiJson(payload));
}

/// <summary>
/// Handles the exceptions.
/// </summary>
/// <param name="ex"></param>
/// <param name="events"></param>
protected virtual void HandleException(Exception ex, IEnumerable<LogEvent> events)
private void HandleException(Exception ex, IEnumerable<LogEvent> events)
{
if (_state.Options.EmitEventFailure.HasFlag(EmitEventFailureHandling.WriteToSelfLog))
{
Expand Down Expand Up @@ -153,18 +157,6 @@ protected virtual void HandleException(Exception ex, IEnumerable<LogEvent> event
throw ex;
}

// Helper function: checks if a given dynamic member / dictionary key exists at runtime
private static bool HasProperty(dynamic settings, string name)
{
if (settings is IDictionary<string, object>)
return ((IDictionary<string, object>)settings).ContainsKey(name);

if (settings is System.Dynamic.DynamicObject)
return ((System.Dynamic.DynamicObject)settings).GetDynamicMemberNames().Contains(name);

return settings.GetType().GetProperty(name) != null;
}

private IEnumerable<string> CreatePayload(IEnumerable<LogEvent> events)
{
if (!_state.TemplateRegistrationSuccess && _state.Options.RegisterTemplateFailure == RegisterTemplateRecovery.FailSink)
Expand Down Expand Up @@ -280,7 +272,7 @@ internal static object CreateElasticAction(ElasticOpType opType, string indexNam
: new ElasticIndexAction(actionPayload);
return action;
}

sealed class ElasticCreateAction
{
public ElasticCreateAction(ElasticActionPayload payload)
Expand Down