Troubleshooting your Serverless Node.js doesn't have to be a Pain

Rate this content
Bookmark

AWS ushered in a new landscape for deploying JavaScript applications using Node.js hosted in AWS Lambda, and since then the management simplicity that it provides has made serverless applications and APIs grow exponentially in both popularity and use cases. However, operationally for many starting out, troubleshooting issues can be painful. I'll walk through some techniques to make this easier and provide an evolution of how we can get to a better solution with tips and tools you can use in your serverless deployments right away.

This talk has been presented at DevOps.js Conf 2021, check out the latest edition of this Tech Conference.

FAQ

The speaker is Jeff Hopper, the technical leader for growth at Rollbar.

Jeff Hopper's go-to site for LGTM GIFs, LGTM.io, shut down, and he needed a way to send these GIFs in GitHub PR reviews and Slack simultaneously.

Jeff Hopper created a Slack bot called LGTM ReplyGIF that uses replygif.net and a Slack slash command to post GIFs on his behalf in GitHub PRs and Slack.

Jeff Hopper initially used the reply-gif API, but it failed because the API was not maintained and returned a 500 error on any request.

Jeff Hopper switched to scraping the replygif.net page using a Node package called Cheerio to grab the image URLs.

Jeff Hopper used AWS CloudWatch to monitor logs and troubleshoot errors, and he also used Elasticsearch for log aggregation.

Jeff Hopper recommends Rollbar's continuous code improvement platform for serverless applications.

The LGTM ReplyGIF Slack bot is available on GitHub for others to fork, improve, and use, but it may require some additional pieces and hardening.

Jeff Hopper's GitHub username is udimos.

Jeff Hopper defines serverless computing as handing code over to a serverless provider without managing the underlying infrastructure, allowing the provider to decide where, when, and how to run the code.

Jeff Hoffer
Jeff Hoffer
27 min
01 Jul, 2021

Comments

Sign in or register to post your comment.

Video Summary and Transcription

Welcome to the DevOpsJS conference where Jeff Hopper introduces his Slack bot called LGTM ReplyGIF for posting GIFs on his behalf. He troubleshoots issues with the serverless Node code, uses CloudWatch logs and stack traces for debugging, and ships logs to Elasticsearch for analysis. Jeff explores troubleshooting options with Rollbar and discusses serverless deployment recommendations. The audience is invited to contribute to the Slack bot project, and the session concludes with thanks from Jeff.

1. Introduction to Troubleshooting Serverless Node

Short description:

Welcome to the DevOpsJS conference. My name is Jeff Hopper and I'm the technical leader for growth at Rollbar. I have a problem. I like to include some flare when I give a, looks good to me on a PR. Unfortunately, my go-to site for these specific GIFs, LGTM.io shut down a couple of years ago. I have another problem. I'm lazy. I came up with a solution, a Slack bot called LGTM ReplyGIF that combines replygif.net with a Slack slash command to post on my behalf. Let's troubleshoot that together, shall we?

Welcome to the DevOpsJS conference, and thank you for attending my talk, troubleshooting your serverless node doesn't have to be a pain. My name is Jeff Hopper and I'm the technical leader for growth at Rollbar. Starting with Rollbar last September. You can find me on GitHub as udimos for those familiar with the Los Angeles, California area and people from live here know.

I'm a pretty rare person who was actually born and raised in LA, Santa Monica to be specific, and still live in LA in a different part of the city. So I have a problem. I like to include some flare when I give a, looks good to me on a PR. And unfortunately my go-to site for these specific GIFs, LGTM.io shut down a couple of years ago.

I have another problem. I'm lazy. It's not just that I don't want to search for a good LGTM GIF for PR in GitHub. I also need to respond in Slack to the teammate who asked for my review. I want to do it all at the same time. So I came up with a solution, a Slack bot called LGTM ReplyGIF that combines one of my favorite GIF sites, replygif.net with a Slack slash command to post on my behalf. I built it in nodeJS and deployed it to AWS Lambda where it will call the replygif API, select a GIF at random, post a comment to the GitHub PR, and respond back to the Slack channel with a message to our requester. So it sounds pretty great, right? So what went wrong? Let's troubleshoot that together, shall we?

2. Troubleshooting Serverless Node

Short description:

I'm importing some things, doing some stuff in the body, and returning a response. The handler is a function that receives an event and optionally a context. We ran a local stack and encountered a 500 error from the reply-gif API. We switched to scraping the website using Cheerio. After testing locally, we published the code to AWS and tested our SlackBot. We encountered a dispatch failed error and troubleshooted using CloudWatch logs, where we found the error message 'N is not a function' in the stack trace.

