Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fine-tunes ML related text on Metrics UI #79425

Merged
merged 7 commits into from
Oct 6, 2020
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -232,7 +232,7 @@ const CreateJobTab = (props: CreateJobTab) => {
}
description={
<FormattedMessage
defaultMessage="Detect anomalies for memory usage and network traffic."
defaultMessage="Detect anomalies for memory usage and network traffic on hosts."
id="xpack.infra.ml.anomalyFlyout.create.hostDescription"
/>
}
Expand Down Expand Up @@ -270,7 +270,7 @@ const CreateJobTab = (props: CreateJobTab) => {
}
description={
<FormattedMessage
defaultMessage="Detect anomalies for memory usage and network traffic."
defaultMessage="Detect anomalies for memory usage and network traffic on Kubernetes Pods."
id="xpack.infra.ml.anomalyFlyout.create.k8sDescription"
/>
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ export const JobSetupScreen = (props: Props) => {
<p>
<FormattedMessage
id="xpack.infra.ml.steps.setupProcess.description"
defaultMessage="Answer the following questions to configure Machine Learning jobs for Metrics. These settings can not be changed once the jobs are created. You can recreate these jobs later; however, any previously detected anomalies will be removed as a result."
defaultMessage="Settings can not be changed once the jobs are created. You can recreate jobs anytime. In this case, the previously detected anomalies will be removed."
szabosteve marked this conversation as resolved.
Show resolved Hide resolved
/>
</p>
</EuiText>
Expand All @@ -183,7 +183,7 @@ export const JobSetupScreen = (props: Props) => {
description={
<FormattedMessage
id="xpack.infra.ml.steps.setupProcess.when.description"
defaultMessage="By default, Machine Learning jobs will analyze the past 4 weeks of data and continue to run indefinitely. You can specify a different start date, end date, or both. We recommend that you run jobs indefinitely."
defaultMessage="By default, Machine Learning jobs analyze the past 4 weeks of data and continue to run indefinitely."
szabosteve marked this conversation as resolved.
Show resolved Hide resolved
/>
}
>
Expand Down Expand Up @@ -267,7 +267,7 @@ export const JobSetupScreen = (props: Props) => {
<EuiButton fill={true} fullWidth={false} onClick={createJobs}>
<FormattedMessage
id="xpack.infra.ml.steps.setupProcess.enableButton"
defaultMessage="Enable Jobs"
defaultMessage="Enable jobs"
/>
</EuiButton>
</EuiFlexItem>
Expand Down