using System.Collections.Generic; namespace Unity.Services.Core.Telemetry.Internal { class Metrics : IMetrics { internal IDictionary PackageTags { get; } = new Dictionary(); void IMetrics.SendGaugeMetric(string name, double value, IDictionary tags) { // do nothing } void IMetrics.SendHistogramMetric(string name, double time, IDictionary tags) { // do nothing } void IMetrics.SendSumMetric(string name, double value, IDictionary tags) { // do nothing } } }