12 lines
273 B
C#
12 lines
273 B
C#
using System.Diagnostics.Metrics;
|
|
|
|
namespace StellaOps.Scanner.Worker.Diagnostics;
|
|
|
|
public static class EpssWorkerInstrumentation
|
|
{
|
|
public const string MeterName = "StellaOps.Scanner.Epss";
|
|
|
|
public static Meter Meter { get; } = new(MeterName, version: "1.0.0");
|
|
}
|
|
|