using System; using System.Xml.Serialization; using System.Collections.Generic; namespace Aop.Api.Domain { /// /// CustomMetric Data Structure. /// [Serializable] public class CustomMetric : AopObject { /// /// 监控共建自定义指标数据产生的时间戳 /// [XmlElement("biz_time")] public long BizTime { get; set; } /// /// 监控共建自定义指标维度集合 /// [XmlArray("dimensions")] [XmlArrayItem("dimension")] public List Dimensions { get; set; } /// /// 监控共建自定义指标名称 /// [XmlElement("metric_name")] public string MetricName { get; set; } /// /// 监控共建自定义指标值 /// [XmlElement("value")] public string Value { get; set; } } }