add aspire for otel

This commit is contained in:
Matt Parker
2025-09-29 19:07:38 +10:00
parent b7029e7dce
commit e0ddcc55f2
16 changed files with 358 additions and 1 deletions

View File

@@ -0,0 +1,10 @@
using System.Diagnostics;
using System.Diagnostics.Metrics;
namespace SharpIDE.Application;
public static class SharpIdeOtel
{
public static readonly ActivitySource Source = new("SharpIde");
public static readonly Meter Meter = new("SharpIde");
}