personal knowledgebase
Basic instructions on how to use AWS for monitoring your websites. Note that I did not include instructions on creating the SNS topic, but check out the link in the Resources section for instructions on that one.
Create Function
buttonlambda-canary
blueprintcheck_AzuriteMaps
Choose an existing role
, service-role/lambda_canary_role
Rule
, select the one_minute
rulesite
enivornment variable, enter the URL of the siteCreate Function
buttonThe following instructions will create an alarm that will run each minute and when it detects the website is down, it will send an email to the email address previously configured in the SNS topic Websites_status_alarms
. It will only send this email once during the same failure (it will not repeat the emails after one minute). Once the website is up again, it will send a new email stating the alarm is now OK.
Alarms
in the left menu.Create Alarm
button.1. Select Metric
upper tab, in the Browse Metric
combo box, select Lambda
and then, under the Lambda > By Function Name
, find appropriate function name (like check_azuritemaps
) and choose Errors
metric name.2. Define Alarm
tab at the top of the dialog.Name
should be something that easily identifies which website is down (like AzuriteMaps is down
).Whenever
to >= 1
(leave the default for 1 out of 1 datapoints
).Actions
section, we will add two notifications (one for when the alarm is triggered and another for when the alarm is back to OK status):
a. ‘Whenever this alarm’ should have State is ALARM
.
b. Send notification to
should have Websites_status_alarms
(a SNS topic which we previously configured to send email to our email address).
c. Click on +Notification
button and add another alarm, this time with State is OK
Period
should be 1 minute.Statistic:
Standard
, Average
Wait for one minute and then check the status of the alarm.
To repeat the procedure for other websites, you can easily copy the existing alarm definition and just change the targeted lambda function and the name of the alarm.
CloudWatch Events
box to open the events editor.one_minute
in this case) will be shown below. Uncheck the Enabled
checkbox to the right of the event.Save
the edited Lambda function.lambda-canary
blueprint quite enough.