MetricData

class oci.stack_monitoring.models.MetricData(**kwargs)

Bases: object

Metric Details

Methods

__init__(**kwargs) Initializes a new MetricData object with values from keyword arguments.

Attributes

dimensions Gets the dimensions of this MetricData.
evaluation_data_points [Required] Gets the evaluation_data_points of this MetricData.
training_data_points [Required] Gets the training_data_points of this MetricData.
__init__(**kwargs)

Initializes a new MetricData object with values from keyword arguments. The following keyword arguments are supported (corresponding to the getters/setters of this class):

Parameters:
  • dimensions (dict(str, str)) – The value to assign to the dimensions property of this MetricData.
  • training_data_points (list[oci.stack_monitoring.models.DataPoint]) – The value to assign to the training_data_points property of this MetricData.
  • evaluation_data_points (list[oci.stack_monitoring.models.DataPoint]) – The value to assign to the evaluation_data_points property of this MetricData.
dimensions

Gets the dimensions of this MetricData. list of dimensions for the metric

Returns:The dimensions of this MetricData.
Return type:dict(str, str)
evaluation_data_points

[Required] Gets the evaluation_data_points of this MetricData. list of data points for the metric for evaluation of anomalies

Returns:The evaluation_data_points of this MetricData.
Return type:list[oci.stack_monitoring.models.DataPoint]
training_data_points

[Required] Gets the training_data_points of this MetricData. list of data points for the metric for training of baseline

Returns:The training_data_points of this MetricData.
Return type:list[oci.stack_monitoring.models.DataPoint]