< Summary

Class:Microsoft.Azure.ApplicationInsights.Query.Models.MetricsSegmentedData
Assembly:Microsoft.Azure.ApplicationInsights.Query
File(s):C:\Git\azure-sdk-for-net\sdk\applicationinsights\Microsoft.Azure.ApplicationInsights.Query\src\Customized\Models\MetricsSegmentedData.cs
Covered lines:0
Uncovered lines:7
Coverable lines:7
Total lines:43
Line coverage:0% (0 of 7)
Covered branches:0
Total branches:0

Metrics

MethodCyclomatic complexity Line coverage Branch coverage
get_SegmentId()-0%100%
get_SegmentValue()-0%100%
get_Sum()-0%100%
get_Average()-0%100%
get_Min()-0%100%
get_Max()-0%100%
get_Count()-0%100%

File(s)

C:\Git\azure-sdk-for-net\sdk\applicationinsights\Microsoft.Azure.ApplicationInsights.Query\src\Customized\Models\MetricsSegmentedData.cs

#LineLine coverage
 1namespace 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>
 011        public string SegmentId { get; internal set; }
 12
 13        /// <summary>
 14        /// The value of the segment.
 15        /// </summary>
 016        public string SegmentValue { get; internal set; }
 17
 18        /// <summary>
 19        /// Gets sum of the metric (if requested).
 20        /// </summary>
 021        public float? Sum { get; internal set; }
 22
 23        /// <summary>
 24        /// Gets average of the metric (if requested).
 25        /// </summary>
 026        public float? Average { get; internal set; }
 27
 28        /// <summary>
 29        /// Gets minof the metric (if requested).
 30        /// </summary>
 031        public float? Min { get; internal set; }
 32
 33        /// <summary>
 34        /// Gets max of the metric (if requested).
 35        /// </summary>
 036        public float? Max { get; internal set; }
 37
 38        /// <summary>
 39        /// Gets count of the metric (if requested).
 40        /// </summary>
 041        public int? Count { get; internal set; }
 42    }
 43}