File tree Expand file tree Collapse file tree 2 files changed +16
-0
lines changed
eks-cross-account-with-central-amp Expand file tree Collapse file tree 2 files changed +16
-0
lines changed Original file line number Diff line number Diff line change @@ -25,6 +25,10 @@ module "eks_monitoring_one" {
25
25
enable_nginx = true
26
26
enable_node_exporter = true
27
27
28
+ # Additional dashboards
29
+ enable_apiserver_monitoring = true
30
+ enable_adotcollector_metrics = true
31
+
28
32
# Set to false for cross-cluster observability
29
33
enable_alerting_rules = false
30
34
enable_recording_rules = false
@@ -76,6 +80,10 @@ module "eks_monitoring_two" {
76
80
enable_dashboards = false
77
81
enable_node_exporter = true
78
82
83
+ # Additional dashboards
84
+ enable_apiserver_monitoring = false
85
+ enable_adotcollector_metrics = false
86
+
79
87
# Set to false for cross-cluster observability
80
88
enable_alerting_rules = false
81
89
enable_recording_rules = false
Original file line number Diff line number Diff line change @@ -27,6 +27,10 @@ module "eks_cluster_1_monitoring" {
27
27
enable_alerting_rules = true
28
28
enable_recording_rules = true
29
29
30
+ # Additional dashboards
31
+ enable_apiserver_monitoring = true
32
+ enable_adotcollector_metrics = true
33
+
30
34
grafana_api_key = var. grafana_api_key
31
35
managed_prometheus_workspace_id = module. aws_observability_accelerator . managed_prometheus_workspace_id
32
36
managed_prometheus_workspace_endpoint = module. aws_observability_accelerator . managed_prometheus_workspace_endpoint
@@ -65,6 +69,10 @@ module "eks_cluster_2_monitoring" {
65
69
enable_alerting_rules = false
66
70
enable_recording_rules = false
67
71
72
+ # Disable additional dashboards
73
+ enable_apiserver_monitoring = false
74
+ enable_adotcollector_metrics = false
75
+
68
76
managed_prometheus_workspace_id = module. aws_observability_accelerator . managed_prometheus_workspace_id
69
77
managed_prometheus_workspace_endpoint = module. aws_observability_accelerator . managed_prometheus_workspace_endpoint
70
78
managed_prometheus_workspace_region = module. aws_observability_accelerator . managed_prometheus_workspace_region
You can’t perform that action at this time.
0 commit comments