Serilog.Sinks.AzureTableStorage
10.1.0
dotnet add package Serilog.Sinks.AzureTableStorage --version 10.1.0
NuGet\Install-Package Serilog.Sinks.AzureTableStorage -Version 10.1.0
<PackageReference Include="Serilog.Sinks.AzureTableStorage" Version="10.1.0" />
paket add Serilog.Sinks.AzureTableStorage --version 10.1.0
#r "nuget: Serilog.Sinks.AzureTableStorage, 10.1.0"
// Install Serilog.Sinks.AzureTableStorage as a Cake Addin #addin nuget:?package=Serilog.Sinks.AzureTableStorage&version=10.1.0 // Install Serilog.Sinks.AzureTableStorage as a Cake Tool #tool nuget:?package=Serilog.Sinks.AzureTableStorage&version=10.1.0
Serilog.Sinks.AzureTableStorage
Writes to a table in Azure Table Storage.
Package - Serilog.Sinks.AzureTableStorage | Platforms - .NET Standard 2.0
var log = new LoggerConfiguration()
.WriteTo.AzureTableStorage("<connectionString>")
.CreateLogger();
Configuration
Configuration | Description | Default |
---|---|---|
connectionString | The Cloud Storage Account connection string | |
sharedAccessSignature | The storage account/table SAS key | |
accountName | The storage account name | |
restrictedToMinimumLevel | The minimum log event level required in order to write an event to the sink. | Verbose |
formatProvider | Culture-specific formatting information | |
storageTableName | Table name that log entries will be written to | LogEvent |
batchPostingLimit | The maximum number of events to post in a single batch | 100 |
period | The time to wait between checking for event batches | 0:0:2 |
keyGenerator | The key generator used to create the PartitionKey and the RowKey for each log entry | DefaultKeyGenerator |
propertyColumns | Specific log event properties to be written as table columns | |
bypassTableCreationValidation | Bypass the exception in case the table creation fails | false |
documentFactory | Provider to create table document from LogEvent | DefaultDocumentFactory |
tableClientFactory | Provider to create table client | DefaultTableClientFactory |
partitionKeyRounding | Partition key rounding time span | 0:5:0 |
JSON configuration
It is possible to configure the sink using Serilog.Settings.Configuration by specifying the table name and connection string in appsettings.json
:
"Serilog": {
"WriteTo": [
{"Name": "AzureTableStorage", "Args": {"storageTableName": "", "connectionString": ""}}
]
}
JSON configuration must be enabled using ReadFrom.Configuration()
; see the documentation of the JSON configuration package for details.
XML <appSettings>
configuration
To use the file sink with the Serilog.Settings.AppSettings package, first install that package if you haven't already done so:
Install-Package Serilog.Settings.AppSettings
Instead of configuring the logger in code, call ReadFrom.AppSettings()
:
var log = new LoggerConfiguration()
.ReadFrom.AppSettings()
.CreateLogger();
In your application's App.config
or Web.config
file, specify the file sink assembly and required path format under the <appSettings>
node:
<configuration>
<appSettings>
<add key="serilog:using:AzureTableStorage" value="Serilog.Sinks.AzureTableStorage" />
<add key="serilog:write-to:AzureTableStorage.connectionString" value="DefaultEndpointsProtocol=https;AccountName=ACCOUNT_NAME;AccountKey=KEY;EndpointSuffix=core.windows.net" />
<add key="serilog:write-to:AzureTableStorage.formatter" value="Serilog.Formatting.Compact.CompactJsonFormatter, Serilog.Formatting.Compact" />
</appSettings>
</configuration>
Example Configuration for ASP.NET
public static class Program
{
private const string OutputTemplate = "{Timestamp:HH:mm:ss.fff} [{Level:u1}] {Message:lj}{NewLine}{Exception}";
public static async Task<int> Main(string[] args)
{
// azure home directory
var homeDirectory = Environment.GetEnvironmentVariable("HOME") ?? ".";
var logDirectory = Path.Combine(homeDirectory, "LogFiles");
Log.Logger = new LoggerConfiguration()
.MinimumLevel.Verbose()
.MinimumLevel.Override("Microsoft", LogEventLevel.Information)
.Enrich.FromLogContext()
.WriteTo.Console(outputTemplate: OutputTemplate)
.WriteTo.File(
path: $"{logDirectory}/boot.txt",
rollingInterval: RollingInterval.Day,
shared: true,
flushToDiskInterval: TimeSpan.FromSeconds(1),
outputTemplate: OutputTemplate,
retainedFileCountLimit: 10
)
.CreateBootstrapLogger();
try
{
Log.Information("Starting web host");
var builder = Microsoft.AspNetCore.Builder.WebApplication.CreateBuilder(args);
builder.Host
.UseSerilog((context, services, configuration) => configuration
.ReadFrom.Configuration(context.Configuration)
.ReadFrom.Services(services)
.Enrich.FromLogContext()
.Enrich.WithProperty("ApplicationName", builder.Environment.ApplicationName)
.Enrich.WithProperty("EnvironmentName", builder.Environment.EnvironmentName)
.WriteTo.Console(outputTemplate: OutputTemplate)
.WriteTo.File(
path: $"{logDirectory}/log.txt",
rollingInterval: RollingInterval.Day,
shared: true,
flushToDiskInterval: TimeSpan.FromSeconds(1),
outputTemplate: OutputTemplate,
retainedFileCountLimit: 10
)
.WriteTo.AzureTableStorage(
connectionString: context.Configuration.GetConnectionString("StorageAccount"),
propertyColumns: new[] { "SourceContext", "RequestId", "RequestPath", "ConnectionId", "ApplicationName", "EnvironmentName" }
)
);
ConfigureServices(builder);
var app = builder.Build();
ConfigureMiddleware(app);
await app.RunAsync();
return 0;
}
catch (Exception ex)
{
Log.Fatal(ex, "Host terminated unexpectedly");
return 1;
}
finally
{
await Log.CloseAndFlushAsync();
}
}
private static void ConfigureServices(WebApplicationBuilder builder)
{
}
private static void ConfigureMiddleware(Microsoft.AspNetCore.Builder.WebApplication app)
{
}
}
Change Log
10.0.0
- Breaking: writeInBatches removed, all writes are now batched
- Update: update to serilog 4.0
- Remove: removed dependance on Serilog.Sinks.PeriodicBatching, use serilog 4.0
IBatchedLogEventSink
9.6.0
- Fix: improve timezone support
9.5.0
- Add: use ULID for rowkey for speed and efficiency
9.4.0
- Fix: prevent duplicate rowkey
9.1.0
- Add: Built-in trace and span id support
9.0.0
- Breaking: Due to issue with creating provides from configuration
IDocumentFactory.Create
add AzureTableStorageSinkOptions and IKeyGenerator argumentsIKeyGenerator.GeneratePartitionKey
add AzureTableStorageSinkOptions argumentIKeyGenerator.GenerateRowKey
add AzureTableStorageSinkOptions argument
- Fix: DefaultDocumentFactory and DefaultKeyGenerator needed paramaterless contructor for use in configuration files
- Add: ITableClientFactory to control TableClient creation
8.5.0
- Add option for partition key rounding
- Move IKeyGenertor from options
- Add DateTime extension methods for partition key and row key
- Add sample web project
8.0.0
- Breaking: major refactor to simplify code base
- Removed: AzureTableStorageWithProperties extension removed, use equivalent AzureTableStorage
- Removed: ICloudTableProvider provider removed
- Added: IDocumentFactory to allow control over table document
- Change: PartitionKey and RowKey changed to new implementation
7.0.0
- Update dependencies: repace Microsoft.Azure.Cosmos.Table with Azure.Data.Tables
6.0.0
- Updated dependencies: replace deprecated package WindowsAzure.Storage with Microsoft.Azure.Cosmos.Table 1.0.8
- Updated dependencies: Serilog 2.10.0
5.0.0
- Migrated to new CSPROJ project system
- Updated dependencies: WindowsAzure.Storage 8.6.0, Serilog 2.6.0, Serilog.Sinks.PeriodicBatching 2.1.1
- Fix #36 - Allow using SAS URI for logging.
1.5
- Moved from serilog/serilog
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 was computed. net5.0-windows was computed. net6.0 is compatible. 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. |
.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
- Azure.Data.Tables (>= 12.10.0)
- Serilog (>= 4.2.0)
- ulid (>= 1.3.4)
-
.NETStandard 2.1
- Azure.Data.Tables (>= 12.10.0)
- Serilog (>= 4.2.0)
- ulid (>= 1.3.4)
-
net6.0
- Azure.Data.Tables (>= 12.10.0)
- Serilog (>= 4.2.0)
- ulid (>= 1.3.4)
-
net8.0
- Azure.Data.Tables (>= 12.10.0)
- Serilog (>= 4.2.0)
- ulid (>= 1.3.4)
NuGet packages (10)
Showing the top 5 NuGet packages that depend on Serilog.Sinks.AzureTableStorage:
Package | Downloads |
---|---|
TouchConvert.Tenant.Api.V1.Dtos
Data transfer objects for TouchConvert version one APIs. |
|
TouchConvert.Tenant.Api.V2.Dtos
Data transfer objects for TouchConvert version two APIs. |
|
BumperLane.Hosted.Api.V2.Application
BumperLane Core API functionality |
|
AzureWebFarm.OctopusDeploy
Scalable, OctopusDeploy-powered webfarm using Windows Azure Web Roles. |
|
LittleBlocks.Azure.Serilog
Package Description |
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
10.1.0 | 116 | 1/16/2025 |
10.0.2 | 20,032 | 10/26/2024 |
10.0.1 | 48,154 | 7/26/2024 |
10.0.0 | 14,728 | 7/10/2024 |
10.0.0-beta.1 | 729 | 6/3/2024 |
9.7.1 | 73,025 | 5/29/2024 |
9.7.0 | 8,898 | 5/10/2024 |
9.6.0 | 40,805 | 4/26/2024 |
9.5.0 | 24,869 | 4/10/2024 |
9.4.1 | 18,058 | 3/10/2024 |
9.3.0 | 2,321 | 3/6/2024 |
9.2.0 | 64,664 | 12/11/2023 |
9.1.0 | 19,861 | 11/9/2023 |
9.0.0 | 76,334 | 8/6/2023 |
9.0.0-beta.2 | 130 | 8/1/2023 |
9.0.0-beta.1.1 | 125 | 8/1/2023 |
8.5.42-alpha.0.7 | 122 | 8/1/2023 |
8.5.41 | 40,975 | 6/24/2023 |
8.5.39-beta | 588 | 6/24/2023 |
8.5.38 | 84,245 | 5/8/2023 |
8.5.36-beta | 629 | 5/2/2023 |
8.0.35 | 5,984 | 4/16/2023 |
8.0.33-beta | 553 | 4/16/2023 |
8.0.31-beta | 624 | 4/16/2023 |
8.0.30-beta | 611 | 4/11/2023 |
8.0.28-beta | 649 | 4/10/2023 |
8.0.27-beta | 666 | 3/27/2023 |
7.0.25 | 39,174 | 3/25/2023 |
7.0.22-beta | 674 | 3/25/2023 |
6.0.0-dev-00146 | 19,330 | 4/29/2021 |
5.0.0 | 1,414,683 | 7/28/2020 |
5.0.0-dev-00116 | 94,623 | 9/8/2018 |
5.0.0-dev-00111 | 2,497 | 9/4/2018 |
5.0.0-dev-00109 | 1,213 | 9/4/2018 |
5.0.0-dev-00105 | 8,069 | 5/9/2018 |
5.0.0-dev-00101 | 1,452 | 4/24/2018 |
5.0.0-dev-00093 | 6,743 | 3/20/2018 |
4.0.0 | 1,620,809 | 6/13/2017 |
4.0.0-dev-00089 | 1,596 | 5/22/2017 |
4.0.0-dev-00082 | 4,771 | 3/14/2017 |
4.0.0-dev-00079 | 1,601 | 3/4/2017 |
4.0.0-dev-00077 | 1,471 | 3/1/2017 |
4.0.0-dev-00074 | 1,388 | 2/28/2017 |
4.0.0-dev-00069 | 2,842 | 2/13/2017 |
3.0.1-dev-00067 | 2,984 | 2/3/2017 |
3.0.0 | 198,022 | 11/22/2016 |
3.0.0-dev-00055 | 1,490 | 10/14/2016 |
3.0.0-dev-00052 | 1,406 | 10/7/2016 |
3.0.0-dev-00045 | 2,366 | 10/6/2016 |
3.0.0-dev-00044 | 2,553 | 10/3/2016 |
3.0.0-dev-00039 | 1,594 | 10/3/2016 |
2.0.1-dev-00030 | 2,489 | 7/19/2016 |
2.0.0 | 56,958 | 6/29/2016 |
2.0.0-beta-20 | 2,454 | 4/26/2016 |
1.5.14 | 36,801 | 4/17/2016 |
1.5.11 | 12,792 | 12/26/2015 |
1.5.5 | 32,633 | 4/2/2015 |
1.5.4 | 3,085 | 4/2/2015 |
1.5.3 | 1,819 | 4/1/2015 |
1.5.2 | 2,590 | 3/30/2015 |
1.5.1 | 1,751 | 3/27/2015 |
1.4.196 | 2,482 | 2/22/2015 |
1.4.182 | 2,042 | 2/15/2015 |
1.4.168 | 1,979 | 2/8/2015 |
1.4.155 | 1,864 | 2/1/2015 |
1.4.139 | 1,730 | 1/23/2015 |
1.4.118 | 1,866 | 1/13/2015 |
1.4.113 | 2,036 | 1/6/2015 |
1.4.102 | 2,324 | 12/21/2014 |
1.4.99 | 2,167 | 12/18/2014 |
1.4.97 | 2,065 | 12/18/2014 |
1.4.76 | 2,071 | 12/8/2014 |
1.4.75 | 2,038 | 12/7/2014 |
1.4.39 | 1,950 | 11/26/2014 |
1.4.34 | 1,896 | 11/24/2014 |
1.4.28 | 1,902 | 11/24/2014 |
1.4.27 | 2,008 | 11/23/2014 |
1.4.23 | 2,057 | 11/21/2014 |
1.4.22 | 1,935 | 11/21/2014 |
1.4.21 | 1,909 | 11/21/2014 |
1.4.18 | 2,074 | 11/18/2014 |
1.4.15 | 2,276 | 11/4/2014 |
1.4.14 | 1,873 | 10/23/2014 |
1.4.13 | 1,827 | 10/23/2014 |
1.4.12 | 1,930 | 10/12/2014 |
1.4.11 | 1,756 | 10/8/2014 |
1.4.10 | 2,568 | 9/26/2014 |
1.4.9 | 1,897 | 9/17/2014 |
1.4.8 | 1,890 | 9/11/2014 |
1.4.7 | 2,455 | 9/1/2014 |
1.4.6 | 1,833 | 8/31/2014 |
1.4.5 | 1,760 | 8/27/2014 |
1.4.4 | 1,845 | 8/27/2014 |
1.4.3 | 2,764 | 8/25/2014 |
1.4.2 | 1,700 | 8/23/2014 |
1.4.1 | 1,725 | 8/23/2014 |
1.3.43 | 1,886 | 8/4/2014 |
1.3.42 | 1,762 | 7/30/2014 |
1.3.41 | 1,761 | 7/28/2014 |
1.3.40 | 1,765 | 7/26/2014 |
1.3.39 | 1,831 | 7/25/2014 |
1.3.37 | 1,785 | 7/25/2014 |
1.3.36 | 1,804 | 7/20/2014 |
1.3.35 | 1,772 | 7/17/2014 |
1.3.34 | 1,746 | 7/6/2014 |
1.3.33 | 1,773 | 6/30/2014 |
1.3.30 | 1,780 | 6/19/2014 |
1.3.29 | 1,770 | 6/19/2014 |
1.3.28 | 1,790 | 6/19/2014 |
1.3.27 | 1,775 | 6/18/2014 |
1.3.26 | 1,776 | 6/18/2014 |
1.3.25 | 1,808 | 6/9/2014 |
1.3.24 | 1,805 | 5/21/2014 |
1.3.23 | 1,753 | 5/20/2014 |
1.3.20 | 1,853 | 5/18/2014 |
1.3.19 | 1,802 | 5/17/2014 |
1.3.18 | 1,769 | 5/17/2014 |
1.3.17 | 1,778 | 5/17/2014 |
1.3.16 | 1,747 | 5/17/2014 |
1.3.15 | 1,783 | 5/16/2014 |
1.3.14 | 1,775 | 5/16/2014 |
1.3.13 | 1,754 | 5/16/2014 |
1.3.12 | 1,737 | 5/14/2014 |
1.3.7 | 1,772 | 5/11/2014 |
1.3.6 | 1,788 | 5/9/2014 |
1.3.5 | 1,822 | 5/6/2014 |
1.3.4 | 1,751 | 5/4/2014 |
1.3.3 | 1,884 | 4/28/2014 |
1.3.1 | 2,058 | 4/26/2014 |
1.2.53 | 1,877 | 4/26/2014 |
1.2.52 | 1,919 | 4/24/2014 |
1.2.51 | 1,997 | 4/18/2014 |
1.2.50 | 1,986 | 4/18/2014 |
1.2.49 | 1,902 | 4/17/2014 |
1.2.48 | 2,003 | 4/14/2014 |
1.2.47 | 1,970 | 4/14/2014 |
1.2.45 | 1,969 | 4/13/2014 |
1.2.44 | 1,993 | 4/9/2014 |
1.2.41 | 2,245 | 4/7/2014 |
1.2.40 | 1,860 | 4/7/2014 |
1.2.39 | 2,281 | 3/29/2014 |
1.2.38 | 1,868 | 3/29/2014 |
1.2.37 | 1,916 | 3/29/2014 |
1.2.29 | 2,139 | 3/16/2014 |
1.2.27 | 1,864 | 3/14/2014 |
1.2.26 | 1,830 | 3/12/2014 |
1.2.25 | 3,548 | 2/20/2014 |
0.9.9 | 2,592 | 11/23/2013 |
0.9.1 | 2,671 | 8/24/2013 |
0.8.6 | 1,988 | 7/29/2013 |
0.8.5 | 2,087 | 7/22/2013 |
0.8.1 | 2,108 | 7/9/2013 |
0.7.2 | 2,085 | 7/6/2013 |
0.6.1 | 2,001 | 6/13/2013 |
0.5.2 | 2,046 | 5/27/2013 |
0.5.1 | 1,936 | 5/26/2013 |
0.4.3 | 2,315 | 5/25/2013 |