I use python with boto APIs to:
- create sns, sqs, and subscribe sqs queue to the sns.
- connect to cloudwatch, and create alarm for the "StatusCheckFailed" metric.
- use put_metric_alarm to start the alarm monitoring and notification.
I launched one of my own AMI that will simulate StatusCheckFailed condition. If I go to AWS console>SQS, I can see I got the alarm notifications. I can view the content in JSON format too in AWS console.
When I use python, with SQS api, I can:
- look up the queue (
q = sqs.lookup(queue_name)
) - get the message (
msg = q.read()
) - get the body of the message (
b = message.get_body_encoded()
) - or
message.get_body()
The result is not readable.
get_body_encoded
gets you one string without any divider. e.g.TypeNotificationMessageId02a8ce9dc21e55eaaeca83b5258563ffTopicArnarnawssnsuswest21888888879statuscheckalarm17122223479SubjectStatusCheckAlarmbadvmstatusalarminUSWest2MessageAlarmNamebadvmstatusalarmAlarmDescriptionstatuscheckfori50602c5abadvmAWSAccountId11233333333NewStateValueALARMNewStateReasonThresholdCross....`
get_body
gets you un-readable coding.
How can I get the message body in JSON format, e.g. like the one shown in the SQS section of the AWS console?
The result of
get_body()
returns a JSON-formatted string.I recreated your situation by creating an SQS queue and an SNS notification topic, subscribed the SQS queue to the SNS topic, then created an alarm that pushes notifications to the SNS topic. I then triggered an alarm situation and retrieved the results via Python:
The response to
get_body()
is a string containing JSON. This can be parsed using the JSON library: