manigandham / serilog-sinks-googlecloudlogging

Serilog sink that writes events to Google Cloud Logging
MIT License
41 stars 25 forks source link

Add custom top-level properties #70

Open lpodolak opened 4 months ago

lpodolak commented 4 months ago

I'm using your library for almost 2 years now and it's really good!

Recently we had a requirement to push some properties to Google Cloud Logging at one nesting level higher than usually, so directly under the "jsonPayload" node, next to .e.g "message". Current solution doesn't allow for that, so I added another configuration option - CustomTopLevelPropertyKeys - that allows specifying which properties should be added in a top-level.

To ilustrate, this is how these properties are defined: image

And here is how the eventual log entry looks like: image

How about that?