We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6e191f5 commit 75d04aeCopy full SHA for 75d04ae
validator/src/main/java/com/amazon/aoc/validators/CWMetricValidator.java
@@ -73,6 +73,11 @@ public void validate() throws Exception {
73
Set<String> skippedDimensionNameList = new HashSet<>();
74
for (Metric metric : expectedMetricList) {
75
for (Dimension dimension : metric.getDimensions()) {
76
+
77
+ if (dimension.getValue() == null || dimension.getValue().equals("")) {
78
+ continue;
79
+ }
80
81
if (dimension.getValue().equals("SKIP")) {
82
skippedDimensionNameList.add(dimension.getName());
83
}
0 commit comments