Step-by-Step Amazon Nova Act Tutorial Part 2: Automating EC2 CPU Checks Using Bedrock And Lambda

Objective of This SOP

By following this SOP, you will create a basic action-oriented AI workflow using Amazon Nova Act that:

  • Reads CPU usage
  • Checks a condition (CPU > 80%)
  • Executes an action using AWS Lambda
  • Returns a result

This is the foundation of Nova Act–style AI.

Prerequisites

Before starting, ensure you have:

  • An AWS account
  • Access to AWS Console
  • Region set to us-east-1
  • Create the EC2 instance and use this instance id for lambda
  • Basic familiarity with AWS navigation

Continue reading “Step-by-Step Amazon Nova Act Tutorial Part 2: Automating EC2 CPU Checks Using Bedrock And Lambda”

From Messy Logs to Structured Analytics using AWS S3, Lambda, and Athena

Continue reading “From Messy Logs to Structured Analytics using AWS S3, Lambda, and Athena”

Trigger Jenkins Job using AWS Lambda triggered by S3 Event

The problem that we faced:

There was a cron scheduled in our environment at a particular time which used to run at 8AM. This cron read data from the s3 bucket and used to succeed but failed when there were no objects present.

Problem this Integration solves:

  • Eliminates the need of keeping a scheduler in the system. Lambda will work as a Scheduler.
  • No manual intervention will be required in case the file from one service is delayed by a minute or an hour due to any reason. 
  • Data exchange and processing between teams become more efficient and less error-prone.
  • Eliminates the need of checking the presence of files on S3. It all gets automated.

Continue reading “Trigger Jenkins Job using AWS Lambda triggered by S3 Event”

AWS LAMBDA – Here’s Everything You Need to Know!

What is Serverless?

To understand what AWS Lambda is, we have to first understand all about serverless architecture. The serverless architecture is a way to build and run applications and services without having to manage infrastructure. Your application still runs on servers. When you run a serverless application, you get the benefit of not worrying about OS setup, patching, or scaling of servers that you would have to consider when you run your application on a physical server.

Serverless applications or platforms have four characteristics:

  • No server management
  • Flexible scaling
  • No idle capacity
  • High availability
Continue reading “AWS LAMBDA – Here’s Everything You Need to Know!”

Perfect Spot Instance’s Imperfections | part-II

Hello friends, if you are reading this blog, I assume that you have gone through the first part of my blog . However, if you haven’t, I suggest you to go through the link before reading this blog.

Continue reading “Perfect Spot Instance’s Imperfections | part-II”