Serilog.Sinks.GoogleCloudLogging 1.1.0

There is a newer version of this package available.
See the version list below for details.
dotnet add package Serilog.Sinks.GoogleCloudLogging --version 1.1.0
NuGet\Install-Package Serilog.Sinks.GoogleCloudLogging -Version 1.1.0
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Serilog.Sinks.GoogleCloudLogging" Version="1.1.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Serilog.Sinks.GoogleCloudLogging --version 1.1.0
#r "nuget: Serilog.Sinks.GoogleCloudLogging, 1.1.0"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install Serilog.Sinks.GoogleCloudLogging as a Cake Addin
#addin nuget:?package=Serilog.Sinks.GoogleCloudLogging&version=1.1.0

// Install Serilog.Sinks.GoogleCloudLogging as a Cake Tool
#tool nuget:?package=Serilog.Sinks.GoogleCloudLogging&version=1.1.0

Configure logger:

var log = new LoggerConfiguration()
    .WriteTo.GoogleCloudLogging(new GoogleCloudLoggingSinkOptions("YOUR_PROJECT_ID"))
    .CreateLogger();

Sink options:

ProjectId - Required - Google Cloud project ID where logs will be sent to. ResourceType - Resource type for logs. Must be one of the supported types listed in the cloud logging documentation. Default is "global". LogName - Name of log under the resource type. Will automatically use SourceContext from Serilog events or fallback to this setting. Default is "Default". Labels - Dictionary of string keys and values added to all logs. Individual log entries will automatically include Properties from Serilog events.

When using default options, logs will appear under these filter settings in the GCP Console:

alternate text is missing from this package README image

Product 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 was computed.  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. 
.NET Core netcoreapp1.0 was computed.  netcoreapp1.1 was computed.  netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard1.5 is compatible.  netstandard1.6 was computed.  netstandard2.0 was computed.  netstandard2.1 was computed. 
.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 tizen30 was computed.  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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (3)

Showing the top 3 NuGet packages that depend on Serilog.Sinks.GoogleCloudLogging:

Package Downloads
PegasusLoggingService

Package Description

Findep.AspNetCore.Microservices

Core Library for FINDEP Microservices based on ASP.NET Core

Pegasus_Logging

Package Description

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
5.0.0 1,301,041 6/14/2022
4.0.0 208,751 4/5/2022
3.7.0 134,250 2/20/2022
3.6.0 271,753 8/30/2021
3.5.0 46,907 6/10/2021
3.4.0 25,978 4/25/2021
3.3.3 61,981 3/15/2021
3.3.0 89,254 9/21/2020
3.2.0 81,519 6/18/2020
3.0.0 67,297 3/20/2020
2.4.1 2,405 3/18/2020
2.4.0 28,431 2/5/2020
2.3.0 2,001 1/15/2020
2.2.1 1,798 1/12/2020
2.2.0 27,690 10/8/2019
2.1.1 3,194 10/6/2019
2.1.0 28,485 9/17/2019
2.0.0 162,481 5/24/2019
1.10.0 48,765 4/4/2019
1.9.0 666 4/4/2019
1.7.0 94,234 2/8/2019
1.6.0 5,969 2/7/2019
1.5.0 41,727 10/5/2018
1.4.7 7,102 9/10/2018
1.4.6 14,264 6/2/2018
1.4.5 2,063 5/19/2018
1.4.0 1,018 5/19/2018
1.3.1 3,073 12/16/2017
1.3.0 1,405 12/8/2017
1.2.0 1,149 11/30/2017
1.1.0 1,289 11/28/2017
1.0.0 1,740 9/6/2017

- Fixed handling of log entry properties that contain child properties.