1 Answer
- Newest
- Most votes
- Most comments
1
- Review the Detailed Billing Report. Access your detailed billing report in the AWS Billing and Cost Management Dashboard. This report provides a breakdown of all charges, including free tier usage.
aws ce get-cost-and-usage --time-period Start=YYYY-MM-DD,End=YYYY-MM-DD --granularity MONTHLY --metrics "AmortizedCost" "UnblendedCost" "UsageQuantity" --group-by Type=DIMENSION,Key=SERVICE
- Check Free Tier Usage. Ensure that you are within the limits of the AWS Free Tier. The free tier has specific usage limits for each service, and exceeding these limits can result in charges.
Common Free Tier Limits:
- EC2: 750 hours of t2.micro or t3.micro instances per month.
- S3: 5GB of standard storage, 20,000 GET requests, and 2,000 PUT requests per month.
- RDS: 750 hours of db.t2.micro or db.t3.micro instances per month.
- Identify Running Services. Use the AWS Management Console or CLI to list all running services and resources. Check for any running instances, databases, or other services that might be incurring charges.
aws ec2 describe-instances --query 'Reservations[*].Instances[*].[InstanceId,InstanceType,State.Name,LaunchTime]'
aws rds describe-db-instances --query 'DBInstances[*].[DBInstanceIdentifier,DBInstanceClass,DBInstanceStatus,InstanceCreateTime]'
aws s3 ls
- Check for Data Transfer Costs. Data transfer charges can accumulate if you have traffic between different regions or out to the internet. Review your data transfer costs in the billing dashboard.
- Review CloudWatch Metrics. Check CloudWatch metrics for unexpected usage patterns. High CPU, memory, or network usage on your instances could indicate unexpected activity.
- Investigate Unintended Services. Ensure that no unintended services or resources were created. Sometimes, automated scripts, third-party tools, or mistakes can result in unexpected resource creation.
If, after reviewing the detailed billing report, you still cannot understand the charges, contact AWS Support for assistance. They can provide a detailed explanation of your bill and help identify any discrepancies.
- AWS Support Center: Log in to the AWS Support Center and create a support case.
- Billing and Account Support: AWS provides free billing and account support. You can reach out to them directly for help.
You should create a billing support case here: https://console.aws.amazon.com/support/home#/case/create?issueType=customer-service they will break down what you are getting charged for, for you.
Relevant content
- asked 4 months ago
- asked 5 months ago
- asked a month ago
- AWS OFFICIALUpdated 2 years ago
- AWS OFFICIALUpdated 4 years ago
please accept the answer if it was useful