Add logs to AWS Lambda function and review them in CloudWatch

Tomasz Łakomy
InstructorTomasz Łakomy
Share this video with your friends

Social Share Links

Send Tweet
Published 4 years ago
Updated 3 years ago

Since AWS Lambda functions are running in the cloud, we need to be able to dig in to see what's going on in there (especially when we have issues with the function).

This is where logs come in, AWS Lambda allows us to send logs from functions to various services, including CloudWatch

In this lesson we're going to learn how to add logs to a lambda function and how to review them in CloudWatch

Instructor: [0:00] We can add logs to our Lambda functions. In order to do that in JavaScript, we just have to console.log it. I'm going to paste in a console.log statement, "Hello, the time is," and I'm going to display the current time.

[0:11] If I save this Lambda function and press the Test button in order to send a test event, I would be able to see the execution result over here. Inside of the logs, we can see "Hello, the time is," and the current date.

[0:23] This Lambda function has an API gateway attached to it. If I click over here, in order to get the endpoint, and I click here, I'm going to execute my Lambda function. Where do I see those logs? In order to see the logs, go back to the AWS console, click on the Monitoring tab, and here we can see several CloudWatch metrics. We can see the duration of our function, the error count, and many others.

[0:46] Over here, we can click to view the logs in CloudWatch. CloudWatch is a logging service provided by AWS. Here we can see several log streams of our function. We're going to click on the newest one, because we just executed the function.

[0:59] Here we can see all the recent logs. If I scroll down in order to open one of those, I'm going to see the log that I added to console.log earlier, so "Hello, the time is," and the current time.

[1:10] Every time you execute a Lambda function, there will be some things logged out automatically. There's an automatic log whenever the function starts, whenever the function ends, and also a report at the end of the function invocation. This function took roughly a millisecond in order to execute.

egghead
egghead
~ 38 minutes ago

Member comments are a way for members to communicate, interact, and ask questions about a lesson.

The instructor or someone from the community might respond to your question Here are a few basic guidelines to commenting on egghead.io

Be on-Topic

Comments are for discussing a lesson. If you're having a general issue with the website functionality, please contact us at support@egghead.io.

Avoid meta-discussion

  • This was great!
  • This was horrible!
  • I didn't like this because it didn't match my skill level.
  • +1 It will likely be deleted as spam.

Code Problems?

Should be accompanied by code! Codesandbox or Stackblitz provide a way to share code and discuss it in context

Details and Context

Vague question? Vague answer. Any details and context you can provide will lure more interesting answers!

Markdown supported.
Become a member to join the discussionEnroll Today