I'm importing some things, I'm doing some stuff in the body here, the logic related to my function, and then I'm returning a response. But in the end, it's a handler that is a function, it receives an event and optionally a context. So I can import it into my tests. I can include it, I can require it in the node REPL. Or I can run the local stack and write some curl commands against it.

So let's do that first. So I'm running a local stack on the left side. And on the right, we're calling our curl command. We notice we get a 500 error, and then we are not returning any response. So it turns out that the 500s come from the reply-gif API, which doesn't actually work, isn't being maintained and returns a 500 error on any request to any of the endpoints. So knowing that the reply-gif API doesn't work, but I saw the website does, I switched to scraping the page with a node package called Cheerio that gives us a jQuery API to grab the image URLs. So we've tested locally and things seem to be working fine. We publish the code to AWS using our deploy command and then test our SlackBot. So let's give that a shot.

My friend Demo Slack sent me a request through Slack to review his PR. So I'm going to say I gave it a review, say lgtm. I get my prompts to tell me how to write the command. So, identify the repo, identify the PR, give them a little app shout out. And we get a dispatch failed error, which is a default error from Slack when it doesn't know what to say. So, let's take a look at how we troubleshoot this in the cloud using CloudWatch.

From the AWS web console, we come to the lambda area, we find our function, and we take a look at this monitor tab here. Now, it's going to give us a list of recent invocations, and it's going to tell us what log stream they're in. So, these recent invocations are interesting, but they're not really giving us troubleshooting information. So, we're going to go check out our CloudWatch logs directly. Now, loading here, loading in the streams, our most recent is at the top. We're going to take a look there and we see our one invocation is happening in this stream and we see this error message here. N is not a function. So, that's good. We found the error. Let's take a look at the stack trace.

Check out more articles and videos

We constantly think of articles and videos that might spark Git people interest / skill us up or help building a stellar career

It's a Jungle Out There: What's Really Going on Inside Your Node_Modules Folder
Node Congress 2022Node Congress 2022
26 min
It's a Jungle Out There: What's Really Going on Inside Your Node_Modules Folder
Top Content
The talk discusses the importance of supply chain security in the open source ecosystem, highlighting the risks of relying on open source code without proper code review. It explores the trend of supply chain attacks and the need for a new approach to detect and block malicious dependencies. The talk also introduces Socket, a tool that assesses the security of packages and provides automation and analysis to protect against malware and supply chain attacks. It emphasizes the need to prioritize security in software development and offers insights into potential solutions such as realms and Deno's command line flags.
Towards a Standard Library for JavaScript Runtimes
Node Congress 2022Node Congress 2022
34 min
Towards a Standard Library for JavaScript Runtimes
Top Content
There is a need for a standard library of APIs for JavaScript runtimes, as there are currently multiple ways to perform fundamental tasks like base64 encoding. JavaScript runtimes have historically lacked a standard library, causing friction and difficulty for developers. The idea of a small core has both benefits and drawbacks, with some runtimes abusing it to limit innovation. There is a misalignment between Node and web browsers in terms of functionality and API standards. The proposal is to involve browser developers in conversations about API standardization and to create a common standard library for JavaScript runtimes.
ESM Loaders: Enhancing Module Loading in Node.js
JSNation 2023JSNation 2023
22 min
ESM Loaders: Enhancing Module Loading in Node.js
ESM Loaders enhance module loading in Node.js by resolving URLs and reading files from the disk. Module loaders can override modules and change how they are found. Enhancing the loading phase involves loading directly from HTTP and loading TypeScript code without building it. The loader in the module URL handles URL resolution and uses fetch to fetch the source code. Loaders can be chained together to load from different sources, transform source code, and resolve URLs differently. The future of module loading enhancements is promising and simple to use.
Out of the Box Node.js Diagnostics
Node Congress 2022Node Congress 2022
34 min
Out of the Box Node.js Diagnostics
This talk covers various techniques for getting diagnostics information out of Node.js, including debugging with environment variables, handling warnings and deprecations, tracing uncaught exceptions and process exit, using the v8 inspector and dev tools, and generating diagnostic reports. The speaker also mentions areas for improvement in Node.js diagnostics and provides resources for learning and contributing. Additionally, the responsibilities of the Technical Steering Committee in the TS community are discussed.
You Don’t Know How to SSR
DevOps.js Conf 2024DevOps.js Conf 2024
23 min
You Don’t Know How to SSR
The Talk covers the speaker's personal journey into server-side rendering (SSR) and the evolution of web development frameworks. It explores the use of jQuery for animations in SSR, the challenges faced in integrating React with Umbraco, and the creation of a custom SSR framework. The Talk also discusses the benefits of Next.js and the use of serverless artifacts for deployment. Finally, it highlights the features of Astro, including its function per route capability.
Node.js Compatibility in Deno
Node Congress 2022Node Congress 2022
34 min
Node.js Compatibility in Deno
Deno aims to provide Node.js compatibility to make migration smoother and easier. While Deno can run apps and libraries offered for Node.js, not all are supported yet. There are trade-offs to consider, such as incompatible APIs and a less ideal developer experience. Deno is working on improving compatibility and the transition process. Efforts include porting Node.js modules, exploring a superset approach, and transparent package installation from npm.

