mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 17:59:23 -04:00
[ML] Changing wording of awaiting ML nodes messages (#167306)
Updates the text for the info callouts which are displayed when anomaly detection jobs are waiting for a node. @szabosteve would you mind having a review of the text? **Jobs list**  **Creating a new job**  Fixes https://github.com/elastic/kibana/issues/165472 --------- Co-authored-by: István Zoltán Szabó <istvan.szabo@elastic.co>
This commit is contained in:
parent
b2271a9fd7
commit
55a86ba120
3 changed files with 3 additions and 3 deletions
|
@ -37,7 +37,7 @@ export const JobsAwaitingNodeWarning: FC<Props> = ({ jobCount }) => {
|
|||
<div>
|
||||
<FormattedMessage
|
||||
id="xpack.ml.jobsAwaitingNodeWarning.noMLNodesAvailableDescription"
|
||||
defaultMessage="There {jobCount, plural, one {is} other {are}} {jobCount, plural, one {# job} other {# jobs}} waiting for machine learning nodes to start."
|
||||
defaultMessage="{jobCount, plural, one {# job} other {# jobs}} will start after autoscaling has increased ML capacity. This may take several minutes."
|
||||
values={{
|
||||
jobCount,
|
||||
}}
|
||||
|
|
|
@ -38,7 +38,7 @@ export const NewJobAwaitingNodeWarning: FC<Props> = () => {
|
|||
<div>
|
||||
<FormattedMessage
|
||||
id="xpack.ml.newJobAwaitingNodeWarning.noMLNodesAvailableDescription"
|
||||
defaultMessage="There are currently no nodes that can run the job, therefore it will remain in OPENING state until an appropriate node becomes available."
|
||||
defaultMessage="There are currently no nodes that can run the job, therefore it will remain in OPENING state until autoscaling increases ML capacity. This may take several minutes."
|
||||
/>
|
||||
</div>
|
||||
</EuiCallOut>
|
||||
|
|
|
@ -107,7 +107,7 @@ const MLJobsAwaitingNodeWarning: FC<Props> = ({ jobIds }) => {
|
|||
<div>
|
||||
<FormattedMessage
|
||||
id="xpack.ml.jobsAwaitingNodeWarningShared.noMLNodesAvailableDescription"
|
||||
defaultMessage="There {jobCount, plural, one {is} other {are}} {jobCount, plural, one {# job} other {# jobs}} waiting for machine learning nodes to start."
|
||||
defaultMessage="{jobCount, plural, one {# job} other {# jobs}} will start after autoscaling has increased ML capacity. This may take several minutes."
|
||||
values={{
|
||||
jobCount: unassignedJobCount,
|
||||
}}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue