serilog-sinks-elasticsearch icon indicating copy to clipboard operation
serilog-sinks-elasticsearch copied to clipboard

A Serilog sink that writes events to Elasticsearch

Results 135 serilog-sinks-elasticsearch issues
Sort by recently updated
recently updated
newest added
trafficstars

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:...

dependencies
github_actions

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)...

dependencies
.NET

**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.** ![image](https://user-images.githubusercontent.com/22129824/190836357-1353492d-1a1c-4afc-b6dc-d8d78763425e.png) **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...