使用 Nlog 将结构化日志写入 Google Stackdriver
Using Nlog to write structured logs to Google Stackdriver
我正在使用 Google.Cloud.Logging.NLog 目标将日志写入 Stackdriver。
我想通过根据 Stackdriver documentation:
发送 JSON 有效负载来使用 Nlog 和 Stackdriver 结构化日志记录功能
日志正在通过,但我似乎没有在日志中填充 jsonPayload 属性,这意味着我没有发送 JSON 载荷。我是否需要 configure a JsonLayout 为下面所述的每种类型的日志消息?
目标代码
GoogleStackdriverTarget googleTarget = new GoogleStackdriverTarget
{
ProjectId = "123456",
Name = "desktop app",
CredentialFile = Path.Combine(@"my path to the json file"),
ContextProperties = { new TargetPropertyWithContext{Name = "MyCustomContextProperty",
Organization.Id}},
IncludeEventProperties = true,
Layout = new JsonLayout()
};
日志
LogManager.GetCurrentClassLogger().Info("Logon by {user} from {ip_address}", "Kenny", "127.0.0.1");
LogManager.GetCurrentClassLogger().Info("{shopitem} added to basket by {user}", new { Id = 6, Name = "Jacket", Color = "Orange" }, "Kenny");
Stackdriver 中的结果
我创建了以下 PR,添加了对发送 Google JsonPayload 的支持:
https://github.com/GoogleCloudPlatform/google-cloud-dotnet/pull/2256
更新 现在已经发展成为官方的 nuget-package:
我正在使用 Google.Cloud.Logging.NLog 目标将日志写入 Stackdriver。 我想通过根据 Stackdriver documentation:
发送 JSON 有效负载来使用 Nlog 和 Stackdriver 结构化日志记录功能日志正在通过,但我似乎没有在日志中填充 jsonPayload 属性,这意味着我没有发送 JSON 载荷。我是否需要 configure a JsonLayout 为下面所述的每种类型的日志消息?
目标代码
GoogleStackdriverTarget googleTarget = new GoogleStackdriverTarget
{
ProjectId = "123456",
Name = "desktop app",
CredentialFile = Path.Combine(@"my path to the json file"),
ContextProperties = { new TargetPropertyWithContext{Name = "MyCustomContextProperty",
Organization.Id}},
IncludeEventProperties = true,
Layout = new JsonLayout()
};
日志
LogManager.GetCurrentClassLogger().Info("Logon by {user} from {ip_address}", "Kenny", "127.0.0.1");
LogManager.GetCurrentClassLogger().Info("{shopitem} added to basket by {user}", new { Id = 6, Name = "Jacket", Color = "Orange" }, "Kenny");
Stackdriver 中的结果
我创建了以下 PR,添加了对发送 Google JsonPayload 的支持:
https://github.com/GoogleCloudPlatform/google-cloud-dotnet/pull/2256
更新 现在已经发展成为官方的 nuget-package: