MonitorQueryModelFactory.MetricValue Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Creates an instance of MetricValue to support mocking.
public static Azure.Monitor.Query.Models.MetricValue MetricValue(DateTimeOffset timeStamp = default, double? average = default, double? minimum = default, double? maximum = default, double? total = default, double? count = default);
static member MetricValue : DateTimeOffset * Nullable<double> * Nullable<double> * Nullable<double> * Nullable<double> * Nullable<double> -> Azure.Monitor.Query.Models.MetricValue
Public Shared Function MetricValue (Optional timeStamp As DateTimeOffset = Nothing, Optional average As Nullable(Of Double) = Nothing, Optional minimum As Nullable(Of Double) = Nothing, Optional maximum As Nullable(Of Double) = Nothing, Optional total As Nullable(Of Double) = Nothing, Optional count As Nullable(Of Double) = Nothing) As MetricValue
Parameters
- timeStamp
- DateTimeOffset
The timestamp for the metric value in ISO 8601 format.
The number of samples in the time range. Can be used to determine the number of values that contributed to the average value.
Returns
A new MetricValue instance for mocking.
Applies to
GitHub에서 Microsoft와 공동 작업
이 콘텐츠의 원본은 GitHub에서 찾을 수 있으며, 여기서 문제와 끌어오기 요청을 만들고 검토할 수도 있습니다. 자세한 내용은 참여자 가이드를 참조하세요.
Azure SDK for .NET