You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Monitoring ElastiCache redis is not possible in an elegant way at the moment in CloudFormation. The CacheClusterId CloudWatch metric dimension is constructed in a way that prevents us from creating alarms for the relevant metrics.
For cluster mode disabled replication groups (NumShards = 1), the following CacheClusterIds are used: ${ReplicationGroup}-NNN (NNN e.g., 001, 002, ..., 006 for each replica)
For cluster mode enabled replication groups (NumShards > 1), the following CacheClusterIds are used:
${ReplicationGroup}-MMMM-NNN (MMMM e.g., 00001, 0002, ... for each node group/shard id)
The following alarm would solve the issue. Unfortunately, search expressions are not supported in Alarms yet...
Monitoring ElastiCache redis is not possible in an elegant way at the moment in CloudFormation. The
CacheClusterId
CloudWatch metric dimension is constructed in a way that prevents us from creating alarms for the relevant metrics.${ReplicationGroup}-MMMM-NNN (MMMM e.g., 00001, 0002, ... for each node group/shard id)
The following alarm would solve the issue. Unfortunately, search expressions are not supported in Alarms yet...
We don't have loops in CloudFormation either.
Since we allow up to 250 Shards with up to 5 replicas each we would need too many conditions and it would bloat the template in a massive way.
Not sure what we can do here...
The text was updated successfully, but these errors were encountered: