DOC: updated readme with examples
This commit is contained in:
parent
d5f2af07c5
commit
14ef1770c2
@ -2,4 +2,21 @@
|
|||||||
This module deploys the default cloudwatch metric monitoring
|
This module deploys the default cloudwatch metric monitoring
|
||||||
|
|
||||||
## Notes
|
## Notes
|
||||||
Terraform lifecycle ignores tags to speed up terraform subsequent update. Cloudwatch alarm tags cannot be read on aws console anyway.
|
Terraform lifecycle ignores tags to speed up terraform subsequent update. Cloudwatch alarm tags cannot be read on aws console anyway.
|
||||||
|
|
||||||
|
## Example
|
||||||
|
```terraform
|
||||||
|
module "alb-arns" {
|
||||||
|
source = "../../modules/util/resource-list"
|
||||||
|
resource-type = "alb"
|
||||||
|
}
|
||||||
|
|
||||||
|
module "alb-monitoring" {
|
||||||
|
for_each = toset(split(" ", data.external.alb-arns.result.result))
|
||||||
|
source = "../../modules/ManagementGovernance/Monitoring.ALB"
|
||||||
|
default-tags = local.default-tags
|
||||||
|
load-balancer = each.value
|
||||||
|
threshold-HealthHostCountMin = 1
|
||||||
|
}
|
||||||
|
|
||||||
|
```
|
@ -2,4 +2,23 @@
|
|||||||
This module deploys the default cloudwatch metric monitoring
|
This module deploys the default cloudwatch metric monitoring
|
||||||
|
|
||||||
## Notes
|
## Notes
|
||||||
Terraform lifecycle ignores tags to speed up terraform subsequent update. Cloudwatch alarm tags cannot be read on aws console anyway.
|
Terraform lifecycle ignores tags to speed up terraform subsequent update. Cloudwatch alarm tags cannot be read on aws console anyway.
|
||||||
|
|
||||||
|
## Example
|
||||||
|
```terraform
|
||||||
|
module "asg" {
|
||||||
|
source = "../../modules/util/resource-list"
|
||||||
|
resource-type = "asg"
|
||||||
|
}
|
||||||
|
|
||||||
|
module "asg-monitoring" {
|
||||||
|
cw-alarm-prefix = local.cw-alarm-prefix
|
||||||
|
for_each = module.asg.result-set
|
||||||
|
source = "../../modules/ManagementGovernance/Monitoring.ASG"
|
||||||
|
default-tags = local.default-tags
|
||||||
|
asg-name = each.value
|
||||||
|
threshold-CPUUtilization = 90
|
||||||
|
actions-enabled = var.actions-enabled
|
||||||
|
sns-targets = var.sns-targets
|
||||||
|
}
|
||||||
|
```
|
@ -2,4 +2,30 @@
|
|||||||
This module deploys the default cloudwatch metric monitoring
|
This module deploys the default cloudwatch metric monitoring
|
||||||
|
|
||||||
## Notes
|
## Notes
|
||||||
Terraform lifecycle ignores tags to speed up terraform subsequent update. Cloudwatch alarm tags cannot be read on aws console anyway.
|
Terraform lifecycle ignores tags to speed up terraform subsequent update. Cloudwatch alarm tags cannot be read on aws console anyway.
|
||||||
|
|
||||||
|
## Example
|
||||||
|
```terraform
|
||||||
|
module "ec2-instances" {
|
||||||
|
source = "../../modules/util/resource-list"
|
||||||
|
resource-type = "ec2"
|
||||||
|
}
|
||||||
|
|
||||||
|
module "ec2-monitoring" {
|
||||||
|
cw-alarm-prefix = local.cw-alarm-prefix
|
||||||
|
for_each = module.ec2-instances.result-set
|
||||||
|
source = "../../modules/ManagementGovernance/Monitoring.EC2"
|
||||||
|
default-tags = local.default-tags
|
||||||
|
ec2-instance-id = each.value
|
||||||
|
threshold-CPUUtilization = 90
|
||||||
|
threshold-mem_free = 100000
|
||||||
|
threshold-swap_free = 100000
|
||||||
|
threshold-disk_free = 1 * 1000 * 1000 * 1000
|
||||||
|
threshold-disk_inodes_free = 10000
|
||||||
|
threshold-processes_total = 500
|
||||||
|
threshold-LogicalDiskFreePct = 10
|
||||||
|
threshold-MemoryCommittedPct = 90
|
||||||
|
actions-enabled = var.actions-enabled
|
||||||
|
sns-targets = var.sns-targets
|
||||||
|
}
|
||||||
|
```
|
@ -2,4 +2,24 @@
|
|||||||
This module deploys the default cloudwatch metric monitoring
|
This module deploys the default cloudwatch metric monitoring
|
||||||
|
|
||||||
## Notes
|
## Notes
|
||||||
Terraform lifecycle ignores tags to speed up terraform subsequent update. Cloudwatch alarm tags cannot be read on aws console anyway.
|
Terraform lifecycle ignores tags to speed up terraform subsequent update. Cloudwatch alarm tags cannot be read on aws console anyway.
|
||||||
|
|
||||||
|
## Example
|
||||||
|
```terraform
|
||||||
|
module "emr-clusters" {
|
||||||
|
source = "../../modules/util/resource-list"
|
||||||
|
resource-type = "emr"
|
||||||
|
}
|
||||||
|
|
||||||
|
module "emr-monitoring" {
|
||||||
|
cw-alarm-prefix = local.cw-alarm-prefix
|
||||||
|
for_each = module.emr-clusters.result-set
|
||||||
|
source = "../../modules/ManagementGovernance/Monitoring.EMR"
|
||||||
|
default-tags = local.default-tags
|
||||||
|
job-flow-id = split("/", each.value)[1]
|
||||||
|
threshold-AppsPending = 2
|
||||||
|
threshold-CapacityRemainingGB = 100
|
||||||
|
actions-enabled = var.actions-enabled
|
||||||
|
sns-targets = var.sns-targets
|
||||||
|
}
|
||||||
|
```
|
@ -2,4 +2,23 @@
|
|||||||
This module deploys the default cloudwatch metric monitoring
|
This module deploys the default cloudwatch metric monitoring
|
||||||
|
|
||||||
## Notes
|
## Notes
|
||||||
Terraform lifecycle ignores tags to speed up terraform subsequent update. Cloudwatch alarm tags cannot be read on aws console anyway.
|
Terraform lifecycle ignores tags to speed up terraform subsequent update. Cloudwatch alarm tags cannot be read on aws console anyway.
|
||||||
|
|
||||||
|
## Example
|
||||||
|
```terraform
|
||||||
|
module "kafka-clusters" {
|
||||||
|
source = "../../modules/util/resource-list"
|
||||||
|
resource-type = "kafka"
|
||||||
|
}
|
||||||
|
|
||||||
|
module "kafka-monitoring" {
|
||||||
|
cw-alarm-prefix = local.cw-alarm-prefix
|
||||||
|
for_each = module.kafka-clusters.result-set
|
||||||
|
source = "../../modules/ManagementGovernance/Monitoring.Kafka"
|
||||||
|
default-tags = local.default-tags
|
||||||
|
cluster-name = each.value
|
||||||
|
threshold-ZooKeeperRequestLatencyMsMean = 30
|
||||||
|
actions-enabled = var.actions-enabled
|
||||||
|
sns-targets = var.sns-targets
|
||||||
|
}
|
||||||
|
```
|
@ -2,4 +2,23 @@
|
|||||||
This module deploys the default cloudwatch metric monitoring
|
This module deploys the default cloudwatch metric monitoring
|
||||||
|
|
||||||
## Notes
|
## Notes
|
||||||
Terraform lifecycle ignores tags to speed up terraform subsequent update. Cloudwatch alarm tags cannot be read on aws console anyway.
|
Terraform lifecycle ignores tags to speed up terraform subsequent update. Cloudwatch alarm tags cannot be read on aws console anyway.
|
||||||
|
|
||||||
|
## Example
|
||||||
|
```terraform
|
||||||
|
module "nlb-arns" {
|
||||||
|
source = "../../modules/util/resource-list"
|
||||||
|
resource-type = "nlb"
|
||||||
|
}
|
||||||
|
|
||||||
|
module "nlb-monitoring" {
|
||||||
|
cw-alarm-prefix = local.cw-alarm-prefix
|
||||||
|
for_each = module.nlb-arns.result-set
|
||||||
|
source = "../../modules/ManagementGovernance/Monitoring.NLB"
|
||||||
|
default-tags = local.default-tags
|
||||||
|
load-balancer = each.value
|
||||||
|
threshold-HealthHostCountMin = 1
|
||||||
|
actions-enabled = var.actions-enabled
|
||||||
|
sns-targets = var.sns-targets
|
||||||
|
}
|
||||||
|
```
|
@ -2,4 +2,26 @@
|
|||||||
This module deploys the default cloudwatch metric monitoring
|
This module deploys the default cloudwatch metric monitoring
|
||||||
|
|
||||||
## Notes
|
## Notes
|
||||||
Terraform lifecycle ignores tags to speed up terraform subsequent update. Cloudwatch alarm tags cannot be read on aws console anyway.
|
Terraform lifecycle ignores tags to speed up terraform subsequent update. Cloudwatch alarm tags cannot be read on aws console anyway.
|
||||||
|
|
||||||
|
## Example
|
||||||
|
```terraform
|
||||||
|
module "es-domains" {
|
||||||
|
source = "../../modules/util/resource-list"
|
||||||
|
resource-type = "opensearch"
|
||||||
|
}
|
||||||
|
|
||||||
|
module "es-monitoring" {
|
||||||
|
cw-alarm-prefix = local.cw-alarm-prefix
|
||||||
|
for_each = module.es-domains.result-set
|
||||||
|
source = "../../modules/ManagementGovernance/Monitoring.OpenSearch"
|
||||||
|
default-tags = local.default-tags
|
||||||
|
domain-name = each.value
|
||||||
|
threshold-CPUUtilization = 90
|
||||||
|
threshold-IndexingLatency = 3
|
||||||
|
threshold-SearchLatency = 3
|
||||||
|
# threshold-KibanaHealthyNodes = 1
|
||||||
|
actions-enabled = var.actions-enabled
|
||||||
|
sns-targets = var.sns-targets
|
||||||
|
}
|
||||||
|
```
|
@ -2,4 +2,29 @@
|
|||||||
This module deploys the default cloudwatch metric monitoring
|
This module deploys the default cloudwatch metric monitoring
|
||||||
|
|
||||||
## Notes
|
## Notes
|
||||||
Terraform lifecycle ignores tags to speed up terraform subsequent update. Cloudwatch alarm tags cannot be read on aws console anyway.
|
Terraform lifecycle ignores tags to speed up terraform subsequent update. Cloudwatch alarm tags cannot be read on aws console anyway.
|
||||||
|
|
||||||
|
## Example
|
||||||
|
```terraform
|
||||||
|
module "rds-instances" {
|
||||||
|
source = "../../modules/util/resource-list"
|
||||||
|
resource-type = "rds"
|
||||||
|
}
|
||||||
|
|
||||||
|
module "rds-monitoring" {
|
||||||
|
# for_each = toset(var.rds-instance-ids)
|
||||||
|
cw-alarm-prefix = local.cw-alarm-prefix
|
||||||
|
for_each = module.rds-instances.result-set
|
||||||
|
source = "../../modules/ManagementGovernance/Monitoring.RDS"
|
||||||
|
default-tags = local.default-tags
|
||||||
|
rds-instance-name = each.value
|
||||||
|
threshold-CpuUtilization = 90
|
||||||
|
threshold-FreeableMemory = 512 * 1024 * 1024
|
||||||
|
threshold-FreeStorageSpace = 5 * 1024 * 1024 * 1024
|
||||||
|
threshold-DiskQueueDepth = 30
|
||||||
|
threshold-ReadLatency = 0.03
|
||||||
|
threshold-WriteLatency = 0.03
|
||||||
|
actions-enabled = var.actions-enabled
|
||||||
|
sns-targets = var.sns-targets
|
||||||
|
}
|
||||||
|
```
|
@ -2,4 +2,25 @@
|
|||||||
This module deploys the default cloudwatch metric monitoring
|
This module deploys the default cloudwatch metric monitoring
|
||||||
|
|
||||||
## Notes
|
## Notes
|
||||||
Terraform lifecycle ignores tags to speed up terraform subsequent update. Cloudwatch alarm tags cannot be read on aws console anyway.
|
Terraform lifecycle ignores tags to speed up terraform subsequent update. Cloudwatch alarm tags cannot be read on aws console anyway.
|
||||||
|
|
||||||
|
## Example
|
||||||
|
```terraform
|
||||||
|
module "redis-instances" {
|
||||||
|
source = "../../modules/util/resource-list"
|
||||||
|
resource-type = "redis"
|
||||||
|
}
|
||||||
|
|
||||||
|
module "redis-monitoring" {
|
||||||
|
cw-alarm-prefix = local.cw-alarm-prefix
|
||||||
|
for_each = module.redis-instances.result-set
|
||||||
|
source = "../../modules/ManagementGovernance/Monitoring.Redis"
|
||||||
|
default-tags = local.default-tags
|
||||||
|
redis-cluster-id = each.value
|
||||||
|
threshold-EngineCPUUtilization = 90
|
||||||
|
threshold-DatabaseMemoryUsagePercentage = 90
|
||||||
|
threshold-CacheHitRate = 3
|
||||||
|
actions-enabled = var.actions-enabled
|
||||||
|
sns-targets = var.sns-targets
|
||||||
|
}
|
||||||
|
```
|
Loading…
Reference in New Issue
Block a user