Workshops on related topic

AI on Demand: Serverless AI
DevOps.js Conf 2024DevOps.js Conf 2024
163 min
AI on Demand: Serverless AI
Top Content
Featured WorkshopFree
Nathan Disidore
Nathan Disidore
In this workshop, we discuss the merits of serverless architecture and how it can be applied to the AI space. We'll explore options around building serverless RAG applications for a more lambda-esque approach to AI. Next, we'll get hands on and build a sample CRUD app that allows you to store information and query it using an LLM with Workers AI, Vectorize, D1, and Cloudflare Workers.
Node.js Masterclass
Node Congress 2023Node Congress 2023
109 min
Node.js Masterclass
Top Content
Workshop
Matteo Collina
Matteo Collina
Have you ever struggled with designing and structuring your Node.js applications? Building applications that are well organised, testable and extendable is not always easy. It can often turn out to be a lot more complicated than you expect it to be. In this live event Matteo will show you how he builds Node.js applications from scratch. You’ll learn how he approaches application design, and the philosophies that he applies to create modular, maintainable and effective applications.

Level: intermediate
Build and Deploy a Backend With Fastify & Platformatic
JSNation 2023JSNation 2023
104 min
Build and Deploy a Backend With Fastify & Platformatic
WorkshopFree
Matteo Collina
Matteo Collina
Platformatic allows you to rapidly develop GraphQL and REST APIs with minimal effort. The best part is that it also allows you to unleash the full potential of Node.js and Fastify whenever you need to. You can fully customise a Platformatic application by writing your own additional features and plugins. In the workshop, we’ll cover both our Open Source modules and our Cloud offering:- Platformatic OSS (open-source software) — Tools and libraries for rapidly building robust applications with Node.js (https://oss.platformatic.dev/).- Platformatic Cloud (currently in beta) — Our hosting platform that includes features such as preview apps, built-in metrics and integration with your Git flow (https://platformatic.dev/). 
In this workshop you'll learn how to develop APIs with Fastify and deploy them to the Platformatic Cloud.
Building a Hyper Fast Web Server with Deno
JSNation Live 2021JSNation Live 2021
156 min
Building a Hyper Fast Web Server with Deno
WorkshopFree
Matt Landers
Will Johnston
2 authors
Deno 1.9 introduced a new web server API that takes advantage of Hyper, a fast and correct HTTP implementation for Rust. Using this API instead of the std/http implementation increases performance and provides support for HTTP2. In this workshop, learn how to create a web server utilizing Hyper under the hood and boost the performance for your web apps.
0 to Auth in an Hour Using NodeJS SDK
Node Congress 2023Node Congress 2023
63 min
0 to Auth in an Hour Using NodeJS SDK
WorkshopFree
Asaf Shen
Asaf Shen
Passwordless authentication may seem complex, but it is simple to add it to any app using the right tool.
We will enhance a full-stack JS application (Node.JS backend + React frontend) to authenticate users with OAuth (social login) and One Time Passwords (email), including:- User authentication - Managing user interactions, returning session / refresh JWTs- Session management and validation - Storing the session for subsequent client requests, validating / refreshing sessions
At the end of the workshop, we will also touch on another approach to code authentication using frontend Descope Flows (drag-and-drop workflows), while keeping only session validation in the backend. With this, we will also show how easy it is to enable biometrics and other passwordless authentication methods.
Table of contents- A quick intro to core authentication concepts- Coding- Why passwordless matters
Prerequisites- IDE for your choice- Node 18 or higher
GraphQL - From Zero to Hero in 3 hours
React Summit 2022React Summit 2022
164 min
GraphQL - From Zero to Hero in 3 hours
Workshop
Pawel Sawicki
Pawel Sawicki
How to build a fullstack GraphQL application (Postgres + NestJs + React) in the shortest time possible.
All beginnings are hard. Even harder than choosing the technology is often developing a suitable architecture. Especially when it comes to GraphQL.
In this workshop, you will get a variety of best practices that you would normally have to work through over a number of projects - all in just three hours.
If you've always wanted to participate in a hackathon to get something up and running in the shortest amount of time - then take an active part in this workshop, and participate in the thought processes of the trainer.