![]() |
VOOZH | about |
dotnet add package Serilog.Sinks.AwsCloudWatch --version 4.2.17
NuGet\Install-Package Serilog.Sinks.AwsCloudWatch -Version 4.2.17
<PackageReference Include="Serilog.Sinks.AwsCloudWatch" Version="4.2.17" />
<PackageVersion Include="Serilog.Sinks.AwsCloudWatch" Version="4.2.17" />Directory.Packages.props
<PackageReference Include="Serilog.Sinks.AwsCloudWatch" />Project file
paket add Serilog.Sinks.AwsCloudWatch --version 4.2.17
#r "nuget: Serilog.Sinks.AwsCloudWatch, 4.2.17"
#:package Serilog.Sinks.AwsCloudWatch@4.2.17
#addin nuget:?package=Serilog.Sinks.AwsCloudWatch&version=4.2.17Install as a Cake Addin
#tool nuget:?package=Serilog.Sinks.AwsCloudWatch&version=4.2.17Install as a Cake Tool
This Serilog Sink allows to log to AWS CloudWatch. It supports .NET Core (.NET Framework 4.5 is deprecated and no longer supported)
There are two important aspects for configuring this library. The first is providing the configuration options necessary via the ICloudWatchSinkOptions implementation. And the second is configuring the AWS Credentials. Both of these are required to log to CloudWatch.
This library provides an extension method which takes in only a ICloudWatchSinkOptions instance and the IAmazonCloudWatchLogs instance.
The preferred approach for configuration is to construct the necessary objects via code and pass them directly to the library extension method.
// name of the log group
var logGroupName = "myLogGroup/" + env.EnvironmentName;
// customer formatter
var formatter = new MyCustomTextFormatter();
// options for the sink defaults in https://github.com/Cimpress-MCP/serilog-sinks-awscloudwatch/blob/master/src/Serilog.Sinks.AwsCloudWatch/CloudWatchSinkOptions.cs
var options = new CloudWatchSinkOptions
{
// the name of the CloudWatch Log group for logging
LogGroupName = logGroupName,
// the main formatter of the log event
TextFormatter = formatter,
// other defaults defaults
MinimumLogEventLevel = LogEventLevel.Information,
BatchSizeLimit = 100,
QueueSizeLimit = 10000,
Period = TimeSpan.FromSeconds(10),
CreateLogGroup = true,
LogStreamNameProvider = new DefaultLogStreamProvider(),
RetryAttempts = 5
};
// setup AWS CloudWatch client
var client = new AmazonCloudWatchLogsClient(myAwsRegion);
// Attach the sink to the logger configuration
Log.Logger = new LoggerConfiguration()
.WriteTo.AmazonCloudWatch(options, client)
.CreateLogger();
Call the extension method passing the configuration values that you wish to make use of.
// setup AWS CloudWatch client
var client = myAppConfigRoot.GetAWSOptions().CreateServiceClient<IAmazonCloudWatchLogs>();
// Attach the sink to the logger configuration
Log.Logger = new LoggerConfiguration()
.WriteTo.AmazonCloudWatch(
"myLogGroup/" + env.EnvironmentName,
batchSizeLimit = 100,
queueSizeLimit = 10000,
batchUploadPeriodInSeconds = 15,
createLogGroup = true,
maxRetryAttempts = 3
cloudWatchClient = client)
.CreateLogger();
While not recommended, it is still possible to config the library via a configuration file. There are two libraries which provide these capabilities.
App.config or Web.config file. Create a concrete implementation of the ICloudWatchSinkOptions interface, and specify the necessary configuration values. Then in the configuration file, specify the following:
<add key="serilog:write-to:AmazonCloudWatch.options" value="{namespace}.CloudWatchSinkOptions, {assembly}, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null" />
appsettings.json file (or optional specific override. Create a concrete implementation of the ICloudWatchSinkOptions interface, and specify the necessary configuration values. Then in the configuration file, specify the following: // {Assembly} name is `typeof(YourOptionsClass).AssemblyQualifiedName` and {Namespace} is the class namespace.
{
"Args": {
"options": "{namespace}.CloudWatchSinkOptions, {assembly}"
}
}
Alternatively you may configure the library without creating a concrete instance of the ICloudWatchSinkOptions interface however this will cause the AWS Service client to follow the credential rules in the official AWS SDK documentation. You may configure any of the passed values in the Extension method.
{
"Serilog": {
"Using": [ "Serilog.Sinks.AwsCloudWatch" ],
"MinimumLevel": "Verbose",
"WriteTo": [
{
"Name": "AmazonCloudWatch",
"Args": {
"logGroup": "your-app",
"logStreamPrefix": "environment/component",
"restrictedToMinimumLevel": "Verbose"
}
}
]
}
}
or using XML:
<add key="serilog:using:AwsCloudWatch" value="Serilog.Sinks.AwsCloudWatch" />
<add key="serilog:write-to:AmazonCloudWatch.logGroup" value="your-app" />
<add key="serilog:write-to:AmazonCloudWatch.logStreamPrefix" value="environment/component" />
<add key="serilog:write-to:AmazonCloudWatch.restrictedToMinimumLevel" value="Verbose" />
AmazonCloudWatchLogsClient from the AWS SDK requires AWS credentials. To correctly associate credentials with the library, please refer to The Official AWS Recommendation on C# for credentials management. To reiterate here:
var options = new CredentialProfileOptions { AccessKey = "access_key", SecretKey = "secret_key" };
var profile = new Amazon.Runtime.CredentialManagement.CredentialProfile("basic_profile", options);
profile.Region = GetBySystemName("eu-west-1"); // OR RegionEndpoint.EUWest1
var netSDKFile = new NetSDKCredentialsFile();
netSDKFile.RegisterProfile(profile);
Cannot find region in config or Cannot find credentials in config
AWS configuration is not complete. Refer to the Configuring Credentials section to complete the configuration.
Errors related to the setup of the Sink (for example, invalid AWS credentials), or problems during sending the data are logged to Serilog's SelfLog. Short version, enable it with something like the following command:
Serilog.Debugging.SelfLog.Enable(Console.Error);
We value your input as part of direct feedback to us, by filing issues, or preferably by directly contributing improvements:
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net6.0 net6.0 is compatible. net6.0-android net6.0-android was computed. net6.0-ios net6.0-ios was computed. net6.0-maccatalyst net6.0-maccatalyst was computed. net6.0-macos net6.0-macos was computed. net6.0-tvos net6.0-tvos was computed. net6.0-windows net6.0-windows was computed. net7.0 net7.0 was computed. net7.0-android net7.0-android was computed. net7.0-ios net7.0-ios was computed. net7.0-maccatalyst net7.0-maccatalyst was computed. net7.0-macos net7.0-macos was computed. net7.0-tvos net7.0-tvos was computed. net7.0-windows net7.0-windows was computed. net8.0 net8.0 was computed. net8.0-android net8.0-android was computed. net8.0-browser net8.0-browser was computed. net8.0-ios net8.0-ios was computed. net8.0-maccatalyst net8.0-maccatalyst was computed. net8.0-macos net8.0-macos was computed. net8.0-tvos net8.0-tvos was computed. net8.0-windows net8.0-windows was computed. net9.0 net9.0 was computed. net9.0-android net9.0-android was computed. net9.0-browser net9.0-browser was computed. net9.0-ios net9.0-ios was computed. net9.0-maccatalyst net9.0-maccatalyst was computed. net9.0-macos net9.0-macos was computed. net9.0-tvos net9.0-tvos was computed. net9.0-windows net9.0-windows was computed. net10.0 net10.0 was computed. net10.0-android net10.0-android was computed. net10.0-browser net10.0-browser was computed. net10.0-ios net10.0-ios was computed. net10.0-maccatalyst net10.0-maccatalyst was computed. net10.0-macos net10.0-macos was computed. net10.0-tvos net10.0-tvos was computed. net10.0-windows net10.0-windows was computed. |
Showing the top 5 NuGet packages that depend on Serilog.Sinks.AwsCloudWatch:
| Package | Downloads |
|---|---|
|
Aj.Platform.Core
Biblioteca de Uso Geral para integrações com as API OmsAj |
|
|
Serilog.Sinks.AwsCloudWatch.Extensions
Configuration extension for the AwsCloudWatch Serilog sink |
|
|
Informatique.Base.Core
Base classed used in Project in Core |
|
|
CBORD.Omni.Domain
Package Description |
|
|
ITMakers.InfraestructureBase
Shared libraries for infrastructure in IT Makers' apps |
This package is not used by any popular GitHub repositories.
| Version | Downloads | Last Updated |
|---|---|---|
| 4.4.42 | 2,564,051 | 5/7/2025 |
| 4.3.37 | 3,443,485 | 7/23/2024 |
| 4.2.34 | 86,750 | 7/19/2024 |
| 4.2.29 | 474,623 | 5/20/2024 |
| 4.2.25 | 207,622 | 4/11/2024 |
| 4.2.24 | 53,174 | 4/2/2024 |
| 4.2.19 | 84,217 | 3/18/2024 |
| 4.2.17 | 27,674 | 3/15/2024 |
| 4.1.15 | 12,628 | 3/15/2024 |
| 4.1.14 | 17,523 | 3/15/2024 |
| 4.0.182 | 1,601,902 | 9/20/2023 |
| 4.0.180 | 11,253 | 9/19/2023 |
| 4.0.178 | 1,122,201 | 7/12/2023 |
| 4.0.171 | 8,145,756 | 4/22/2021 |
| 4.0.168 | 1,017,996 | 2/11/2021 |
| 4.0.167 | 56,092 | 2/11/2021 |
| 4.0.161 | 805,726 | 9/9/2020 |
| 4.0.159 | 1,257,803 | 2/28/2020 |
| 4.0.155 | 870,790 | 5/22/2019 |
| 4.0.149 | 247,720 | 2/22/2019 |