Skip to content

Instantly share code, notes, and snippets.

View menees's full-sized avatar

Bill Menees menees

View GitHub Profile
@oleh-zheleznyak
oleh-zheleznyak / Serilog-ApplicationInsights-OperationIdEnricher.cs
Last active December 23, 2022 21:48
Serilog Log Event enricher that adds System.Diagnostics.Activity to act as OperationId in Application Insights
using System.Diagnostics;
using Serilog.Core;
using Serilog.Events;
namespace YourCompany.YourService.YourProject.Serilog
{
public class OperationIdEnricher : ILogEventEnricher
{
public void Enrich(LogEvent logEvent, ILogEventPropertyFactory propertyFactory)
{
@davidfowl
davidfowl / dotnetlayout.md
Last active June 28, 2024 10:57
.NET project structure
$/
  artifacts/
  build/
  docs/
  lib/
  packages/
  samples/
  src/
 tests/