using System.Collections.Generic; namespace Unity.Services.Core.Telemetry.Internal { class DisabledMetrics : IMetrics { void IMetrics.SendGaugeMetric(string name, double value, IDictionary tags) { // Do nothing since it's disabled. } void IMetrics.SendHistogramMetric(string name, double time, IDictionary tags) { // Do nothing since it's disabled. } void IMetrics.SendSumMetric(string name, double value, IDictionary tags) { // Do nothing since it's disabled. } } }