Skip to content

Commit

Permalink
Merge pull request #2456 from guardian/changeset-release/main
Browse files Browse the repository at this point in the history
🦋 Release package updates
  • Loading branch information
akash1810 authored Sep 17, 2024
2 parents fcc0bde + 1ff89da commit 1281710
Show file tree
Hide file tree
Showing 3 changed files with 29 additions and 28 deletions.
27 changes: 0 additions & 27 deletions .changeset/rare-geese-wait.md

This file was deleted.

28 changes: 28 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,33 @@
# @guardian/cdk

## 59.4.0

### Minor Changes

- 43dc653: feat(asg) Collect all ASG level metrics

This change should have no cost impact:

> Group metrics are available at one-minute granularity at no additional charge, but you must enable them.
> https://docs.aws.amazon.com/autoscaling/ec2/userguide/ec2-auto-scaling-metrics.html.
If it does, or if you only want a subset, the escape hatch mechanism can be used:

```ts
declare const asg: AutoScalingGroup;

const cfnAsg = asg.node.defaultChild as CfnAutoScalingGroup;

cfnAsg.metricsCollection = [
{
granularity: "1Minute",
metrics: [
// A subset of metrics
],
},
];
```

## 59.3.5

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@guardian/cdk",
"description": "Generic Guardian flavoured AWS CDK components",
"version": "59.3.5",
"version": "59.4.0",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
Expand Down

0 comments on commit 1281710

Please sign in to comment.