You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
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)
* fix file references in the Visual Studio Solution file.
* Do not set `TypeName` by default any more.
* last version of Elasticsearch that supported user-defined `_type` field - v6.8.x is running out of support on 2022-02-10 (https://www.elastic.co/support/eol)
* Automatically handle `ElasticsearchSinkOptions.TypeName` for different versions Elasticsearch (<7, 7+) when `ElasticsearchSinkOptions.DetectElasticsearchVersion` is enabled.
* Add unit test for automatic settings of `TypeName` when `DetectElasticsearchVersion` is set to `true`.
- Two methods used - instantiate `ElasticsearchSinkState` directly and via `LoggerConfiguration`
* Add Elasticsearch v8 template + parsing of Elasticsearch major version to `int` + decision branch for which version of index-template API to use + removal of obsolete `ElasticsearchTemplateProvider.GetTemplate(...)` method overload.
* Upgrade to .NET 6.0 and update test-frameworks related NuGet pacakges
* Upgrade to Elasticsearch.NET 7.17.5 + handle new "preflight" request
https://discuss.elastic.co/t/the-client-is-unable-to-verify-that-the-server-is-elasticsearch-due-to-an-unsuccessful-product-check-call-some-functionality-may-not-be-compatible-if-the-server-is-running-an-unsupported-product/310969/9
"The 7.16 client performs a pre-flight GET request to the root URL of the server before the first request.".
* Make `ConnectionStub` a bit more robust .
* Use `System.Version` to parse Elasticsearch server version number (similar to what `Elasticsearch.Net` does)
* Update NuGet packages
* Replace obsolete NuGet package `Serilog.Sinks.ColoredConsole` with `Serilog.Sinks.Console`
* Update `Serilog.Sinks.PeriodicBatching` package and reimplent `ElasticsearchSink` so that it does not use obsolete `PeriodicBatchingSink` constructor.
* Better handling of Elasticsearch server version number in mocked `ConnectionStub`
* Cleanup: refactor to use single `JsonEquals` method.
* Turn on `DetectElasticSearchVersion` option by default. Assume version 7 on fallback.
* Cleanup: remove unused namespaces
* Cleanup: move `ElasticsearchSinkTestsBase` into `Stubs` subfolder.
* Refactor: extract `ConnectionStub` into a separate file.
* Fix: json comparison in .NET Framework 4.6+
* Run unit-tests on multiple .NET frameworks.
* Cleanup: remove unused NUnit runner package.
* Use newer, built-in compilation constants.
https://learn.microsoft.com/en-us/dotnet/csharp/language-reference/preprocessor-directives#conditional-compilation
* Use standard MSBuild property `IsPackable` for clarity.
* Cleanup: remove unused package refrence.
* Update GitHub actions
* docs: updated documentation to reflect changes in behavior of the sink.
Co-authored-by: Nenad Vicentic <vicentic@immounited.com>
Copy file name to clipboardexpand all lines: CHANGES.md
+20
Original file line number
Diff line number
Diff line change
@@ -6,6 +6,26 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
6
6
7
7
## [Unreleased]
8
8
9
+
## [9.0.0] - 2023-01-23
10
+
11
+
### Added
12
+
- PR #462
13
+
14
+
### Major Changes
15
+
-`DetectElasticsearchVersion` is set to `true` by default.
16
+
- When `DetectElasticsearchVersion` is set to `false` Elasticsearch version 7 is assumed (as it has broadest wire-compatibility at the moment - v7 and v8)
17
+
- When `DetectElasticsearchVersion` is set to `true`, `TypeName` is handled automatically across different versions of Elasticserach (6.x to 8.x). For example, user-defined name will NOT be used on v7 and v8. Also, correct templates endpoint will be picked up.
18
+
- Elasticsearch 8.x endpoint for templates is supported (`_index_template`)
19
+
- Internal class `ElasticsearchVersionManager` has been added, mainly to handle situations where detection of version fails or when it is disabled. In the case of fallback, sink will assume "default" version 7.
20
+
- Elasticsearch.NET client version 7.15.2 (latest version 7, until new `Elastic.Clients.Elasticsearch` 8.x catches up functional parity with 7.x)
21
+
22
+
### Other Changes
23
+
- Nuget pacakges have been updated (except for the Elasticsearch integration-tests related packages)
24
+
- Most of the `ElasticserachSink` functionality has been moved into internal `BatchedElasticsearchSink` class that inherits from `IBatchedLogEventSink`, so it complies with new recommended way of integration with `PeriodicBatchingSink` and we don't use obsolete constructors.
25
+
-`ConnectionStub` was moved out of `ElasticsearchSinkTestsBase` and extended. Both are now in `/Stubs` subfolder. Newer versions of Elasticsearch.NET client are now using "pre-flight" request to determine if endpoint is Elasticsearch and if it is indeed between 6.x and 8.x. `ConnectionStub` had to accommodate for that.
26
+
- Unit tests have been fixed/added accordingly, running on multiple target frameworks (`net6`, `net7` and `net48`).
27
+
- Built-in .NET SDK conditional compilation symbols are now used (e.g NETFRAMEWORK).
Copy file name to clipboardexpand all lines: README.md
+68-2
Original file line number
Diff line number
Diff line change
@@ -30,6 +30,7 @@ The Serilog Elasticsearch sink project is a sink (basically a writer) for the Se
30
30
* Starting from version 3, compatible with Elasticsearch 2.
31
31
* Version 6.x supports the new Elasticsearch.net version 6.x library.
32
32
* From version 8.x there is support for Elasticsearch.net version 7.
33
+
* From version 9.x there is support for Elasticsearch.net version 8. Version detection is enabled by default, in which case `TypeName` is handled automatically across major versions 6, 7 and 8.
33
34
34
35
35
36
## Quick start
@@ -40,16 +41,80 @@ The Serilog Elasticsearch sink project is a sink (basically a writer) for the Se
40
41
Install-Package serilog.sinks.elasticsearch
41
42
```
42
43
43
-
Register the sink in code or using the appSettings reader (from v2.0.42+) as shown below. Make sure to specify the version of ES you are targeting. Be aware that the AutoRegisterTemplate option will not overwrite an existing template.
44
+
Simplest way to register this sink is to use default configuration:
Copy file name to clipboardexpand all lines: src/Serilog.Sinks.Elasticsearch/LoggerConfigurationElasticSearchExtensions.cs
+7-5
Original file line number
Diff line number
Diff line change
@@ -143,6 +143,7 @@ public static LoggerConfiguration Elasticsearch(
143
143
/// <param name="failureSink">Sink to use when Elasticsearch is unable to accept the events. This is optionally and depends on the EmitEventFailure setting.</param>
144
144
/// <param name="singleEventSizePostingLimit"><see cref="ElasticsearchSinkOptions.SingleEventSizePostingLimit"/>The maximum length of an event allowed to be posted to Elasticsearch.default null</param>
145
145
/// <param name="templateCustomSettings">Add custom elasticsearch settings to the template</param>
146
+
/// <param name="detectElasticsearchVersion">Turns on detection of elasticsearch version via background HTTP call. This will also set `TypeName` automatically, according to the version of Elasticsearch.</param>
146
147
/// <param name="batchAction">Configures the OpType being used when inserting document in batch. Must be set to create for data streams.</param>
147
148
/// <returns>LoggerConfiguration object</returns>
148
149
/// <exception cref="ArgumentNullException"><paramref name="nodeUris"/> is <see langword="null" />.</exception>
@@ -151,7 +152,7 @@ public static LoggerConfiguration Elasticsearch(
151
152
stringnodeUris,
152
153
stringindexFormat=null,
153
154
stringtemplateName=null,
154
-
stringtypeName="logevent",
155
+
stringtypeName=null,
155
156
intbatchPostingLimit=50,
156
157
intperiod=2,
157
158
boolinlineFields=false,
@@ -166,7 +167,7 @@ public static LoggerConfiguration Elasticsearch(
/// Emit a batch of log events, running to completion synchronously.
50
63
/// </summary>
@@ -54,7 +67,7 @@ public ElasticsearchSink(ElasticsearchSinkOptions options)
54
67
/// or <see cref="M:Serilog.Sinks.PeriodicBatching.PeriodicBatchingSink.EmitBatchAsync(System.Collections.Generic.IEnumerable{Serilog.Events.LogEvent})" />,
0 commit comments