What's the difference between Alarm Budget and CloudWatch alarms Billing? - amazon-web-services

I want to understand what is the difference between using Budgets(cost budget) and Configure Billing Alerts in AWS?

Billing Alerts are very limited as compared to Budgets. Most notably, the billing alarm represents only the amount you have been already charged. In contrast, a budget can alarm you based on forecasted charges, which can give you a bit of head up to figure out what's happening before you get hit with excess bill usage.
The other key difference is that Budgets allow you to create filtered alarms, only for some regions and services of interest. Filtering by region is not possible with billing alerts. Another thing is that budget support linked accounts, which again is not possible with the billing alerts.
Finally, budgets are far easier to use, set up and manage, than billing alerts.

Well, other power of the Budget as:
Filter by multiple dimension: Region, Service Type, Instance Type, AZ, Tag, linked account, etc...
Budget can take action (Ex: Stop EC2)
Note: CloudWatch can take action if you trigger a lamda function.
Notification preferences - Optional
You can select 1 or more notification preferences to receive alerts: Email, SNS Alert.

Related

Is it possible to set a cost alert within a daily grain on Google Cloud Platform (GCP)?

Let's suppose that I have a resource group which has a daily average cost of $300, then I want to set an alert when the cost of this resource group reach $320 in a day. Is it possible to do that alert set for a daily analysis?
Sure that is possible,
First of all, in GCP there is no "Resource Group" this is for Azure, but you have most of the components at the project level.
These types of alerts are the budget alerts, you can check how to set them here: https://cloud.google.com/billing/docs/how-to/budgets
Basically, you can set alerts or create also policies to restrict the amount used in each of your projects.

Cloudwatch for billing alarm in daily based using cloudwatch metric

May I ask is there any way that I can make a billing alarm for a daily based cost via cloudwatch metric?
I know that billing alarm is in monthly basis. Is there a possiblity that I can create a custom metric to get the daily cost then set a threshold let say if I spend $2 on AWS Lambda service it will trigger and notify via sns.
Thanks! Any help would be appreciated.
You can use the AWS Cost Explorer API to programmatically retrieve cost and usage metrics for your account. You can query for aggregated data such as total monthly costs or total daily usage, but you can also query for granular data.
To solve your requirement, you could set up a scheduled CloudWatch Event that triggers a Lambda, which in turn analyzes (and reports on) the cost and usage data from the previous day or get the cost forecast for a specified time period in the future.
Here's the AWS Cost Explorer API Documentation.

Can we enforce max usage limits or max cost ($) for Member accounts in an AWS Organization?

We are using AWS Organisations service (with Consolidated Billing feature) with a large member of accounts. Can we set a max limit somehow for the usage cost ($) of the Member accounts?
Would you add a little more detailed description about how can I hook an activity on a billing alert?
I am not sure about your exact requirements, you may check the documentation:
Monitor Your AWS Charges with Billing Alerts.
Managing Your Costs with Budgets
In both cases you can setup alerts on cost/budget, where an alert event is sent to an SNS topic. SNS topic can further send a mail, but the same way you can implement any functionality listening on the topic (e.g. a lambda function)
This way you may monitor total cost/budget usage
usage cost ($) of the Member accounts
You can have a look at Cost Explorer where you can create cost reports per tag or as well per account
(I am not sure if you can create an alert for cost per account)
There is no out-of-the-box enforcement to limit the usage of your AWS account. Alerts can only notify you that you're not in your forecasted budget, but that's it mostly, the rest you should implement on your own.
Couple of thoughts:
Enforcing max limit on your production account is not best practice. You don't want a production interruption or user impact because of a needed scale up in infra.
What you can do is to map your needs and usage, and set quota limits to services. https://docs.aws.amazon.com/general/latest/gr/aws_service_limits.html - again, this is not really recommended. Just make sure you have visibility on your growth, set alerts and monitor your usage. Optimization is a key in the could, and the financial responsibility is yours, not AWS.

How to disable AWS Cloudwatch metrics

I'm new and am trying to work with AWS. I develop small lambda functions and have created some dynamodb tables. I don't expect there to be any costs, because I should be in the free-tier, but since last month I am seeing costs for "Cloud Watch Alarms". Not high costs, but I got billed $0.53. Why I am getting this bill even though I am using AWS free tier.
Billing info:
$0.00 per alarm-month - first 10 alarms 10 Alarms $0.00
$0.10 per alarm-month 4.277 Alarms 0.43$
I don't want these cloudwatch metrics right now. I only want to store log files. How can I to disable these cloudwatch metrics.
Thanks,
You have configured, maybe unintentionally, a Cloud Watch Alarm.
Fortunately it's quite easy to remove it.
Go to your AWS Dashboard and select Cloud Watch:
On the left-hand side, click on Alarms. Select the Alarm which you want to remove and delete it.
This is what I got from AWS Support:
CloudWatch collects and processes raw data from DynamoDB into readable, near real-time metrics. These statistics are recorded for a period of two weeks, so that you can access historical information for a better perspective on how your web application or service is performing. By default, DynamoDB metric data is sent to CloudWatch automatically.
When you interact with DynamoDB, it sends the following metrics and dimensions to CloudWatch. Note that Amazon CloudWatch aggregates the following DynamoDB metrics at one-minute intervals:
> ConditionalCheckFailedRequests
> ConsumedReadCapacityUnits
> ConsumedWriteCapacityUnits
> ReadThrottleEvents
> ReturnedBytes
> ReturnedItemCount
> ReturnedRecordsCount
> SuccessfulRequestLatency
> SystemErrors
> TimeToLiveDeletedItemCount
> ThrottledRequests
> TransactionConflict
> UserErrors
> WriteThrottleEvents
I'm trying to find out if there is a way to turn this off and will update my answer when I get it
Well you can do that via SCP's to sit a generic policy to deny such api

Cloudwatch - Metrics are expiring

I currently have a bunch of custom metric's based in multiple regions across our AWS account.
I thought I was going crazy but have now confirmed that the metric I created a while ago is expiring when not used for a certain time period (could be 2 weeks).
Here's my setup.
I create a new metric on my log entry - which has no expiry date;
I then go to the main page on CloudWatch --> then to Metrics to view any metrics (I understand this will only display new metric hits when there are hits that match the metric rule).
About 2 weeks ago, I had 9 Metrics logged under my "Custom Namespaces", and I now have 8 - as if it does not keep all the data:
As far as i'm aware, all my metrics should stay in place (unless I remove them), however, it seems as though if these are not hit consistently, the data "expires", is that correct? If so, how are you meant to track historical data?
Thanks
CloudWatch will remove metrics from search if there was no new data published for that metric in the last 2 weeks.
This is mentioned in passing in the FAQ for EC2 metrics, but I think it applies to all metrics.
From 'will I lose the metrics data if I disable monitoring for an Amazon EC2 instance question' in the FAQ:
CloudWatch console limits the search of metrics to 2 weeks after a
metric is last ingested to ensure that the most up to date instances
are shown in your namespace.
Your data is still there however. Data adheres to a different retention policy.
You can still get your data if you know what the metric name is. If you added your metric to a dashboard, it will still be visible there. You can use CloudWatch PutDashboards API to add the metric to a dashboard or use CloudWatch GetMetricStatistics API to get the raw data.