AWS IoT Rule HTTPS Endpoint

0

In AWS IoT core rule, there is a rule that calls HTTPS Endpoint when specific data comes in. HTTPS Endpoint calls do not work intermittently. We confirmed that data is coming into AWS IoT. Is there a way to check the history of HTTPS Endpoint calls in AWS IoT?

I added CloudWatch logs to the rule, but no logs are output.

asked 7 months ago234 views
2 Answers
0
Accepted Answer

In AWS IoT core rule, there is a rule that calls HTTPS Endpoint when specific data comes in. HTTPS Endpoint calls do not work intermittently. We confirmed that data is coming into AWS IoT. Is there a way to check the history of HTTPS Endpoint calls in AWS IoT?

I added CloudWatch logs to the rule, but no logs are output.

The AWS IoT rules make multiple attempts to perform an action in case of intermittent errors. If all attempts fail, the message is discarded and the error is available in your CloudWatch logs [0]. You can specify an error action for each rule that is invoked after a failure occurs [1]. Error action can help you to get the specific error message for a certain action. These information would be very helpful to troubleshoot if there is any error when triggering the IoT rule.

[0] https://docs.aws.amazon.com/iot/latest/developerguide/configure-logging.html [1] https://docs.aws.amazon.com/iot/latest/developerguide/rule-error-handling.html

Furthermore, please make sure AWS IOT logging [2] is configured properly and to check AWS IoT logs in the CloudWatch console please follow the steps mentioned in [3]

[2] https://docs.aws.amazon.com/iot/latest/developerguide/configure-logging.html [3] https://docs.aws.amazon.com/iot/latest/developerguide/cloud-watch-logs.html#viewing-logs

AWS
SUPPORT ENGINEER
answered 7 months ago
0

Hi. If you've enabled AWS IoT logs, you should have something in CloudWatch for each rule execution with "eventType": "RuleExecution" and "ruleAction": "HttpAction".

And have you defined an error action? If the HTTP action exhausts retries, the error action will be executed.

profile pictureAWS
EXPERT
Greg_B
answered 7 months ago

You are not logged in. Log in to post an answer.

A good answer clearly answers the question and provides constructive feedback and encourages professional growth in the question asker.

Guidelines for Answering Questions