Show / Hide Table of Contents

Class FleetMetricSummaryDefinition

A summary of the fleet metrics, which provides the metric aggregated value of the databases in the fleet.

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

Properties

BaselineValue

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

The metric aggregated value at the baseline date and time.

Dimensions

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

The unique dimension key and values of the baseline 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 metric aggregated value at the target date and time.

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