| | | 1 | | namespace Microsoft.Azure.ApplicationInsights.Query.Models |
| | | 2 | | { |
| | | 3 | | /// <summary> |
| | | 4 | | /// An intervaled metric result data. |
| | | 5 | | /// </summary> |
| | | 6 | | public class MetricsIntervaledData : IMetricData |
| | | 7 | | { |
| | | 8 | | /// <summary> |
| | | 9 | | /// Gets start time of the metric. |
| | | 10 | | /// </summary> |
| | 0 | 11 | | public System.DateTime? Start { get; internal set; } |
| | | 12 | | |
| | | 13 | | /// <summary> |
| | | 14 | | /// Gets start time of the metric. |
| | | 15 | | /// </summary> |
| | 0 | 16 | | public System.DateTime? End { get; internal set; } |
| | | 17 | | |
| | | 18 | | /// <summary> |
| | | 19 | | /// Gets sum of the metric (if requested). |
| | | 20 | | /// </summary> |
| | 0 | 21 | | public float? Sum { get; internal set; } |
| | | 22 | | |
| | | 23 | | /// <summary> |
| | | 24 | | /// Gets average of the metric (if requested). |
| | | 25 | | /// </summary> |
| | 0 | 26 | | public float? Average { get; internal set; } |
| | | 27 | | |
| | | 28 | | /// <summary> |
| | | 29 | | /// Gets minof the metric (if requested). |
| | | 30 | | /// </summary> |
| | 0 | 31 | | public float? Min { get; internal set; } |
| | | 32 | | |
| | | 33 | | /// <summary> |
| | | 34 | | /// Gets max of the metric (if requested). |
| | | 35 | | /// </summary> |
| | 0 | 36 | | public float? Max { get; internal set; } |
| | | 37 | | |
| | | 38 | | /// <summary> |
| | | 39 | | /// Gets count of the metric (if requested). |
| | | 40 | | /// </summary> |
| | 0 | 41 | | public int? Count { get; internal set; } |
| | | 42 | | } |
| | | 43 | | } |