本文整理汇总了Python中status.Status.status方法的典型用法代码示例。如果您正苦于以下问题:Python Status.status方法的具体用法?Python Status.status怎么用?Python Status.status使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类status.Status
的用法示例。
在下文中一共展示了Status.status方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: get_parser
# 需要导入模块: from status import Status [as 别名]
# 或者: from status.Status import status [as 别名]
parser.add_argument("-t", "--tenant", help="Tenant name")
parser.add_argument("-r", "--region", help="The region to test")
return parser
if __name__ == '__main__':
parser = get_parser()
args = parser.parse_args()
status = Status(status='OK')
try:
auth_plugin = novaclient.auth_plugin.load_plugin(AUTH_SYSTEM)
c = client.Client('2', args.username, args.api_key, args.tenant,
args.auth_url, region_name=args.region,
auth_system=AUTH_SYSTEM, auth_plugin=auth_plugin)
c.flavors.list()
status.add_metric('2xx', 'double', 1)
except exceptions.HttpError as e:
result = Status()
http_status = e.http_status
if 500 <= http_status < 600:
status.add_metric('5xx', 'double', 1)
else:
status.add_metric('other', 'double', 1)
except:
status.status = 'FAIL'
status.add_metric('error', 'double', 1)
print(status)