10 [CollectionName(
"SampleStatistics")]
11 [Index(
"Id",
"Start")]
12 [Index(
"Start",
"Id")]
15 private string objectId =
null;
16 private string id =
null;
17 private DateTime start = DateTime.MinValue;
18 private DateTime stop = DateTime.MinValue;
19 private long count = 0;
20 private double? mean =
null;
21 private double? variance =
null;
22 private double? stdDev =
null;
23 private double? min =
null;
24 private double? max =
null;
40 set => this.objectId = value;
49 set => this.id = value;
58 set => this.start = value;
64 [DefaultValueDateTimeMinValue]
68 set => this.stop = value;
78 set => this.count = value;
88 set => this.mean = value;
98 set => this.variance = value;
108 set => this.stdDev = value;
118 set => this.min = value;
128 set => this.max = value;
Represents collected statistical information from a small portion of time.
double? Min
Smallest value
double? StdDev
Standard deviation of values
long Count
Number of events
SampleStatistic()
Represents collected statistical information from a small portion of time.
double? Variance
Variance of values
DateTime Stop
End of period.
DateTime Start
Start of period.
TypeNameSerialization
How the type name should be serialized.