IMetricSinkConfig
using System;
namespace Monitoring.Sinks
{
public interface IMetricSinkConfig
{
TimeSpan ThrottleTimeout { get; set; }
bool SendSumMetrics { get; set; }
bool SendApmMetrics { get; set; }
}
}