Show / Hide Table of Contents

Class MetricsAggregationRange

The set of aggregated data returned for a metric.

Inheritance
object
MetricsAggregationRange
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.DatabasemanagementService.Models
Assembly: OCI.DotNetSDK.Databasemanagement.dll
Syntax
public class MetricsAggregationRange

Properties

Header

Declaration
[JsonProperty(PropertyName = "header")]
public DbManagementAnalyticsMetric Header { get; set; }
Property Value
Type Description
DbManagementAnalyticsMetric

Metrics

Declaration
[JsonProperty(PropertyName = "metrics")]
public List<DbManagementAnalyticsMetric> Metrics { get; set; }
Property Value
Type Description
List<DbManagementAnalyticsMetric>

The list of metrics returned for the specified request. Each of the metrics has a metricName and additional properties like metadata, dimensions. If a property is not set, then use the value from header.
Suppose m be an item in the metrics array:

  • If m.metricName is not set, use header.metricName instead
  • If m.durationInSeconds is not set, use header.durationInSeconds instead
  • If m.dimensions is not set, use header.dimensions instead
  • If m.metadata is not set, use header.metadata instead

RangeEndTimeInEpochSeconds

Declaration
[JsonProperty(PropertyName = "rangeEndTimeInEpochSeconds")]
public long? RangeEndTimeInEpochSeconds { get; set; }
Property Value
Type Description
long?

The end of the time range (exclusive) of the returned metric data.

RangeStartTimeInEpochSeconds

Declaration
[JsonProperty(PropertyName = "rangeStartTimeInEpochSeconds")]
public long? RangeStartTimeInEpochSeconds { get; set; }
Property Value
Type Description
long?

The beginning of the time range (inclusive) of the returned metric data.

In this article
Back to top