| | 1 | | namespace Microsoft.Azure.ApplicationInsights.Query.Models |
| | 2 | | { |
| | 3 | | /// <summary> |
| | 4 | | /// The metric values for a segment. |
| | 5 | | /// </summary> |
| | 6 | | public class MetricsSegmentedData : IMetricsBaseSegmentInfo, IMetricData |
| | 7 | | { |
| | 8 | | /// <summary> |
| | 9 | | /// The name of the segment. |
| | 10 | | /// </summary> |
| 0 | 11 | | public string SegmentId { get; internal set; } |
| | 12 | |
|
| | 13 | | /// <summary> |
| | 14 | | /// The value of the segment. |
| | 15 | | /// </summary> |
| 0 | 16 | | public string SegmentValue { 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 | | } |