Skip to content

Commit

Permalink
Removes going-to-run event
Browse files Browse the repository at this point in the history
  • Loading branch information
spong committed Feb 7, 2022
1 parent cdb317b commit 825b103
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ export const createEventLogReader = (eventLog: IEventLogClient): IEventLogReader
metricsFields.forEach((field) => {
set(aggregatedResults[uuid], field, get(event, field));
});
} else if (eventAction === 'status-change' && status !== 'going to run') {
} else if (eventAction === 'status-change' && status !== 'running') {
if (status != null) {
set(aggregatedResults[uuid], 'kibana.alert.rule.execution.status', status);
}
Expand Down

0 comments on commit 825b103

Please sign in to comment.