[Uptime] Fix monitor alert label (#145112)

## Summary

Closes #143895

Updates the label for the status check labels to reflect what the alert
does.

Co-authored-by: Kibana Machine <42973632+kibanamachine@users.noreply.github.com>
This commit is contained in:
Alejandro Fernández Gómez 2022-11-14 19:42:24 +01:00 committed by GitHub
parent 90f38a6388
commit bebcd354d3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 4 deletions

View file

@ -16,7 +16,7 @@ exports[`DownNoExpressionSelect component should renders against props 1`] = `
<span
class="euiExpression__description emotion-euiExpression__description-success-isUppercase"
>
matching monitors are down &gt;
matching monitors are down &gt;=
</span>
<span
@ -42,7 +42,7 @@ exports[`DownNoExpressionSelect component should shallow renders against props 1
/>
}
data-test-subj="xpack.synthetics.alerts.monitorStatus.numTimesExpression"
description="matching monitors are down >"
description="matching monitors are down >="
id="ping-count"
value="5 times"
/>

View file

@ -117,14 +117,14 @@ export const ENTER_NUMBER_OF_DOWN_COUNTS = i18n.translate(
export const MATCHING_MONITORS_DOWN = i18n.translate(
'xpack.synthetics.alerts.monitorStatus.numTimesExpression.matchingMonitors.description',
{
defaultMessage: 'matching monitors are down >',
defaultMessage: 'matching monitors are down >=',
}
);
export const ANY_MONITOR_DOWN = i18n.translate(
'xpack.synthetics.alerts.monitorStatus.numTimesExpression.anyMonitors.description',
{
defaultMessage: 'any monitor is down >',
defaultMessage: 'any monitor is down >=',
}
);