Serilog.Sinks.GoogleCloudLogging 2.1.1

There is a newer version of this package available.
See the version list below for details.
dotnet add package Serilog.Sinks.GoogleCloudLogging --version 2.1.1
NuGet\Install-Package Serilog.Sinks.GoogleCloudLogging -Version 2.1.1
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="2.1.1" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Serilog.Sinks.GoogleCloudLogging --version 2.1.1
#r "nuget: Serilog.Sinks.GoogleCloudLogging, 2.1.1"
#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=2.1.1

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

Serilog.Sinks.GoogleCloudLogging

Serilog sink that writes events to Google Cloud Platform Stackdriver Logging. View release notes here: CHANGELOG.md

Getting started

Install package from Nuget:
dotnet add package Serilog.Sinks.GoogleCloudLogging
Configure Logger (using code):
var config = new GoogleCloudLoggingSinkOptions { ProjectId = "YOUR_PROJECT_ID", UseJsonOutput = true };
Log.Logger = new LoggerConfiguration().WriteTo.GoogleCloudLogging(config).CreateLogger();
Configure Logger (using config file):

This requires 'serilog-settings-configuration' to load sinks using an appsettings.json file.

"Serilog": {
  "Using": [ "Serilog.Sinks.GoogleCloudLogging" ],
  "MinimumLevel": "Warning",
  "WriteTo": [
    {
      "Name": "GoogleCloudLogging",
      "Args": {
        "projectID": "YOUR_PROJECT_ID",
        "useJsonOutput": "true",
        "resourceType": "k8s_cluster",
        "resourceLabels": {
          "project_id": "PROJECT-ID-HERE-12345",
          "location": "LOCATION-STRING-HERE-region-name",
          "cluster_name": "CLUSTER-NAME-HERE-container-cluster"
        }
      }
    }
  ]
}
var config = new ConfigurationBuilder().AddJsonFile("appsettings.json", optional: true, reloadOnChange: true).Build();
Log.Logger = new LoggerConfiguration().ReadFrom.Configuration(config).CreateLogger();
GCP authentication:

This library uses the Google-Cloud-Dotnet libraries which authenticate using the Application Default Credentials found on the host. This is automatic on GCE VMs or you can use the gcloud SDK to authenticate manually. The service account must have the Logs Writer permission to send logs.

Sink Options

Name Default Description
ProjectId Google Cloud project ID where logs will be sent. Will be automatically set to host project if running in GCP, otherwise required.
ResourceType global Resource type for all log output. Will be automatically discovered if running in GCP, otherwise required. Must be one of the supported types listed in the cloud logging documentation.
LogName Default Name of the log. This is required if UseSourceContextAsLogName is false.
Labels Dictionary<string, string> of properties added to all log entries.
ResourceLabels Dictionary<string, string> of properties added to all log entries, at the resource level. See Monitored Resources and Services for recognized labels.
UseSourceContextAsLogName True The log name for a log entry will be set to the SourceContext property if it's available.
UseJsonOutput False Structured logs can be sent as text with labels or as a JSON object, see details below.
GoogleCredentialJson GCP client libraries use Application Default Credentials. If these are not available or you need to use other credentials, set the JSON text of a credential file directly.
ServiceName Name of the service added as metadata to log entries. Required to forward logged exceptions to StackDriver Error Reporting. Must also set UseJsonOutput to true.
ServiceVersion Version of the service added as metadata to log entries. Defaults to <unknown>.
Output Type

Serilog uses structured logging which means each log line is a formatting template with attached properties that are combined to create the final output. When UseJsonOutput is false, the output is sent as TextPayload to GCP with any properties serialized to string key/value labels.

If UseJsonOutput is set to true, the output will be sent as JsonPayload to maintain the original data types. This is helpful for querying child properties or numeric values in the Log Viewer, and will also capture property names even if they have null values.

WARNING: JSON output only accepts numeric values as double so all numbers will be converted. Large integers and floating-point values will lose precision. If you want the exact value preserved then log it as a string instead.

Viewing Logs

Logs will appear in the Google Cloud Console Log Viewer: https://console.cloud.google.com/logs/viewer

When using default options, logs will appear under these filter settings:

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 is compatible.  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,278,177 6/14/2022
4.0.0 208,139 4/5/2022
3.7.0 133,634 2/20/2022
3.6.0 271,127 8/30/2021
3.5.0 46,785 6/10/2021
3.4.0 25,969 4/25/2021
3.3.3 61,776 3/15/2021
3.3.0 89,164 9/21/2020
3.2.0 81,421 6/18/2020
3.0.0 67,286 3/20/2020
2.4.1 2,405 3/18/2020
2.4.0 28,429 2/5/2020
2.3.0 2,001 1/15/2020
2.2.1 1,798 1/12/2020
2.2.0 27,683 10/8/2019
2.1.1 3,194 10/6/2019
2.1.0 28,485 9/17/2019
2.0.0 162,466 5/24/2019
1.10.0 48,754 4/4/2019
1.9.0 666 4/4/2019
1.7.0 94,206 2/8/2019
1.6.0 5,969 2/7/2019
1.5.0 41,726 10/5/2018
1.4.7 7,101 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