Operations | Monitoring | ITSM | DevOps | Cloud

Serverless

The latest News and Information on Serverless Monitoring, Management, Development and related cloud technologies.

How to monitor Lambda with CloudWatch Metrics

With AWS Lambda, you have basic observability built into the platform with CloudWatch. CloudWatch offers support for both metrics and logging. CloudWatch Metrics gives you basic metrics, visualization and alerting while CloudWatch Logs captures everything that is written to stdout and stderr. In this post, we will take a deep dive into CloudWatch Metrics to see how you can use it to monitor your Lambda functions and its limitations.

Ultimate Serverless Benchmark. AWS Lambda Vs. All (Azure, Google, IBM, Alicloud, and Oracle)

We currently have six major cloud platforms offering serverless products, AWS Lambda being the pioneer. Our goal is to provide a quick way to compare and evaluate all. For each service, we will be evaluating: There are smaller service providers on the market that are focused on serverless, but we won’t cover them in the present analysis. For the pricing comparison, we considered regions in the United States east coast. Let the battle begin!

Using Lambda Layers for Better Serverless Architecture

Lambda Layers were introduced by AWS in late 2018 as a way to simplify the developer’s life when managing dependencies and shared resources across a multi-Lambda stack. It’s a versatile feature that brings many benefits, which we will discuss in this article. Using Lambda Layers does increase complexity to monitor and maintain your applications, but there’s no need to fear.

Dealing With the AWS Lambda Invocation Payload Limits

If you’ve dealt with lambda functions you may have run across the RequestEntityTooLargeException - * byte payload is too large for the Event invocation type (limit 131072 bytes) AWS Lambda exception that occurs when a function is invoked with too large of a payload. Current AWS Lambda limits are set at 6 MB for synchronous/RequestResponse invocations, and 128 K for asynchronous/Event invocations.

AWS Lambda - 7 things you might not know

In the unlikely event that you might not already hear this, AWS Lambda is Amazon’s answer to the serverless computing. The theory behind serverless computer services is, as it sounds, to create a network for a variety of purposes while bypassing the need to have and maintain expensive servers. With AWS Lambda, you are at top of the class in serverless computing. The setup and management is a breeze.