我开始在python中编写简单的nagios check来监视EBS gp2卷上的“Burst Balance”。我想跳过使用预配置IOPS(io1)检查卷
我可以使用aws ec2 describe-volumes
获取此信息。
如何在python中使用boto检查卷类型?
答案 0 :(得分:1)
boto3
describe_volumes()
调用返回卷类型:
'VolumeType': 'standard'|'io1'|'gp2'|'sc1'|'st1'
我无法在boto
中找到等效内容,但现在可能需要时间转到boto3
。如果需要,您可以在同一个应用程序中同时使用它们,只需import boto3
并同时使用它。