Logging is one of the essential components of software development. We use different types of logs to identify issues in applications, track application events, analyze the performance of applications etc. Even though logs are very beneficial, they also introduce a huge risk to your business. For example, logging sensitive data of the customers, exposing security…
Category: Cloudwatch
CloudWatch Lamba Subscription Filter (CDK-Demo)
In this article, I want to show you how we can use the AWS CloudWatch subscription filter for filtering logs and forward them to a lambda function. Simple Usecase Filter critical app errors and send a real-time notification to a Slack channel with error information. Note that I use AWS CDK for creating the infrastructure….
Change Default SNS Email For CloudWatch Events
Creating a customized email notification for an SNS topic. Refer to the original article that I published on https://duleendra.medium.com
Running a Scheduled Event Using AWS Lambda, EventBridge Rules, and CDK
In this post, I am going to show you how you can use AWS Lambda and Amazon Event Bridge Rule for running a cron job. I use AWS CDK for creating the infrastructure. Refer to the original article that I published on https://duleendra.medium.com
Creating Amazon CloudWatch Metric Filter, Alarm, and Slack Integration Using AWS CDK
In my previous post, I explained how we can monitor application errors using AWS CloudWatch logs, metric filters, alarms, and AWS Chatbot Slack client. In that example, I manually created all the resources using AWS Management Console. In this post, I want to show you the implementation of the same infrastructure using AWS CDK. AWS CDK…
Monitor Application Errors with AWS CloudWatch and AWS Chatbot-Slack Client
In this article, I will show you how we can use AWS CloudWatch and AWS Chatbot Slack Client for monitoring application errors. Refer to the original article that I published on https://duleendra.medium.com