mirror of
https://github.com/elastic/kibana.git
synced 2025-04-25 02:09:32 -04:00
[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:
parent
90f38a6388
commit
bebcd354d3
2 changed files with 4 additions and 4 deletions
|
@ -16,7 +16,7 @@ exports[`DownNoExpressionSelect component should renders against props 1`] = `
|
||||||
<span
|
<span
|
||||||
class="euiExpression__description emotion-euiExpression__description-success-isUppercase"
|
class="euiExpression__description emotion-euiExpression__description-success-isUppercase"
|
||||||
>
|
>
|
||||||
matching monitors are down >
|
matching monitors are down >=
|
||||||
</span>
|
</span>
|
||||||
|
|
||||||
<span
|
<span
|
||||||
|
@ -42,7 +42,7 @@ exports[`DownNoExpressionSelect component should shallow renders against props 1
|
||||||
/>
|
/>
|
||||||
}
|
}
|
||||||
data-test-subj="xpack.synthetics.alerts.monitorStatus.numTimesExpression"
|
data-test-subj="xpack.synthetics.alerts.monitorStatus.numTimesExpression"
|
||||||
description="matching monitors are down >"
|
description="matching monitors are down >="
|
||||||
id="ping-count"
|
id="ping-count"
|
||||||
value="5 times"
|
value="5 times"
|
||||||
/>
|
/>
|
||||||
|
|
|
@ -117,14 +117,14 @@ export const ENTER_NUMBER_OF_DOWN_COUNTS = i18n.translate(
|
||||||
export const MATCHING_MONITORS_DOWN = i18n.translate(
|
export const MATCHING_MONITORS_DOWN = i18n.translate(
|
||||||
'xpack.synthetics.alerts.monitorStatus.numTimesExpression.matchingMonitors.description',
|
'xpack.synthetics.alerts.monitorStatus.numTimesExpression.matchingMonitors.description',
|
||||||
{
|
{
|
||||||
defaultMessage: 'matching monitors are down >',
|
defaultMessage: 'matching monitors are down >=',
|
||||||
}
|
}
|
||||||
);
|
);
|
||||||
|
|
||||||
export const ANY_MONITOR_DOWN = i18n.translate(
|
export const ANY_MONITOR_DOWN = i18n.translate(
|
||||||
'xpack.synthetics.alerts.monitorStatus.numTimesExpression.anyMonitors.description',
|
'xpack.synthetics.alerts.monitorStatus.numTimesExpression.anyMonitors.description',
|
||||||
{
|
{
|
||||||
defaultMessage: 'any monitor is down >',
|
defaultMessage: 'any monitor is down >=',
|
||||||
}
|
}
|
||||||
);
|
);
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue