aboutsummaryrefslogtreecommitdiff
path: root/src/Enmarcha.Backend/Telemetry.cs
diff options
context:
space:
mode:
authorAriel Costas Guerrero <ariel@costas.dev>2026-01-25 21:05:33 +0100
committerAriel Costas Guerrero <ariel@costas.dev>2026-01-25 21:06:01 +0100
commitf9b7af64550be1320acc84d60184e8c8ce873b94 (patch)
treed43e995319b4a3856aa929848b9ad807afb1cf86 /src/Enmarcha.Backend/Telemetry.cs
parentc89353dede64bd2c21c0a1ebd6b6de6282998326 (diff)
feat: Add OpenTelemetry instrumentation and configuration for enhanced telemetry tracking
Diffstat (limited to 'src/Enmarcha.Backend/Telemetry.cs')
-rw-r--r--src/Enmarcha.Backend/Telemetry.cs8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/Enmarcha.Backend/Telemetry.cs b/src/Enmarcha.Backend/Telemetry.cs
new file mode 100644
index 0000000..35c5348
--- /dev/null
+++ b/src/Enmarcha.Backend/Telemetry.cs
@@ -0,0 +1,8 @@
+using System.Diagnostics;
+
+namespace Enmarcha.Backend;
+
+public static class Telemetry
+{
+ public static readonly ActivitySource Source = new("Enmarcha.Backend");
+}