Skip to content

Commit

Permalink
feat(cloudwatch): Support 'datapointsToAlarm' on Alarms (#1631)
Browse files Browse the repository at this point in the history
Adds support for settingt the `dataPointsToAlarm` property of the
CloudWatch `Alarm`s (also via the `Metric`s).

Fixes #1626
  • Loading branch information
RomainMuller committed Jan 30, 2019
1 parent 5b2de2b commit 828ac20
Show file tree
Hide file tree
Showing 5 changed files with 53 additions and 64 deletions.
58 changes: 3 additions & 55 deletions packages/@aws-cdk/aws-cloudwatch/lib/alarm.ts
Original file line number Diff line number Diff line change
@@ -1,73 +1,20 @@
import { Construct, Token } from '@aws-cdk/cdk';
import { CfnAlarm } from './cloudwatch.generated';
import { HorizontalAnnotation } from './graph';
import { Dimension, Metric, Statistic, Unit } from './metric';
import { Dimension, Metric, MetricAarmProps, Statistic, Unit } from './metric';
import { parseStatistic } from './util.statistic';

/**
* Properties for Alarms
*/
export interface AlarmProps {
export interface AlarmProps extends MetricAarmProps {
/**
* The metric to add the alarm on
*
* Metric objects can be obtained from most resources, or you can construct
* custom Metric objects by instantiating one.
*/
metric: Metric;

/**
* Name of the alarm
*
* @default Automatically generated name
*/
alarmName?: string;

/**
* Description for the alarm
*
* @default No description
*/
alarmDescription?: string;

/**
* Comparison to use to check if metric is breaching
*
* @default GreaterThanOrEqualToThreshold
*/
comparisonOperator?: ComparisonOperator;

/**
* The value against which the specified statistic is compared.
*/
threshold: number;

/**
* The number of periods over which data is compared to the specified threshold.
*/
evaluationPeriods: number;

/**
* Specifies whether to evaluate the data and potentially change the alarm
* state if there are too few data points to be statistically significant.
*
* Used only for alarms that are based on percentiles.
*/
evaluateLowSampleCountPercentile?: string;

/**
* Sets how this alarm is to handle missing data points.
*
* @default TreatMissingData.Missing
*/
treatMissingData?: TreatMissingData;

/**
* Whether the actions for this alarm are enabled
*
* @default true
*/
actionsEnabled?: boolean;
}

/**
Expand Down Expand Up @@ -153,6 +100,7 @@ export class Alarm extends Construct {
// Evaluation
comparisonOperator,
threshold: props.threshold,
datapointsToAlarm: props.datapointsToAlarm,
evaluateLowSampleCountPercentile: props.evaluateLowSampleCountPercentile,
evaluationPeriods: props.evaluationPeriods,
treatMissingData: props.treatMissingData,
Expand Down
18 changes: 15 additions & 3 deletions packages/@aws-cdk/aws-cloudwatch/lib/metric.ts
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ export class Metric {
* Combines both properties that may adjust the metric (aggregation) as well
* as alarm properties.
*/
public newAlarm(scope: cdk.Construct, id: string, props: NewAlarmProps): Alarm {
public newAlarm(scope: cdk.Construct, id: string, props: MetricAarmProps): Alarm {
return new Alarm(scope, id, {
metric: this.with({
statistic: props.statistic,
Expand All @@ -157,6 +157,7 @@ export class Metric {
alarmName: props.alarmName,
alarmDescription: props.alarmDescription,
comparisonOperator: props.comparisonOperator,
datapointsToAlarm: props.datapointsToAlarm,
threshold: props.threshold,
evaluationPeriods: props.evaluationPeriods,
evaluateLowSampleCountPercentile: props.evaluateLowSampleCountPercentile,
Expand Down Expand Up @@ -293,9 +294,9 @@ export interface MetricCustomization {
}

/**
* Properties to make an alarm from a metric
* Properties needed to make an alarm from a metric
*/
export interface NewAlarmProps {
export interface MetricAarmProps {
/**
* The period over which the specified statistic is applied.
*
Expand Down Expand Up @@ -372,6 +373,17 @@ export interface NewAlarmProps {
* @default true
*/
actionsEnabled?: boolean;

/**
* The number of datapoints that must be breaching to trigger the alarm. This is used only if you are setting an "M
* out of N" alarm. In that case, this value is the M. For more information, see Evaluating an Alarm in the Amazon
* CloudWatch User Guide.
*
* @default ``evaluationPeriods``
*
* @see https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/AlarmThatSendsEmail.html#alarm-evaluation
*/
datapointsToAlarm?: number;
}

function ifUndefined<T>(x: T | undefined, def: T | undefined): T | undefined {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,8 @@
"Properties": {
"ComparisonOperator": "GreaterThanOrEqualToThreshold",
"EvaluationPeriods": 3,
"MetricName": "ApproximateNumberOfMessagesVisible",
"Namespace": "AWS/SQS",
"Period": 300,
"Threshold": 100,
"DatapointsToAlarm": 2,
"Dimensions": [
{
"Name": "QueueName",
Expand All @@ -23,6 +21,9 @@
}
}
],
"MetricName": "ApproximateNumberOfMessagesVisible",
"Namespace": "AWS/SQS",
"Period": 300,
"Statistic": "Average"
}
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,8 @@ const metric = new cloudwatch.Metric({

const alarm = metric.newAlarm(stack, 'Alarm', {
threshold: 100,
evaluationPeriods: 3
evaluationPeriods: 3,
datapointsToAlarm: 2,
});

const dashboard = new cloudwatch.Dashboard(stack, 'Dash');
Expand Down
31 changes: 29 additions & 2 deletions packages/@aws-cdk/aws-cloudwatch/test/test.alarm.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,40 @@ export = {
new Alarm(stack, 'Alarm', {
metric: testMetric,
threshold: 1000,
evaluationPeriods: 2
evaluationPeriods: 3,
});

// THEN
expect(stack).to(haveResource('AWS::CloudWatch::Alarm', {
ComparisonOperator: "GreaterThanOrEqualToThreshold",
EvaluationPeriods: 2,
EvaluationPeriods: 3,
MetricName: "Metric",
Namespace: "CDK/Test",
Period: 300,
Statistic: 'Average',
Threshold: 1000,
}));

test.done();
},

'can set DatapointsToAlarm'(test: Test) {
// GIVEN
const stack = new Stack();

// WHEN
new Alarm(stack, 'Alarm', {
metric: testMetric,
threshold: 1000,
evaluationPeriods: 3,
datapointsToAlarm: 2,
});

// THEN
expect(stack).to(haveResource('AWS::CloudWatch::Alarm', {
ComparisonOperator: "GreaterThanOrEqualToThreshold",
EvaluationPeriods: 3,
DatapointsToAlarm: 2,
MetricName: "Metric",
Namespace: "CDK/Test",
Period: 300,
Expand Down

0 comments on commit 828ac20

Please sign in to comment.