Skip to content

Latest commit

 

History

History
31 lines (23 loc) · 1.19 KB

File metadata and controls

31 lines (23 loc) · 1.19 KB

MetricDegradationConfig

MetricDegradation Monitors track metrics over time.

Properties

Name Type Description Notes
aggregation Aggregation [optional]
transform Transform [optional]
threshold Threshold [optional]

Example

from ri.apiclient.models.metric_degradation_config import MetricDegradationConfig

# TODO update the JSON string below
json = "{}"
# create an instance of MetricDegradationConfig from a JSON string
metric_degradation_config_instance = MetricDegradationConfig.from_json(json)
# print the JSON string representation of the object
print(MetricDegradationConfig.to_json())

# convert the object into a dict
metric_degradation_config_dict = metric_degradation_config_instance.to_dict()
# create an instance of MetricDegradationConfig from a dict
metric_degradation_config_from_dict = MetricDegradationConfig.from_dict(metric_degradation_config_dict)

[Back to Model list] [Back to API list] [Back to README]