Skip to content

Commit fc56ea3

Browse files
committed
Reduce cost when sending SMS messages by ensuring <= 160 chars
1 parent 9a8dd6b commit fc56ea3

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed

alertmanager/index.js

+10-1
Original file line numberDiff line numberDiff line change
@@ -260,8 +260,17 @@ var apis = {
260260

261261
var record = unwrapDynamoDBTypedObject(event.Records[0].dynamodb.NewImage);
262262

263+
var messageText = record.subject + "\n\n" + record.details;
264+
var messageByProtocol = {
265+
default: messageText, // email etc.
266+
267+
// longer than 160 char SMS messages add up costs
268+
sms: messageText.substr(0, 160 - 7) // -7 for "ALERT >" prefix in SMS messages
269+
};
270+
263271
sns.publish({
264-
Message: record.subject + "\n\n" + record.details,
272+
MessageStructure: 'json',
273+
Message: JSON.stringify(messageByProtocol),
265274
Subject: record.subject,
266275
TopicArn: ALERT_TOPIC
267276
}, function (err) {

0 commit comments

Comments
 (0)