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!

已提问 2 年前221 查看次数
1 回答
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.

已回答 2 年前

您未登录。 登录 发布回答。

一个好的回答可以清楚地解答问题和提供建设性反馈,并能促进提问者的职业发展。

回答问题的准则