Using CloudWatch for traffic monitoring on EBS

0

Hello all -

First post here and fairly new to AWS (been a developer for 20+ yrs).

I recently deployed a simple .NET app in EBS. I even managed to use CodePipeline for CICD deployments. Works nice.

My "next step" which is mostly experimental for learning, is to enable some basic traffic monitoring. 200x, 400x, 500x requests and so on. I went into CloudWatch and experimented with some dashboards but despite my best tinkering, I'm not getting any metrics.

FWIW - I have in fact enabled Advanced Health Reporting on the EBS Environment for the app.

Thanks in advance!

asked 2 years ago217 views
1 Answer
0

You have 2 options:

  1. If you have ALB in front of the application, you can get the HTTP error count from CloudWatch metrics https://docs.aws.amazon.com/elasticloadbalancing/latest/application/load-balancer-cloudwatch-metrics.html#load-balancer-metrics-alb

  2. If you don't have ALB, you can first stream the application log to CloudWatch https://docs.aws.amazon.com/elasticbeanstalk/latest/dg/AWSHowTo.cloudwatchlogs.html

    Then, create a metric filter from the CloudWatch log https://docs.aws.amazon.com/AmazonCloudWatch/latest/logs/MonitoringPolicyExamples.html. Then you can get the metric of the HTTP response code count from the logs.

answered 2 years ago

You are not logged in. Log in to post an answer.

A good answer clearly answers the question and provides constructive feedback and encourages professional growth in the question asker.

Guidelines for Answering Questions