Skip to content

Instantly share code, notes, and snippets.

View CodeBlanch's full-sized avatar

Mikel Blanchard CodeBlanch

View GitHub Profile
@CodeBlanch
CodeBlanch / DataDogLogEnrichmentMiddleware.cs
Created July 12, 2022 18:29
OpenTelemetry TraceId/SpanId to DataDog dd.trace_id/dd.span_id log scope middleware
// <auto-generated> <- Turns off style cop in this file
#nullable enable
using System.Buffers.Binary;
using System.Collections;
using System.Diagnostics;
using System.Globalization;
using System.Runtime.CompilerServices;
using System.Text;
@CodeBlanch
CodeBlanch / Program.cs
Created October 9, 2019 01:27
.NET Core 3 System.Text.Json JsonStringEnumMemberConverter
using System;
using System.Reflection;
using System.Runtime.Serialization;
using System.Text;
using System.Text.Json;
using System.Text.Json.Serialization;
using System.Collections.Generic;
namespace Code
{