本文整理汇总了Python中alerta.models.alert.Alert.housekeeping方法的典型用法代码示例。如果您正苦于以下问题:Python Alert.housekeeping方法的具体用法?Python Alert.housekeeping怎么用?Python Alert.housekeeping使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类alerta.models.alert.Alert
的用法示例。
在下文中一共展示了Alert.housekeeping方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: housekeeping
# 需要导入模块: from alerta.models.alert import Alert [as 别名]
# 或者: from alerta.models.alert.Alert import housekeeping [as 别名]
def housekeeping():
DEFAULT_EXPIRED_DELETE_HRS = 2 # hours
DEFAULT_INFO_DELETE_HRS = 12 # hours
try:
expired_threshold = int(request.args.get('expired', DEFAULT_EXPIRED_DELETE_HRS))
info_threshold = int(request.args.get('info', DEFAULT_INFO_DELETE_HRS))
except Exception as e:
raise ApiError(str(e), 400)
try:
Alert.housekeeping(expired_threshold, info_threshold)
return 'OK'
except Exception as e:
return 'HOUSEKEEPING FAILED: %s' % e, 503