Monitoring.MetricBase
namespace Monitoring
{
public abstract class MetricBase
{
public abstract string BucketName { get; }
public Dictionary<string, object> CustomData { get; set; }
public string CorrelationID { get; set; }
public int WorkspaceID { get; set; }
public string UnitOfMeasure { get; set; }
public string ImportApiVersion { get; set; }
public string RelativityVersion { get; set; }
public MetricBase();
protected T GetValueOrDefault<T>(string key);
}
}