Skip to content

Commit 863dae7

Browse files
author
Eugene Cheung
authored
fix(glue): fix incorrect duplicate metric ID (#305)
Fixes the following error: ``` Error: Resolution error: Resolution error: Resolution error: Cannot have two different metrics share the same id ('killed') in one Alarm or Graph. Rename one of them.. ``` --- _By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license_
1 parent fa8bda8 commit 863dae7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/monitoring/aws-glue/GlueJobMetricFactory.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ export class GlueJobMetricFactory {
134134
this.metricFailedTasksSum(),
135135
this.rateComputationMethod,
136136
true,
137-
"killed",
137+
"failed",
138138
false
139139
);
140140
}

0 commit comments

Comments
 (0)