IMetircsCollector.cs 177 B

123456789
  1. namespace AipGateway.API.Metrics
  2. {
  3. public interface IMetircsCollector
  4. {
  5. void Increment(string metricName);
  6. long GetValue(string metricName);
  7. }
  8. }