Ad space (banner)
AD

Got the fundamentals? A structured AWS course is a fast way to level up.

Find AWS courses on Udemy

Affiliate link. Costs you nothing extra.

☁️AWS Lessons
Lesson 39 / 41

What Is CloudWatch?

CloudWatch is AWS's monitoring service. It collects metrics and logs from your resources and can alert you when something looks wrong.

Metrics are numbers over time (CPU usage, request counts); logs are the text your applications emit. Alarms fire when a metric crosses a threshold.

Running aws logs describe-log-groups lists the log groups collecting output — Lambda functions create one automatically.

A common stumble is never setting log retention. Logs are kept forever by default and quietly become a meaningful line on the bill.

In real work, CloudWatch is how you find out about a problem before your users tell you about it.

AWS
Try it (type this into the pseudo terminal)
aws logs describe-log-groups

🧑‍💻 You can type this command into the AWS pseudo terminal to try it yourself (this page itself has no interactive terminal).

Ad space (banner)
Ad space (in-article)