Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.15 KB

File metadata and controls

29 lines (20 loc) · 1.15 KB

ErrorBudgetAlertRule

Properties

Name Type Description Notes
metric str This is the service levels metric type. Error budget alert uses <b>BURNED_PERCENTAGE</b>, <b>BURN_RATE</b> (<i>Deprecated</i>) or <B>BURN_RATE_V2</B> metric.

Example

from instana_client.models.error_budget_alert_rule import ErrorBudgetAlertRule

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

# convert the object into a dict
error_budget_alert_rule_dict = error_budget_alert_rule_instance.to_dict()
# create an instance of ErrorBudgetAlertRule from a dict
error_budget_alert_rule_from_dict = ErrorBudgetAlertRule.from_dict(error_budget_alert_rule_dict)

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