Commit 57363201 by Mitsuhiro Tanda

cloudwatch dimension null check

parent 36ab8ae1
......@@ -129,7 +129,7 @@ function (angular, _) {
.pluck('Dimensions')
.flatten()
.filter(function(dimension) {
return dimension.Name === dimensionKey;
return dimension !== null && dimension.Name === dimensionKey;
})
.pluck('Value')
.uniq()
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment