Show / Hide Table of Contents

Class DbManagementAnalyticsMetric

The metric details of a Database Management resource.

Inheritance
object
DbManagementAnalyticsMetric
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 DbManagementAnalyticsMetric

Properties

Dimensions

Declaration
[JsonProperty(PropertyName = "dimensions")]
public Dictionary<string, string> Dimensions { get; set; }
Property Value
Type Description
Dictionary<string, string>

The qualifiers provided in the definition of the returned metric.

DurationInSeconds

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

The duration of the returned aggregated data in seconds.

Mean

Declaration
[JsonProperty(PropertyName = "mean")]
public double Mean { get; set; }
Property Value
Type Description
double

The mean value of the metric.

Metadata

Declaration
[JsonProperty(PropertyName = "metadata")]
public Dictionary<string, string> Metadata { get; set; }
Property Value
Type Description
Dictionary<string, string>

The additional information about the metric.
Example: "unit": "bytes"

MetricName

Declaration
[JsonProperty(PropertyName = "metricName")]
public string MetricName { get; set; }
Property Value
Type Description
string

The name of the metric.

StartTimestampInEpochSeconds

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

The start time associated with the value of the metric.

In this article
Back to top