mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 09:48:58 -04:00
This commit is contained in:
parent
8309a5aaf9
commit
360a304358
4 changed files with 13 additions and 19 deletions
|
@ -101,12 +101,7 @@ readonly links: {
|
|||
readonly dateMath: string;
|
||||
};
|
||||
readonly management: Record<string, string>;
|
||||
readonly ml: {
|
||||
readonly guide: string;
|
||||
readonly anomalyDetection: string;
|
||||
readonly anomalyDetectionJobs: string;
|
||||
readonly dataFrameAnalytics: string;
|
||||
};
|
||||
readonly ml: Record<string, string>;
|
||||
readonly visualize: Record<string, string>;
|
||||
};
|
||||
```
|
||||
|
|
File diff suppressed because one or more lines are too long
|
@ -136,9 +136,18 @@ export class DocLinksService {
|
|||
},
|
||||
ml: {
|
||||
guide: `${ELASTIC_WEBSITE_URL}guide/en/machine-learning/${DOC_LINK_VERSION}/index.html`,
|
||||
aggregations: `${ELASTIC_WEBSITE_URL}guide/en/machine-learning/${DOC_LINK_VERSION}/ml-configuring-aggregation.html`,
|
||||
anomalyDetection: `${ELASTIC_WEBSITE_URL}guide/en/machine-learning/${DOC_LINK_VERSION}/xpack-ml.html`,
|
||||
anomalyDetectionJobs: `${ELASTIC_WEBSITE_URL}guide/en/machine-learning/${DOC_LINK_VERSION}/ml-jobs.html`,
|
||||
anomalyDetectionJobTips: `${ELASTIC_WEBSITE_URL}guide/en/machine-learning/${DOC_LINK_VERSION}/create-jobs.html#job-tips`,
|
||||
calendars: `${ELASTIC_WEBSITE_URL}guide/en/machine-learning/${DOC_LINK_VERSION}/ml-calendars.html`,
|
||||
classificationEvaluation: `${ELASTIC_WEBSITE_URL}guide/en/machine-learning/${DOC_LINK_VERSION}/ml-dfanalytics-evaluate.html#ml-dfanalytics-classification`,
|
||||
customRules: `${ELASTIC_WEBSITE_URL}guide/en/machine-learning/${DOC_LINK_VERSION}/ml-rules.html`,
|
||||
customUrls: `${ELASTIC_WEBSITE_URL}guide/en/machine-learning/${DOC_LINK_VERSION}/ml-configuring-url.html`,
|
||||
dataFrameAnalytics: `${ELASTIC_WEBSITE_URL}guide/en/machine-learning/${DOC_LINK_VERSION}/ml-dfanalytics.html`,
|
||||
featureImportance: `${ELASTIC_WEBSITE_URL}guide/en/machine-learning/${DOC_LINK_VERSION}/ml-feature-importance.html`,
|
||||
outlierDetectionRoc: `${ELASTIC_WEBSITE_URL}guide/en/machine-learning/${DOC_LINK_VERSION}/ml-dfanalytics-evaluate.html#ml-dfanalytics-roc`,
|
||||
regressionEvaluation: `${ELASTIC_WEBSITE_URL}guide/en/machine-learning/${DOC_LINK_VERSION}/ml-dfanalytics-evaluate.html#ml-dfanalytics-regression-evaluation`,
|
||||
},
|
||||
visualize: {
|
||||
guide: `${ELASTIC_WEBSITE_URL}guide/en/kibana/${DOC_LINK_VERSION}/visualize.html`,
|
||||
|
@ -249,12 +258,7 @@ export interface DocLinksStart {
|
|||
readonly dateMath: string;
|
||||
};
|
||||
readonly management: Record<string, string>;
|
||||
readonly ml: {
|
||||
readonly guide: string;
|
||||
readonly anomalyDetection: string;
|
||||
readonly anomalyDetectionJobs: string;
|
||||
readonly dataFrameAnalytics: string;
|
||||
};
|
||||
readonly ml: Record<string, string>;
|
||||
readonly visualize: Record<string, string>;
|
||||
};
|
||||
}
|
||||
|
|
|
@ -573,12 +573,7 @@ export interface DocLinksStart {
|
|||
readonly dateMath: string;
|
||||
};
|
||||
readonly management: Record<string, string>;
|
||||
readonly ml: {
|
||||
readonly guide: string;
|
||||
readonly anomalyDetection: string;
|
||||
readonly anomalyDetectionJobs: string;
|
||||
readonly dataFrameAnalytics: string;
|
||||
};
|
||||
readonly ml: Record<string, string>;
|
||||
readonly visualize: Record<string, string>;
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue