serilog-sinks-elasticsearch
serilog-sinks-elasticsearch copied to clipboard
A Serilog sink that writes events to Elasticsearch
Bumps [actions/setup-dotnet](https://github.com/actions/setup-dotnet) from 2 to 3. Release notes Sourced from actions/setup-dotnet's releases. v3.0.0 This major release includes the following changes: #219 New input dotnet-quality was added in #315: - uses:...
Bumps [Serilog.Sinks.PeriodicBatching](https://github.com/serilog/serilog-sinks-periodicbatching) from 2.1.1 to 3.1.0. Release notes Sourced from Serilog.Sinks.PeriodicBatching's releases. v3.1.0 #58 - restore obsolete inheritance-based API (@nblumhardt) v3.0.0 #56 - IAsyncDisposable support; drop obsolete inheritance-based APIs (@nblumhardt)...
Automatically handle `TypeName` parameter for different versions of Elasticsearch (<7, 7 or higher)
**What issue does this PR address?** - Changes default `TypeName` behavior to fit compatibility with Elasticsearch version 7, 8 and higher, instead of 6 or lower. - When options `ElasticsearchSinkOptions.DetectElasticsearchVersion`...
**Does this issue relate to a new *feature* or an existing *bug*?** - [x] Bug **What version of Serilog.Sinks.Elasticsearch is affected? Please list the related NuGet package.**  **What is...
in appsettings :"templateCustomSettings" should be object instead of array "templateCustomSettings": { "index.mapping.total_fields.limit": "10000000" } is right "templateCustomSettings": [{ "index.mapping.total_fields.limit": "10000000" }], is wrong
I tested two registration and both do not work *User is ok. when I used this configuration to not ElasticSearch Cloud in Azure this configuration worked correctly Packages: ``` Serilog...
Support read formatStackTraceAsArray from configuration **What issue does this PR address?** When I Add `formatStackTraceAsArray` in my configuration file ,this paramater does not take effect. Like this ``` "WriteTo": [...
This is a suggestion for a *new feature* in version 9. Simplification of the way `Serilog.Sinks.Elasticserach` handles different version of `Elasticsearch` backend. If `TypeName` parameter has not been explicitly specified...
**What issue does this PR address?** Fixing the error when opening `serilog-sinks-elasticsearch.sln` in Visual Studio **Does this PR introduce a breaking change?** No. **Please check if the PR fulfills these...
Hi All, On Quick Start we can see that it is recommended to enable AutoRegisterTemplate option ``` var loggerConfig = new LoggerConfiguration() .WriteTo.Elasticsearch(new ElasticsearchSinkOptions(new Uri("http://localhost:9200") ){ AutoRegisterTemplate = true, AutoRegisterTemplateVersion...