cfn_monitor 0.4.3 → 0.4.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/cfn_monitor/version.rb +1 -1
- data/lib/config/templates.yml +32 -0
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 1056cbcb7608c97b1390f7fdc0290cd60d3ebb938e4a0beeca1ac2cf8c2465db
|
|
4
|
+
data.tar.gz: 29836a9f076330f81fa15d92ef242cff14fd81976156d4577bff4752d53c6fb3
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: ba1b3284b902d31560dce3adbae3746545f4dea6cb7afc6a37ffd0708dd69c0eabe40b4635e12b64bc6b27e4384a31ba46993567bc891a24d2166d6d45155495
|
|
7
|
+
data.tar.gz: d14c5221421263e1bf17fc4ca5697609e634b68abb058509d1d316c1afa7146e5f8250c9ae17f498a2b661e966a251cf58160b230237990935f045057a05e6f1
|
data/lib/cfn_monitor/version.rb
CHANGED
data/lib/config/templates.yml
CHANGED
|
@@ -338,6 +338,34 @@ templates:
|
|
|
338
338
|
Statistic: Minimum
|
|
339
339
|
Threshold: 75
|
|
340
340
|
EvaluationPeriods: 60
|
|
341
|
+
AuroraInstance:
|
|
342
|
+
DBConnections:
|
|
343
|
+
AlarmActions: crit
|
|
344
|
+
Namespace: AWS/RDS
|
|
345
|
+
MetricName: DatabaseConnections
|
|
346
|
+
ComparisonOperator: GreaterThanThreshold
|
|
347
|
+
DimensionsName: DBInstanceIdentifier
|
|
348
|
+
Statistic: Minimum
|
|
349
|
+
Threshold: 45 # This needs to be customised for whichever instance type is being used as it is not a percentage and they all differ
|
|
350
|
+
EvaluationPeriods: 10
|
|
351
|
+
CPUUtilizationHighSpike:
|
|
352
|
+
AlarmActions: crit
|
|
353
|
+
Namespace: AWS/RDS
|
|
354
|
+
MetricName: CPUUtilization
|
|
355
|
+
ComparisonOperator: GreaterThanThreshold
|
|
356
|
+
DimensionsName: DBInstanceIdentifier
|
|
357
|
+
Statistic: Minimum
|
|
358
|
+
Threshold: 95
|
|
359
|
+
EvaluationPeriods: 10
|
|
360
|
+
CPUUtilizationHighBase:
|
|
361
|
+
AlarmActions: warn
|
|
362
|
+
Namespace: AWS/RDS
|
|
363
|
+
MetricName: CPUUtilization
|
|
364
|
+
ComparisonOperator: GreaterThanThreshold
|
|
365
|
+
DimensionsName: DBInstanceIdentifier
|
|
366
|
+
Statistic: Minimum
|
|
367
|
+
Threshold: 75
|
|
368
|
+
EvaluationPeriods: 60
|
|
341
369
|
DBCluster: # AWS::RDS::DBCluster
|
|
342
370
|
CPUUtilizationHighSpike:
|
|
343
371
|
AlarmActions: crit
|
|
@@ -498,6 +526,7 @@ templates:
|
|
|
498
526
|
Statistic: Sum
|
|
499
527
|
Threshold: 5
|
|
500
528
|
EvaluationPeriods: 2
|
|
529
|
+
TreatMissingData: notBreaching
|
|
501
530
|
ApiEndpoint4xx:
|
|
502
531
|
AlarmActions: warn
|
|
503
532
|
Namespace: AWS/ApiGateway
|
|
@@ -508,6 +537,7 @@ templates:
|
|
|
508
537
|
Statistic: Sum
|
|
509
538
|
Threshold: 5
|
|
510
539
|
EvaluationPeriods: 2
|
|
540
|
+
TreatMissingData: notBreaching
|
|
511
541
|
Latency:
|
|
512
542
|
AlarmActions: warn
|
|
513
543
|
Namespace: AWS/ApiGateway
|
|
@@ -546,6 +576,7 @@ templates:
|
|
|
546
576
|
Statistic: Sum
|
|
547
577
|
Threshold: 1
|
|
548
578
|
EvaluationPeriods: 2
|
|
579
|
+
TreatMissingData: notBreaching
|
|
549
580
|
DynamoDBWriteThrottleEvents:
|
|
550
581
|
AlarmActions: warn
|
|
551
582
|
Namespace: AWS/DynamoDB
|
|
@@ -555,6 +586,7 @@ templates:
|
|
|
555
586
|
Statistic: Sum
|
|
556
587
|
Threshold: 1
|
|
557
588
|
EvaluationPeriods: 2
|
|
589
|
+
TreatMissingData: notBreaching
|
|
558
590
|
ElasticLoadBalancerSingleInstance: # AWS::ElasticLoadBalancing::LoadBalancer
|
|
559
591
|
HealthyHosts:
|
|
560
592
|
AlarmActions: crit
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: cfn_monitor
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.4.
|
|
4
|
+
version: 0.4.4
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Base2Services
|
|
@@ -10,7 +10,7 @@ authors:
|
|
|
10
10
|
autorequire:
|
|
11
11
|
bindir: exe
|
|
12
12
|
cert_chain: []
|
|
13
|
-
date: 2019-
|
|
13
|
+
date: 2019-12-19 00:00:00.000000000 Z
|
|
14
14
|
dependencies:
|
|
15
15
|
- !ruby/object:Gem::Dependency
|
|
16
16
|
name: thor
|
|
@@ -248,7 +248,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
248
248
|
- !ruby/object:Gem::Version
|
|
249
249
|
version: '0'
|
|
250
250
|
requirements: []
|
|
251
|
-
rubygems_version: 3.
|
|
251
|
+
rubygems_version: 3.1.1
|
|
252
252
|
signing_key:
|
|
253
253
|
specification_version: 4
|
|
254
254
|
summary: Configure and generate a cloudwatch monitoring cloudformation stack
|