This repository has been archived by the owner on Sep 18, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 30
/
marbot-reserved-instance.yml
406 lines (406 loc) · 14 KB
/
marbot-reserved-instance.yml
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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
---
# Copyright widdix GmbH
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
AWSTemplateFormatVersion: '2010-09-09'
Description: 'marbot.io: AWS Reserved Instance (RI) monitoring (https://github.com/marbot-io/monitoring-jump-start)'
Metadata:
'AWS::CloudFormation::Interface':
ParameterGroups:
- Label:
default: 'marbot endpoint'
Parameters:
- EndpointId
- Stage
- Label:
default: 'Amazon Elastic Compute Cloud - Compute'
Parameters:
- Ec2RiCoverageThreshold
- Ec2RiUtilizationThreshold
- Label:
default: 'Amazon Redshift'
Parameters:
- RedshiftRiCoverageThreshold
- RedshiftRiUtilizationThreshold
- Label:
default: 'Amazon Relational Database Service'
Parameters:
- RdsRiCoverageThreshold
- RdsRiUtilizationThreshold
- Label:
default: 'Amazon ElastiCache'
Parameters:
- ElastiCacheRiCoverageThreshold
- ElastiCacheRiUtilizationThreshold
- Label:
default: 'Amazon Elasticsearch Service'
Parameters:
- ElasticsearchRiCoverageThreshold
- ElasticsearchRiUtilizationThreshold
Parameters:
EndpointId:
Description: 'Your marbot endpoint ID (to get this value: select a channel where marbot belongs to and send a message like this: "@marbot show me my endpoint id").'
Type: String
Stage:
Description: 'marbot stage (never change this!).'
Type: String
Default: v1
AllowedValues: [v1, dev]
Ec2RiCoverageThreshold:
Description: 'Receive an alert, if your monthly EC2 Reserved Instance coverage (in percents) is lower than this value (set to -1 to disable).'
Type: Number
Default: -1
MinValue: -1
MaxValue: 100
Ec2RiUtilizationThreshold:
Description: 'Receive an alert, if your monthly EC2 Reserved Instance utilization (in percents) is lower than this value (set to -1 to disable).'
Type: Number
Default: -1
MinValue: -1
MaxValue: 100
RedshiftRiCoverageThreshold:
Description: 'Receive an alert, if your monthly Redshift Reserved Instance coverage (in percents) is lower than this value (set to -1 to disable).'
Type: Number
Default: -1
MinValue: -1
MaxValue: 100
RedshiftRiUtilizationThreshold:
Description: 'Receive an alert, if your monthly Redshift Reserved Instance utilization (in percents) is lower than this value (set to -1 to disable).'
Type: Number
Default: -1
MinValue: -1
MaxValue: 100
RdsRiCoverageThreshold:
Description: 'Receive an alert, if your monthly RDS Reserved Instance coverage (in percents) is lower than this value (set to -1 to disable).'
Type: Number
Default: -1
MinValue: -1
MaxValue: 100
RdsRiUtilizationThreshold:
Description: 'Receive an alert, if your monthly RDS Reserved Instance utilization (in percents) is lower than this value (set to -1 to disable).'
Type: Number
Default: -1
MinValue: -1
MaxValue: 100
ElastiCacheRiCoverageThreshold:
Description: 'Receive an alert, if your monthly ElastiCache Reserved Instance coverage (in percents) is lower than this value (set to -1 to disable).'
Type: Number
Default: -1
MinValue: -1
MaxValue: 100
ElastiCacheRiUtilizationThreshold:
Description: 'Receive an alert, if your monthly ElastiCache Reserved Instance utilization (in percents) is lower than this value (set to -1 to disable).'
Type: Number
Default: -1
MinValue: -1
MaxValue: 100
ElasticsearchRiCoverageThreshold:
Description: 'Receive an alert, if your monthly Elasticsearch Reserved Instance coverage (in percents) is lower than this value (set to -1 to disable).'
Type: Number
Default: -1
MinValue: -1
MaxValue: 100
ElasticsearchRiUtilizationThreshold:
Description: 'Receive an alert, if your monthly Elasticsearch Reserved Instance utilization (in percents) is lower than this value (set to -1 to disable).'
Type: Number
Default: -1
MinValue: -1
MaxValue: 100
Conditions:
Ec2RiCoverageEnabled: !Not [!Equals [!Ref Ec2RiCoverageThreshold, '-1']]
Ec2RiUtilizationEnabled: !Not [!Equals [!Ref Ec2RiUtilizationThreshold, '-1']]
RedshiftRiCoverageEnabled: !Not [!Equals [!Ref RedshiftRiCoverageThreshold, '-1']]
RedshiftRiUtilizationEnabled: !Not [!Equals [!Ref RedshiftRiUtilizationThreshold, '-1']]
RdsRiCoverageEnabled: !Not [!Equals [!Ref RdsRiCoverageThreshold, '-1']]
RdsRiUtilizationEnabled: !Not [!Equals [!Ref RdsRiUtilizationThreshold, '-1']]
ElastiCacheRiCoverageEnabled: !Not [!Equals [!Ref ElastiCacheRiCoverageThreshold, '-1']]
ElastiCacheRiUtilizationEnabled: !Not [!Equals [!Ref ElastiCacheRiUtilizationThreshold, '-1']]
ElasticsearchRiCoverageEnabled: !Not [!Equals [!Ref ElasticsearchRiCoverageThreshold, '-1']]
ElasticsearchRiUtilizationEnabled: !Not [!Equals [!Ref ElasticsearchRiUtilizationThreshold, '-1']]
Resources:
##########################################################################
# #
# TOPIC #
# #
##########################################################################
Topic:
Type: 'AWS::SNS::Topic'
Properties: {}
TopicPolicy:
Type: 'AWS::SNS::TopicPolicy'
Properties:
PolicyDocument:
Id: Id1
Version: '2012-10-17'
Statement:
- Sid: Sid1
Effect: Allow
Principal:
Service:
- 'budgets.amazonaws.com' # Allow Budget Notifications
Action: 'sns:Publish'
Resource: !Ref Topic
Topics:
- !Ref Topic
TopicEndpointSubscription:
DependsOn: TopicPolicy
Type: 'AWS::SNS::Subscription'
Properties:
DeliveryPolicy:
healthyRetryPolicy:
minDelayTarget: 1
maxDelayTarget: 60
numRetries: 100
numNoDelayRetries: 0
backoffFunction: exponential
throttlePolicy:
maxReceivesPerSecond: 1
Endpoint: !Sub 'https://api.marbot.io/${Stage}/endpoint/${EndpointId}'
Protocol: https
TopicArn: !Ref Topic
MonitoringJumpStartEvent:
DependsOn: TopicEndpointSubscription
Type: 'AWS::Events::Rule'
Properties:
Description: 'Monitoring Jump Start connection. (created by marbot)'
ScheduleExpression: 'rate(30 days)'
State: ENABLED
Targets:
- Arn: !Ref Topic
Id: marbot
Input: !Sub |
{
"Type": "monitoring-jump-start-connection",
"StackTemplate": "marbot-reserved-instance",
"StackVersion": "1.0.1",
"Partition": "${AWS::Partition}",
"AccountId": "${AWS::AccountId}",
"Region": "${AWS::Region}",
"StackId": "${AWS::StackId}",
"StackName": "${AWS::StackName}"
}
##########################################################################
# #
# BUDGET #
# #
##########################################################################
Ec2RiCoverage:
Condition: Ec2RiCoverageEnabled
DependsOn: TopicEndpointSubscription
Type: 'AWS::Budgets::Budget'
Properties:
NotificationsWithSubscribers:
- Subscribers:
- SubscriptionType: SNS
Address: !Ref Topic
Notification:
ComparisonOperator: 'LESS_THAN'
NotificationType: ACTUAL
Threshold: !Ref Ec2RiCoverageThreshold
ThresholdType: PERCENTAGE
Budget:
TimeUnit: MONTHLY
BudgetType: RI_COVERAGE
CostFilters:
Service:
- 'Amazon Elastic Compute Cloud - Compute'
Ec2RiUtilization:
Condition: Ec2RiUtilizationEnabled
DependsOn: TopicEndpointSubscription
Type: 'AWS::Budgets::Budget'
Properties:
NotificationsWithSubscribers:
- Subscribers:
- SubscriptionType: SNS
Address: !Ref Topic
Notification:
ComparisonOperator: 'LESS_THAN'
NotificationType: ACTUAL
Threshold: !Ref Ec2RiUtilizationThreshold
ThresholdType: PERCENTAGE
Budget:
TimeUnit: MONTHLY
BudgetType: RI_UTILIZATION
CostFilters:
Service:
- 'Amazon Elastic Compute Cloud - Compute'
RedshiftRiCoverage:
Condition: RedshiftRiCoverageEnabled
DependsOn: TopicEndpointSubscription
Type: 'AWS::Budgets::Budget'
Properties:
NotificationsWithSubscribers:
- Subscribers:
- SubscriptionType: SNS
Address: !Ref Topic
Notification:
ComparisonOperator: 'LESS_THAN'
NotificationType: ACTUAL
Threshold: !Ref RedshiftRiCoverageThreshold
ThresholdType: PERCENTAGE
Budget:
TimeUnit: MONTHLY
BudgetType: RI_COVERAGE
CostFilters:
Service:
- 'Amazon Redshift'
RedshiftRiUtilization:
Condition: RedshiftRiUtilizationEnabled
DependsOn: TopicEndpointSubscription
Type: 'AWS::Budgets::Budget'
Properties:
NotificationsWithSubscribers:
- Subscribers:
- SubscriptionType: SNS
Address: !Ref Topic
Notification:
ComparisonOperator: 'LESS_THAN'
NotificationType: ACTUAL
Threshold: !Ref RedshiftRiUtilizationThreshold
ThresholdType: PERCENTAGE
Budget:
TimeUnit: MONTHLY
BudgetType: RI_UTILIZATION
CostFilters:
Service:
- 'Amazon Redshift'
RdsRiCoverage:
Condition: RdsRiCoverageEnabled
DependsOn: TopicEndpointSubscription
Type: 'AWS::Budgets::Budget'
Properties:
NotificationsWithSubscribers:
- Subscribers:
- SubscriptionType: SNS
Address: !Ref Topic
Notification:
ComparisonOperator: 'LESS_THAN'
NotificationType: ACTUAL
Threshold: !Ref RdsRiCoverageThreshold
ThresholdType: PERCENTAGE
Budget:
TimeUnit: MONTHLY
BudgetType: RI_COVERAGE
CostFilters:
Service:
- 'Amazon Relational Database Service'
RdsRiUtilization:
Condition: RdsRiUtilizationEnabled
DependsOn: TopicEndpointSubscription
Type: 'AWS::Budgets::Budget'
Properties:
NotificationsWithSubscribers:
- Subscribers:
- SubscriptionType: SNS
Address: !Ref Topic
Notification:
ComparisonOperator: 'LESS_THAN'
NotificationType: ACTUAL
Threshold: !Ref RdsRiUtilizationThreshold
ThresholdType: PERCENTAGE
Budget:
TimeUnit: MONTHLY
BudgetType: RI_UTILIZATION
CostFilters:
Service:
- 'Amazon Relational Database Service'
ElastiCacheRiCoverage:
Condition: ElastiCacheRiCoverageEnabled
DependsOn: TopicEndpointSubscription
Type: 'AWS::Budgets::Budget'
Properties:
NotificationsWithSubscribers:
- Subscribers:
- SubscriptionType: SNS
Address: !Ref Topic
Notification:
ComparisonOperator: 'LESS_THAN'
NotificationType: ACTUAL
Threshold: !Ref ElastiCacheRiCoverageThreshold
ThresholdType: PERCENTAGE
Budget:
TimeUnit: MONTHLY
BudgetType: RI_COVERAGE
CostFilters:
Service:
- 'Amazon ElastiCache'
ElastiCacheRiUtilization:
Condition: ElastiCacheRiUtilizationEnabled
DependsOn: TopicEndpointSubscription
Type: 'AWS::Budgets::Budget'
Properties:
NotificationsWithSubscribers:
- Subscribers:
- SubscriptionType: SNS
Address: !Ref Topic
Notification:
ComparisonOperator: 'LESS_THAN'
NotificationType: ACTUAL
Threshold: !Ref ElastiCacheRiUtilizationThreshold
ThresholdType: PERCENTAGE
Budget:
TimeUnit: MONTHLY
BudgetType: RI_UTILIZATION
CostFilters:
Service:
- 'Amazon ElastiCache'
ElasticsearchRiCoverage:
Condition: ElasticsearchRiCoverageEnabled
DependsOn: TopicEndpointSubscription
Type: 'AWS::Budgets::Budget'
Properties:
NotificationsWithSubscribers:
- Subscribers:
- SubscriptionType: SNS
Address: !Ref Topic
Notification:
ComparisonOperator: 'LESS_THAN'
NotificationType: ACTUAL
Threshold: !Ref ElasticsearchRiCoverageThreshold
ThresholdType: PERCENTAGE
Budget:
TimeUnit: MONTHLY
BudgetType: RI_COVERAGE
CostFilters:
Service:
- 'Amazon Elasticsearch Service'
ElasticsearchRiUtilization:
Condition: ElasticsearchRiUtilizationEnabled
DependsOn: TopicEndpointSubscription
Type: 'AWS::Budgets::Budget'
Properties:
NotificationsWithSubscribers:
- Subscribers:
- SubscriptionType: SNS
Address: !Ref Topic
Notification:
ComparisonOperator: 'LESS_THAN'
NotificationType: ACTUAL
Threshold: !Ref ElasticsearchRiUtilizationThreshold
ThresholdType: PERCENTAGE
Budget:
TimeUnit: MONTHLY
BudgetType: RI_UTILIZATION
CostFilters:
Service:
- 'Amazon Elasticsearch Service'
Outputs:
StackName:
Description: 'Stack name.'
Value: !Sub '${AWS::StackName}'
StackTemplate:
Description: 'Stack template.'
Value: 'marbot-reserved-instance'
StackVersion:
Description: 'Stack version.'
Value: '1.0.1'