forked from tensult/aws-automation
-
Notifications
You must be signed in to change notification settings - Fork 0
/
set_lambda_function_invocation_count_alarm.js
84 lines (79 loc) · 3.1 KB
/
set_lambda_function_invocation_count_alarm.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
/**
* Setting Alarm for Lambda function invocation count is important as if
* there is any bug in the code then it can trigger Lambda functions in loop and
* it will effect the performance of the application also we will get huge AWS bill.
*
* We can use this script to set Invocation count Alarm for all our Lambda functions at once.
*/
const awsConfigHelper = require('./util/awsConfigHelper');
const wait = require('./util/wait');
const AWS = require('aws-sdk');
const cli = require('cli');
const cliArgs = cli.parse({
region: ['r', 'AWS region', 'string'],
filterName: ['f', 'Pass filter name to filter Lambda functions', 'string'],
alarmActionArn: ['a', "Action to be trigger when alarm is breached", "string"],
duration: ['d', 'Duration for alarm to check the invocation count', "number", 60],
invocationCount: ['c', 'Maximum invocations in the specified duration', 'number', 15]
});
if (!cliArgs.region || !cliArgs.alarmActionArn) {
cli.getUsage();
}
const filterRegex = new RegExp(cliArgs.filterName);
let isCompleted = false;
let nextToken = undefined;
async function setFunctionInvocationAlarms() {
await awsConfigHelper.updateConfig(cliArgs.region);
const lambda = new AWS.Lambda();
const cloudwatch = new AWS.CloudWatch();
while (!isCompleted) {
try {
const response = await lambda.listFunctions({
Marker: nextToken
}).promise();
if (response.Functions) {
for (let i = 0; i < response.Functions.length; i++) {
const fn = response.Functions[i];
if (cliArgs.filterName && !fn.FunctionName.match(filterRegex)) {
console.log("Skipping function", fn.FunctionName);
continue;
}
console.log(`Creating Invocation count Alarm for function: ${fn.FunctionName}`);
await cloudwatch.putMetricAlarm({
AlarmName: `${fn.FunctionName}_InvocationCount`,
AlarmDescription: "Invocations count Alarm",
Period: cliArgs.duration,
MetricName: "Invocations",
ActionsEnabled: true,
AlarmActions: [
cliArgs.alarmActionArn
],
Namespace: "AWS/Lambda",
Statistic: "Sum",
Dimensions: [{
"Name": "FunctionName",
"Value": fn.FunctionName
}],
EvaluationPeriods: 1,
DatapointsToAlarm: 1,
Threshold: cliArgs.invocationCount,
ComparisonOperator: "GreaterThanOrEqualToThreshold",
TreatMissingData: "missing"
}).promise();
await wait(500);
}
nextToken = response.NextMarker;
isCompleted = !nextToken;
} else {
isCompleted = true
}
} catch (error) {
if (error.code === 'ThrottlingException') {
await wait(2000);
} else {
throw error;
}
}
}
}
setFunctionInvocationAlarms();