mirror of
https://github.com/meysamhadeli/booking-microservices.git
synced 2026-04-11 19:02:15 +08:00
17 lines
539 B
C#
17 lines
539 B
C#
namespace BuildingBlocks.OpenTelemetryCollector;
|
|
|
|
public static class ObservabilityConstant
|
|
{
|
|
public static string InstrumentationName = default!;
|
|
|
|
public static class Components
|
|
{
|
|
public const string CommandHandler = "CommandHandler";
|
|
public const string QueryHandler = "QueryHandler";
|
|
public const string EventStore = "EventStore";
|
|
public const string Producer = "Producer";
|
|
public const string Consumer = "Consumer";
|
|
public const string EventHandler = "EventHandler";
|
|
}
|
|
}
|