DEV Community

Cover image for I tried AWS Serverless monitoring using Dashbird - here's my honest review
Taavi Rehemägi for Dashbird

Posted on

I tried AWS Serverless monitoring using Dashbird - here's my honest review

Disclaimer: This article was written by BK Lim, Co-founder of Interviewer.AI, and originally published on Medium. The information provided is solely based on his personal usage and opinion on the Dashbird platform.

tl;dr

Using Dashbird.io allows us to monitor our AWS Serverless resources better and helps us nailed down on specific errors quickly and more efficiently.

As a startup, we always want to focus on the most important thing --- to deliver value to our customers. For that reason, we are a huge fan of the serverless options provided by AWS (Lambda) and GCP (Cloud Function) as these allow us to maintain and quickly deploy bite-size business logic to production, without having to worry too much about maintaining the underlying servers and computing resources. Additionally, using services like AWS Step Functions allows us to orchestrate the Lambda function in a high-level visual and low-code fashion, at the same time allowing us to execute different functions in a specific order.

step functions workflow

Sample AWS Step Function Visual Workflow --- source: AWS

Monitoring the execution of Lambda functions starts to become a real issue when you have tens or hundreds of functions running at the same time. When we first started, we relied a lot on Cloudwatch Logs as the Lambda function forwards the execution logs to Cloudwatch automatically without any additional setup. This helps when the number of invocation is small, but as you can see in the screenshot down below, the native log streams provided by Cloudwatch doesn't contain the necessary information to help to debug or to troubleshoot the errors:

aws cloudwatch logs<br>

How do we know which invocation was successful or failed?

A lot of times we have to look at the timing of the failed invocation and click on a specific log stream around the timestamp, only to realize that it was not the log stream we are interested to see. Cloudwatch also clubs the logs from multiple invocations if they were close to each other, potentially making important information harder to find for developers. Before we were introduced to monitoring products like Dashbird.io, we were manually creating additional logic in the Lambda function to send off Slack notifications when an error happens in the function, resulting in a bigger deployment than what is needed.

Instead of creating a serverless monitoring tool ourselves, we were exploring off-the-shelf monitoring options in the market. Dashbird.io was one of the services we explored. In this section, I will share the experience of using Dashbird.io, particularly on the onboarding process and the main offering by the platform.

Dashbird.io offers a forever-free tier for smaller infrastructures of up to 1 million invocations and a free 2-week trial that encompasses the professional plan. Both include not just AWS Lambda monitoring, but also additional AWS-managed services such as Step Function, ECS and more. After signing up an account, we were asked to launch the CloudFormation stack in AWS, which basically creates a role that has read-only permission to access those services that Dashbird.io will monitor. The instructions are lined up clearly as shown below:

dasbhird onboarding

Deploy CF stack, and wait.

One great thing to point out here is that all the permissions that are being requested are read-only access. For companies that are particular about the third-party product having access to your computing resources, this is definitely an advantage compare to services that require write permission.

Once the role is created and the Role Arn is copied and pasted here, Dashbird will start syncing information from the AWS account and soon enough we will start seeing information populated in the dashboard.

dashbird aws dashboard

Main Dashboard Overview

The insights section is something refreshing to me, as it provides tips and best practices to optimize our cloud resources.

Moving on to the main objective which is to monitor our resources (in Dashbird.io, it's on the Inventory tab), we have a high-level overview of our resources. At the point of writing, Dashbird.io supports AWS Lambda, ECS, Step Function, SQS and API Gateway.

Dashbird Inventory

Dashbird Inventory

Filtering down to one of our Lambda functions, we can see the metrics on the function such as invocations count, errors count etc.

Lambda function metrics

Information and metrics about a Lambda function

![lambda invocations

](https://miro.medium.com/max/1400/1*FDcGud-uTxM9L50viY8jVQ.png)

Individual Lambda invocation, errors, and insights

There are 3 things I like about the information here:

  1. Each invocation has its own logs, and errors can be identified easily with the red bug icon
  2. Errors are aggregated by type (we have 100+ connection aborted errors :( ) --- this helps us in identifying the common issues and we can focus our effort on solving them
  3. Some insight about the Lambda function and how we can optimize it

That basically summarizes how I use Dashbird so far. There are other tabs that I won't go into detail about in this article, but a summary of them down here:

  • Events: List of events (error, insight, alarm) of all the monitored resources
  • Alarms: Place to configure alerts
  • Well-architected lens: All the insight on monitored resources
  • Resource-group: Something similar to tagging so you can monitor your resources in different service grouping
  • Log-search: As the name suggests

Positive points about Dashbird.io

  1. Very quick and easy onboarding, for me it takes slightly longer than the 2 minutess Dashbird.io claimed during the onboarding process, but it was definitely hassle-free
  2. Role created by Dashbird.io only requires read access
  3. Information provided for Lambda invocation is very useful --- errors can be identified easily, and similar errors are aggregated together so that you have a high-level understanding of the issue.
  4. Insights provided could be useful to optimize your serverless resources, eg: "Function is not tagged", "ECS Service reserved memory is near limit". Gives information on the potential cost of running the AWS resources too.
  5. Alerts/Alarms can be customized from the UI based on the service type (eg: Lambda has errors count, retry count, cold start count; Step Function has failed execution, timed-out execution etc.)
  6. Support multiple AWS managed services in addition to AWS Lambda (eg: Step Function, ECS, SQS & API Gateway)

Things I hope Dashbird.io can cover in the future

  1. More consistent / updated UI (there are some serverless services that have configuration screen and some don't, but both show the configuration icon)
  2. The bread and butter of Dashbird is AWS Lambda; IMO, information for other services such as Step Function and ECS can be improved. At the point of writing, Step Function doesn't show the failed invocation details like how they are being displayed on AWS Console which to me is something fairly important.
  3. To cover other cloud providers like GCP and Azure

Summary

Using a third-party monitoring platform like Dashbird.io can help the development team in identifying the root cause of a problem and optimize the cloud resources better. As mentioned at the start of the article, as a startup, you probably want to focus more on delivering value to the customer, and not spending engineering resources in searching through CloudWatch logs or building a separate monitoring tool.

Top comments (2)

Collapse
 
ssimontis profile image
Scott Simontis

How is this different than what could be built or visualized using X-Ray and CloudWatch dashboards?

Collapse
 
taavirehemagi profile image
Taavi Rehemägi • Edited

Hi Scott,

Good question. So what Dashbird does, is it centralizes all your AWS data in one quick overview (which can be hard to achieve especially with larger infras), and send you automated error/warning alerts, notify you of anomalies in your resources. And overall it gives you a smoother, easier and faster way to navigate and group your AWS resources. And on top of that runs your data against industry best practices, benchmarks your infra and gives you actionable advice on how and where exactly improvements can be made.

That's very much in a nutshell but here's more on how Dashbird works: dashbird.io/blog/getting-started-w...