Show / Hide Table of Contents

Class FleetMetricDefinition

The database metric details.

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

Properties

BaselineValue

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

The baseline value of the metric.

Dimensions

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

The dimensions of the metric.

MetricName

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

The name of the metric.

PercentageChange

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

The percentage change in the metric aggregated value compared to the baseline value.

TargetValue

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

The target value of the metric.

Timestamp

Declaration
[JsonProperty(PropertyName = "timestamp")]
public DateTime? Timestamp { get; set; }
Property Value
Type Description
DateTime?

The data point date and time in UTC in ISO-8601 format, which is "yyyy-MM-dd'T'hh:mm:ss.sss'Z'".

Unit

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

The unit of the value.

In this article
Back to top