I want to gain some insights into the performance of my application that connects to several services in AWS e.g. IAM
and S3
. One metric interesting to me is requests-per-minute
, I have checked around for possible approaches, AWS Metrics is limited to enterprise customers as stated in this AWS document. Another approach is generating Java SDK metrics, via CloudWatch
. I have enabled this by adding the command below to the system property
-Dcom.amazonaws.sdk.enableDefaultMetrics=credentialFile=/path/aws.properties
I see some metrics in the CloudWatch
dashboard, however, there is no request-per-second
. I'd like to find out if someone has experience with this or maybe I am missing something.