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
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
Use System.Version to parse Elasticsearch server version number (si…
…milar to what `Elasticsearch.Net` does)
  • Loading branch information
Nenad Vicentic committed Jan 18, 2023
commit f6fcc06442dabf1806fc3d92c555836537aaddda
Original file line number Diff line number Diff line change
Expand Up @@ -51,11 +51,10 @@ public static ElasticsearchSinkState Create(ElasticsearchSinkOptions options)
private readonly string _templateName;
private readonly string _templateMatchString;
private static readonly Regex IndexFormatRegex = new Regex(@"^(.*)(?:\{0\:.+\})(.*)$");
private string _discoveredVersion;

public string DiscoveredVersion => _discoveredVersion;
public int DiscoveredMajorVersion { get; private set; }
private bool IncludeTypeName => DiscoveredMajorVersion >= 7;
public Version DiscoveredVersion { get; private set; }
private bool IncludeTypeName => DiscoveredVersion.Major >= 7;

public ElasticsearchSinkOptions Options => _options;
public IElasticLowLevelClient Client => _client;
public ITextFormatter Formatter => _formatter;
Expand All @@ -82,6 +81,11 @@ private ElasticsearchSinkState(ElasticsearchSinkOptions options)

_options = options;

if (_options.DetectElasticsearchVersion == false)
{
DiscoveredVersion = new Version(); // Default
}


var configuration = new ConnectionConfiguration(options.ConnectionPool, options.Connection, options.Serializer)
.RequestTimeout(options.ConnectionTimeout);
Expand Down Expand Up @@ -166,7 +170,7 @@ public void RegisterTemplateIfNeeded()
}

if (_options.DetectElasticsearchVersion == true) {
_options.AutoRegisterTemplateVersion = DiscoveredMajorVersion switch
_options.AutoRegisterTemplateVersion = DiscoveredVersion.Major switch
{
8 => AutoRegisterTemplateVersion.ESv8,
7 => AutoRegisterTemplateVersion.ESv7,
Expand All @@ -178,7 +182,7 @@ public void RegisterTemplateIfNeeded()
}

StringResponse result;
if (_options.DetectElasticsearchVersion = true && DiscoveredMajorVersion < 8)
if (_options.DetectElasticsearchVersion = true && DiscoveredVersion.Major < 8)
{
result = _client.Indices.PutTemplateForAll<StringResponse>(_templateName, GetTemplatePostData(),
new PutIndexTemplateRequestParameters
Expand Down Expand Up @@ -251,7 +255,7 @@ private object GetTemplateData()

return ElasticsearchTemplateProvider.GetTemplate(
_options,
DiscoveredMajorVersion,
DiscoveredVersion.Major,
settings,
_templateMatchString,
_options.AutoRegisterTemplateVersion);
Expand All @@ -270,23 +274,19 @@ public void DiscoverClusterVersion()
});
if (!response.Success) return;

_discoveredVersion = response.Body.Split(new[] { '\r', '\n' }, StringSplitOptions.RemoveEmptyEntries)
var discoveredVersion = response.Body.Split(new[] { '\r', '\n' }, StringSplitOptions.RemoveEmptyEntries)
.FirstOrDefault();

if (_discoveredVersion == null)
if (discoveredVersion == null)
return;


if (int.TryParse(_discoveredVersion.Substring(0, _discoveredVersion.IndexOf('.')), out int majorVersion))
{
DiscoveredMajorVersion = majorVersion;
if (DiscoveredMajorVersion < 7)
_options.TypeName = String.IsNullOrWhiteSpace(_options.TypeName)
? ElasticsearchSinkOptions.DefaultTypeName // "logevent"
: _options.TypeName;
else
_options.TypeName = null;
}
this.DiscoveredVersion = new Version(discoveredVersion);
if (DiscoveredVersion.Major < 7)
_options.TypeName = string.IsNullOrWhiteSpace(_options.TypeName)
? ElasticsearchSinkOptions.DefaultTypeName // "logevent"
: _options.TypeName;
else
_options.TypeName = null;
}
catch (Exception ex)
{
Expand Down