Class MetricReadingSummary
Represents aggregated measurements (readings) of the service metric during particular time interval.
Inherited Members
Namespace: Nevatech.Vsb.Repository.Entities
Assembly: Nevatech.Vsb.Repository.dll
Syntax
[DataContract(Namespace = "http://schemas.nevatech.com/sentinet/2011/02", Name = "ReadingSum")]
public class MetricReadingSummary
Constructors
MetricReadingSummary()
Declaration
public MetricReadingSummary()
Properties
AverageValue
Gets or sets metric average value observed in the current time interval.
Declaration
[DataMember(Name = "Avg")]
public decimal AverageValue { get; set; }
Property Value
| Type | Description |
|---|---|
| decimal |
MaximumValue
Gets or sets metric maximum value observed in the current time interval.
Declaration
[DataMember(Name = "Max")]
public decimal MaximumValue { get; set; }
Property Value
| Type | Description |
|---|---|
| decimal |
MinimumValue
Gets or sets metric minimum value observed in the current time interval.
Declaration
[DataMember(Name = "Min")]
public decimal MinimumValue { get; set; }
Property Value
| Type | Description |
|---|---|
| decimal |
ServiceAgreementMetricId
Gets or sets identifier of the service metric that was measured.
Declaration
[DataMember(Name = "MetricId")]
public int ServiceAgreementMetricId { get; set; }
Property Value
| Type | Description |
|---|---|
| int |
StartDateTime
Gets or sets the beginning of the time interval. The time is reported in the time zone of the corresponding service agreement.
Declaration
[DataMember(Name = "T")]
public DateTime StartDateTime { get; set; }
Property Value
| Type | Description |
|---|---|
| DateTime |