namespace LiteCharms.Features.Email.Extensions; public static class EmailTelemetry { public static readonly ActivitySource Source = new("LiteCharms.EmailService"); public static readonly Meter Meter = new("LiteCharms.EmailService"); public static readonly Counter EmailsSent = Meter.CreateCounter("emails_sent_total", "count", "Total successful emails sent"); public static readonly Counter EmailsFailed = Meter.CreateCounter("emails_failed_total", "count", "Total failed email attempts"); }