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 all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
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 @@ -124,7 +124,7 @@ export const JobSetupScreen = (props: Props) => {
<EuiTitle size="m">
<h2>
<FormattedMessage
defaultMessage="Enable Machine Learning for {nodeType}"
defaultMessage="Enable machine learning for {nodeType}"
id="xpack.infra.ml.aomalyFlyout.jobSetup.flyoutHeader"
values={{ nodeType: props.jobType }}
/>
Expand Down 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, however, the previously detected anomalies are removed."
/>
</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 last 4 weeks of data and continue to run indefinitely."
/>
}
>
Expand Down Expand Up @@ -216,7 +216,7 @@ export const JobSetupScreen = (props: Props) => {
description={
<FormattedMessage
id="xpack.infra.ml.steps.setupProcess.partition.description"
defaultMessage="Partitions allow you to build independent models for different groups of data that share similar behavior. For example, you may want to build seperate models for machine type or cloud availability zone so that anomalies are not weighted equally across groups."
defaultMessage="Partitions enable you to build independent models for groups of data that share similar behavior. For example, you can partition by machine type or cloud availability zone."
/>
}
>
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