Elastic.Serilog.Sinks
9.0.0
Prefix Reserved
dotnet add package Elastic.Serilog.Sinks --version 9.0.0
NuGet\Install-Package Elastic.Serilog.Sinks -Version 9.0.0
<PackageReference Include="Elastic.Serilog.Sinks" Version="9.0.0" />
<PackageVersion Include="Elastic.Serilog.Sinks" Version="9.0.0" />
<PackageReference Include="Elastic.Serilog.Sinks" />
paket add Elastic.Serilog.Sinks --version 9.0.0
#r "nuget: Elastic.Serilog.Sinks, 9.0.0"
#:package Elastic.Serilog.Sinks@9.0.0
#addin nuget:?package=Elastic.Serilog.Sinks&version=9.0.0
#tool nuget:?package=Elastic.Serilog.Sinks&version=9.0.0
Elastic.Serilog.Sinks
A Serilog sink that writes logs directly to Elasticsearch or Elastic Cloud using the Elastic Common Schema.
NOTE: To use version 9.0.0 of the sink you need atleast version 8.15.0 of the Elastic Stack.
Example
There's a few ways that you can extend a Serilog LoggerConfiguration:
Log.Logger = new LoggerConfiguration()
.MinimumLevel.Debug()
.Enrich.FromLogContext()
NOTE: Don't forget we also publish an Elastic.Apm.SerilogEnricher for the Elastic APM Agent!
Writing to Elasticsearch
.WriteTo.Elasticsearch(new [] { new Uri("http://localhost:9200" )}, opts =>
{
opts.DataStream = new DataStreamName("logs", "console-example", "demo");
opts.BootstrapMethod = BootstrapMethod.Failure;
opts.ConfigureChannel = channelOpts =>
{
channelOpts.BufferOptions = new BufferOptions
{
ConcurrentConsumers = 10
};
};
})
Writing to Elastic Cloud:
.WriteTo.ElasticCloud("cloudId", "cloudUser", "cloudPass", opts =>
opts is an instance of ElasticsearchSinkOptions with the following options
| Option | Description |
|---|---|
Transport |
An instance of Elastic.Transport that dictates where and how wer are communicating to. Defaults to http://localhost:9200 |
DataStream |
Where to write data, defaults to the logs-dotnet-default datastream. |
BootstrapMethod |
Wheter the sink should attempt to install component and index templates to ensure the datastream has ECS mappings. Can be be either None (the default), Silent (attempt but fail silently), Failure (attempt and fail with exceptions if bootstrapping fails). |
TextFormatting |
Allows explicit control of over the EcsTextFormatterConfiguration used to emit ECS json documents. See Elastic.CommonSchema.Serilog for available options. |
ConfigureChannel |
A callback receiving the DatastreamChannelOptions which allows you to control sizing, backpressure etc. See Elastic.Ingest.Elasticsearch for more information. |
Note that you can also pass ElasticsearchSinkOptions directly
.WriteTo.Elasticsearch(new ElasticsearchSinkOptions(client.Transport)
This allows you to reuse the Transport used by the Elasticsearch Client for instance.
ECS Aware Message Templates
This sink by proxy of its formatter allows you to set ECS fields directly from the message template using properties that adhere to the https://messagetemplates.org/ format.
The available ECS message template properties are listed under LogTemplateProperties.* e.g LogTemplateProperties.TraceId
Log.Information("The time is {TraceId}", "my-trace-id");
Will override trace.id on the resulting ECS json document.
Application Settings Configuration
This sink can be configured through appsettings.json when used in combination with Serilog.Settings.Configuration.
Elasticsearch appsettings configuration
When configuring through appsettings only the bootstrapMethod configuration is required
{
"Serilog": {
"Using": [ "Elastic.Serilog.Sinks" ],
"MinimumLevel": { "Default": "Information" },
"WriteTo": [
{
"Name": "Elasticsearch",
"Args": {
"bootstrapMethod": "Silent",
"nodes": [ "http://elastichost:9200" ],
"useSniffing": true,
"apiKey": "<apiKey>",
"username": "<username>",
"password": "<password>",
"ilmPolicy" : "my-policy",
"dataStream" : "logs-dotnet-default",
"includeHost" : true,
"includeUser" : true,
"includeProcess" : true,
"includeActivity" : true,
"filterProperties" : [ "prop1", "prop2" ],
"proxy": "http://localhost:8200",
"proxyUsername": "x",
"proxyPassword": "y",
"debugMode": false,
//EXPERT settings, do not set unless you need to
"maxRetries": 3,
"maxConcurrency": 20,
"maxInflight": 100000,
"maxExportSize": 1000,
"maxLifeTime": "00:00:05",
"fullMode": "Wait"
}
}
]
}
}
Elastic Cloud appsettings configuration
When configuring through appsettings only the bootstrapMethod configuration is required
You can specify either endpoint or cloudId, cloudId will take precedence.
You'll need to specify either apiKey or username and password.
{
"Serilog": {
"Using": [ "Elastic.Serilog.Sinks" ],
"MinimumLevel": { "Default": "Information" },
"WriteTo": [
{
"Name": "ElasticCloud",
"Args": {
"bootstrapMethod": "Silent",
"endpoint": "https://<redacted>.es.us-central1.gcp.cloud.es.io",
"cloudId": "<cloudId>",
"apiKey": "<apiKey>",
"username": "<username>",
"password": "<password>",
"ilmPolicy" : "my-policy",
"dataStream" : "logs-dotnet-default",
"includeHost" : true,
"includeUser" : true,
"includeProcess" : true,
"includeActivity" : true,
"filterProperties" : [ "prop1", "prop2" ],
"proxy": "http://localhost:8200",
"proxyUsername": "x",
"proxyPassword": "y",
"debugMode": false,
//EXPERT settings, do not set unless you need to
"maxRetries": 3,
"maxConcurrency": 20,
"maxInflight": 100000,
"maxExportSize": 1000,
"maxLifeTime": "00:00:05",
"fullMode": "Wait"
}
}
]
}
}
Comparison with Serilog.Sinks.Elasticsearch
Serilog.Sinks.Elasticsearchis an amazing community led sink that has a ton of options and works against older Elasticsearch versions< 8.0.Serilog.Sinks.Elasticsearchis unofficially supported by Elastic with some of the .NET team helping to maintain it.Elastic.Serilog.Sinksis officially supported by Elastic and was purposely build to adhere to newer best practices around logging, datastreams and ILM.Elastic.Serilog.Sinksis purposely build to have fewer configuration options and be more prescriptive thanSerilog.Sinks.Elasticsearch.- That is not to say there aren't plenty of configuration hooks in
Elastic.Serilog.Sinks
- That is not to say there aren't plenty of configuration hooks in
Notable absent features:
Elastic.Serilog.Sinksonly works withElasticsearch 8.xand up.- This is because the bootrapping (
BootstrapMethod) attempts to load templates build for Elasticsearch 8.0 and up.
- This is because the bootrapping (
Elastic.Serilog.Sinkshas only one way it emits data to Elasticsearch confirming to the ecs-logging specification- That doesn't mean you can not introduce your own additional properties though.
Elastic.Serilog.Sinkshas no durable mode.- If you need higher guarantees on log delivery use
Serilog.Sinks.Filewith our ECS log formatter for Serilog and use filebeat to ship these logs. - Check out Elastic Agent & Fleet to simplify collecting logs and metrics on the edge.
- If you need higher guarantees on log delivery use
If you miss a particular feature from Serilog.Sinks.Elasticsearch in Elastic.Serilog.Sinks please open a feature request! We'd love to grow this sink organically moving forward.
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net5.0 was computed. net5.0-windows was computed. net6.0 was computed. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 is compatible. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. net9.0 was computed. net9.0-android was computed. net9.0-browser was computed. net9.0-ios was computed. net9.0-maccatalyst was computed. net9.0-macos was computed. net9.0-tvos was computed. net9.0-windows was computed. net10.0 was computed. net10.0-android was computed. net10.0-browser was computed. net10.0-ios was computed. net10.0-maccatalyst was computed. net10.0-macos was computed. net10.0-tvos was computed. net10.0-windows was computed. |
| .NET Core | netcoreapp2.0 was computed. netcoreapp2.1 was computed. netcoreapp2.2 was computed. netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
| .NET Standard | netstandard2.0 is compatible. netstandard2.1 is compatible. |
| .NET Framework | net461 was computed. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
| MonoAndroid | monoandroid was computed. |
| MonoMac | monomac was computed. |
| MonoTouch | monotouch was computed. |
| Tizen | tizen40 was computed. tizen60 was computed. |
| Xamarin.iOS | xamarinios was computed. |
| Xamarin.Mac | xamarinmac was computed. |
| Xamarin.TVOS | xamarintvos was computed. |
| Xamarin.WatchOS | xamarinwatchos was computed. |
-
.NETStandard 2.0
- Elastic.CommonSchema.Serilog (>= 9.0.0)
- Elastic.Ingest.Elasticsearch.CommonSchema (>= 9.0.0)
-
.NETStandard 2.1
- Elastic.CommonSchema.Serilog (>= 9.0.0)
- Elastic.Ingest.Elasticsearch.CommonSchema (>= 9.0.0)
-
net8.0
- Elastic.CommonSchema.Serilog (>= 9.0.0)
- Elastic.Ingest.Elasticsearch.CommonSchema (>= 9.0.0)
NuGet packages (42)
Showing the top 5 NuGet packages that depend on Elastic.Serilog.Sinks:
| Package | Downloads |
|---|---|
|
Intility.Extensions.Logging.Elasticsearch
Enable Elasticsearch logging provider. |
|
|
Delfin.Core.Infrastructure
An Infrastructure Layer library designed for Clean Architecture in .NET applications. This package provides the implementation of cross-cutting concerns such as data access, external service integration, and configuration management, ensuring that the application layers remain decoupled from infrastructure details. |
|
|
Xinghe.Utility
XH基础库(内部使用) |
|
|
amorphie.core
amorphie.core |
|
|
TinyFx.Extensions.Serilog
Serilog封装 |
GitHub repositories (5)
Showing the top 5 popular GitHub repositories that depend on Elastic.Serilog.Sinks:
| Repository | Stars |
|---|---|
|
mehdihadeli/food-delivery-microservices
🍔 A practical and cloud-native food delivery microservices, built with .Net Aspire, .Net 9, MassTransit, Domain-Driven Design, CQRS, Vertical Slice Architecture, Event-Driven Architecture, and the latest technologies.
|
|
|
BehzadDara/SampleProject
|
|
|
LANCommander/LANCommander
|
|
|
mehdihadeli/vertical-slice-api-template
🍰 An asp.net core template based on .Net 9, Vertical Slice Architecture, CQRS, Minimal APIs, OpenTelemetry, API Versioning and OpenAPI.
|
|
|
zhuyongzhengs/Rex.ShopMicroService.Sample
一个基于ABP Framework 10.0、PostgreSQL、MongoDB、Redis、RabbitMQ、CAP、ElasticSearch、Minio、YARP的微服务电商商城平台,采用主流的互联网技术架构、全新的UI设计、可视化布局、支持集群部署;拥有活动促销、优惠卷、商品秒杀等众多完整的营销功能。
|
| Version | Downloads | Last Updated |
|---|---|---|
| 9.0.0 | 1,121,636 | 8/13/2025 |
| 8.19.0 | 272,673 | 8/13/2025 |
| 8.18.2 | 415,521 | 6/27/2025 |
| 8.18.1 | 332,456 | 5/28/2025 |
| 8.12.3 | 1,908,726 | 11/26/2024 |
| 8.12.2 | 436,956 | 10/22/2024 |
| 8.12.1 | 207,793 | 10/3/2024 |
| 8.12.0 | 86,885 | 9/26/2024 |
| 8.11.1 | 1,075,845 | 6/10/2024 |
| 8.11.0 | 334,641 | 4/10/2024 |
| 8.6.1 | 808,180 | 8/3/2023 |
| 8.6.0 | 139,520 | 5/9/2023 |