Using AWS Lambda to monitor websites
A microservice which can be run on AWS Lambda to monitor and check websites and metric value of website status code and response time taken per request is sent to AWS CloudWatch.
Last updated
Was this helpful?
A microservice which can be run on AWS Lambda to monitor and check websites and metric value of website status code and response time taken per request is sent to AWS CloudWatch.
Last updated
Was this helpful?
Was this helpful?
{
"Version": "2012-10-17",
"Statement": [
{
"Sid": "AllowMeticAlarmCreation",
"Effect": "Allow",
"Action": [
"cloudwatch:PutMetricAlarm",
"cloudwatch:PutMetricData"
],
"Resource": "*"
},
{
"Sid": "AllowLogCollection",
"Effect": "Allow",
"Action": [
"logs:PutLogEvents",
"logs:CreateLogStream",
"logs:CreateLogGroup"
],
"Resource": "arn:aws:logs:*:*:*"
}
]
}