From 27606ee6774cb05e1d6c2499116eabdd9deb7f7a Mon Sep 17 00:00:00 2001 From: Alexandre Gaillet Date: Tue, 12 Jun 2018 11:54:37 +0200 Subject: [PATCH] MON-32 - READMEs updated --- cloud/aws/elasticache/common/README.md | 1 + cloud/aws/elasticache/memcached/README.md | 13 ++++++++++++- cloud/aws/elasticache/redis/README.md | 22 +++++++++++----------- 3 files changed, 24 insertions(+), 12 deletions(-) diff --git a/cloud/aws/elasticache/common/README.md b/cloud/aws/elasticache/common/README.md index 5bf7f7a..779e9c9 100644 --- a/cloud/aws/elasticache/common/README.md +++ b/cloud/aws/elasticache/common/README.md @@ -23,6 +23,7 @@ Purpose Creates DataDog monitors with the following checks: * Eviction +* Eviction growing * Swap * Max connections * No connection diff --git a/cloud/aws/elasticache/memcached/README.md b/cloud/aws/elasticache/memcached/README.md index 58e910d..83b0ca8 100644 --- a/cloud/aws/elasticache/memcached/README.md +++ b/cloud/aws/elasticache/memcached/README.md @@ -10,7 +10,6 @@ module "datadog-monitors-aws-elasticache-redis" { message = "${module.datadog-message-alerting.alerting-message}" environment = "${var.environment}" - elasticache_size = "${var.size_of_elsaticache}" } ``` @@ -19,9 +18,21 @@ Purpose ------- Creates DataDog monitors with the following checks : +Memcached specific: + * Get Hit * CPU High +Elasticache common: + +* Eviction +* Eviction growing +* Swap +* Max connections +* No connection +* Free Memory + + Inputs ------ diff --git a/cloud/aws/elasticache/redis/README.md b/cloud/aws/elasticache/redis/README.md index 4d8e4aa..eea8930 100644 --- a/cloud/aws/elasticache/redis/README.md +++ b/cloud/aws/elasticache/redis/README.md @@ -10,30 +10,30 @@ module "datadog-monitors-aws-elasticache-redis" { message = "${module.datadog-message-alerting.alerting-message}" environment = "${var.environment}" - elasticache_size = "${var.size_of_elsaticache}" - nodes = "${data.my_cluster.num_cache_nodes}" } - ``` -You can retrieve the number of nodes using the data source : - -``` -data "aws_elasticache_cluster" "my_cluster" { - cluster_id = "my-cluster-id" -} - -``` Purpose ------- Creates DataDog monitors with the following checks: +Redis specific: + * Cache hits * CPU high * Commands received * Replication lag +Elasticache common: + +* Eviction +* Eviction growing +* Swap +* Max connections +* No connection +* Free Memory + Inputs ------