如何使用boto获取实例监控类型(基本与详细)?我需要它来了解指标的采样间隔。
我没有在API中找到它。
链接到boto EC2 API:http://boto.readthedocs.org/en/latest/ref/ec2.html#module-boto.ec2.volume
答案 0 :(得分:3)
默认情况下,EC2实例具有基本监视功能。没有办法把它关掉。您还可以通过在调用monitoring_enabled=True
时指定run_instances
或在现有实例上调用monitor_instances
来启用详细监控。
要确定是否启用了详细监控,请调用get_all_instances
,然后查看返回的monitoring_state
对象的Instance
属性。如果启用了详细监控,则其值为enabled
;如果正在使用基本监控,则值为disabled
。