Hi at all,
I was trying to configure the Mysql RDS monitor plugin, I had to do some debugging because it gave me some error.
Actually I found that something’s changed from your guide to the boto version I have.
Unfortunaltely I don’t have much time tu argue more. I just made some test and I found this solution working for me:
-
replace
import boto
with
import boto.rds
import boto.ec2.cloudwatch -
replace
rds = boto.connect_rds()
with
rds = boto.rds.connect_to_region(“eu-west-1”) #use your region -
replace
cw = boto.connect_cloudwatch()
with
cw = boto.ec2.cloudwatch.connect_to_region(“eu-west-1”) #use your region
Hope this could help.
bye!