Class: CfnGuardian::Resource::EKSContainerInsightsCluster

Inherits:
Base
  • Object
show all
Defined in:
lib/cfnguardian/resources/eks_container_insights.rb

Instance Method Summary collapse

Methods inherited from Base

#default_checks, #default_event_subscriptions, #default_events, #default_metric_filters, #get_alarms, #get_checks, #get_cost, #get_event_subscriptions, #get_events, #get_metric_filters, #initialize, #resource_exists?

Methods included from Logging

colors, included, logger, #logger, logger=

Constructor Details

This class inherits a constructor from CfnGuardian::Resource::Base

Instance Method Details

#default_alarmsObject



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
# File 'lib/cfnguardian/resources/eks_container_insights.rb', line 4

def default_alarms

  alarm = CfnGuardian::Models::EKSContainerInsightsClusterAlarm.new(@resource)
  alarm.name = 'NodeCpuUtilisationBase'
  alarm.metric_name = 'node_cpu_utilization'
  alarm.comparison_operator = 'GreaterThanThreshold'
  alarm.statistic = 'Maximum'
  alarm.threshold = 75
  alarm.evaluation_periods = 60
  alarm.alarm_action = 'Warning'
  @alarms.push(alarm)

  alarm = CfnGuardian::Models::EKSContainerInsightsClusterAlarm.new(@resource)
  alarm.name = 'NodeCpuUtilisationSpike'
  alarm.metric_name = 'node_cpu_utilization'
  alarm.comparison_operator = 'GreaterThanThreshold'
  alarm.statistic = 'Maximum'
  alarm.threshold = 95
  alarm.evaluation_periods = 5
  @alarms.push(alarm)

  alarm = CfnGuardian::Models::EKSContainerInsightsClusterAlarm.new(@resource)
  alarm.name = 'NodeFileSystemUtilisationCrit'
  alarm.metric_name = 'node_filesystem_utilization'
  alarm.comparison_operator = 'GreaterThanThreshold'
  alarm.statistic = 'Maximum'
  alarm.threshold = 90
  alarm.evaluation_periods = 1
  @alarms.push(alarm)

  alarm = CfnGuardian::Models::EKSContainerInsightsClusterAlarm.new(@resource)
  alarm.name = 'NodeFileSystemUtilisationWarning'
  alarm.metric_name = 'node_filesystem_utilization'
  alarm.comparison_operator = 'GreaterThanThreshold'
  alarm.statistic = 'Maximum'
  alarm.threshold = 75
  alarm.evaluation_periods = 1
  alarm.alarm_action = 'Warning'
  @alarms.push(alarm)

  alarm = CfnGuardian::Models::EKSContainerInsightsClusterAlarm.new(@resource)
  alarm.name = 'NodeMemoryUtilisationBase'
  alarm.metric_name = 'node_memory_utilization'
  alarm.comparison_operator = 'GreaterThanThreshold'
  alarm.statistic = 'Maximum'
  alarm.threshold = 80
  alarm.evaluation_periods = 60
  alarm.alarm_action = 'Warning'
  @alarms.push(alarm)

  alarm = CfnGuardian::Models::EKSContainerInsightsClusterAlarm.new(@resource)
  alarm.name = 'NodeMemoryUtilisationSpike'
  alarm.metric_name = 'node_memory_utilization'
  alarm.comparison_operator = 'GreaterThanThreshold'
  alarm.statistic = 'Maximum'
  alarm.threshold = 90
  alarm.evaluation_periods = 5
  @alarms.push(alarm)

  alarm = CfnGuardian::Models::EKSContainerInsightsClusterAlarm.new(@resource)
  alarm.name = 'ClusterFailedNodeCount'
  alarm.metric_name = 'cluster_failed_node_count'
  alarm.comparison_operator = 'GreaterThanThreshold'
  alarm.statistic = 'Minimum'
  alarm.threshold = 0
  alarm.evaluation_periods = 1
  @alarms.push(alarm)

end