< Summary

Class:Microsoft.Azure.ApplicationInsights.Query.Models.MetricsIntervaledData
Assembly:Microsoft.Azure.ApplicationInsights.Query
File(s):C:\Git\azure-sdk-for-net\sdk\applicationinsights\Microsoft.Azure.ApplicationInsights.Query\src\Customized\Models\MetricsIntervaledData.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_Start()-0%100%
get_End()-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\MetricsIntervaledData.cs

#LineLine coverage
 1namespace 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>
 011        public System.DateTime? Start { get; internal set; }
 12
 13        /// <summary>
 14        /// Gets start time of the metric.
 15        /// </summary>
 016        public System.DateTime? End { 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}