mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 17:59:23 -04:00
[ML] Add transforms to doc links service (#86036)
This commit is contained in:
parent
e48dbf3c57
commit
5c64db9695
4 changed files with 7 additions and 1 deletions
|
@ -102,6 +102,7 @@ readonly links: {
|
|||
};
|
||||
readonly management: Record<string, string>;
|
||||
readonly ml: Record<string, string>;
|
||||
readonly transforms: Record<string, string>;
|
||||
readonly visualize: Record<string, string>;
|
||||
};
|
||||
```
|
||||
|
|
File diff suppressed because one or more lines are too long
|
@ -148,6 +148,9 @@ export class DocLinksService {
|
|||
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`,
|
||||
},
|
||||
transforms: {
|
||||
guide: `${ELASTIC_WEBSITE_URL}guide/en/elasticsearch/reference/${DOC_LINK_VERSION}/transforms.html`,
|
||||
},
|
||||
visualize: {
|
||||
guide: `${ELASTIC_WEBSITE_URL}guide/en/kibana/${DOC_LINK_VERSION}/visualize.html`,
|
||||
timelionDeprecation: `${ELASTIC_WEBSITE_URL}guide/en/kibana/${DOC_LINK_VERSION}/dashboard.html#timelion-deprecation`,
|
||||
|
@ -258,6 +261,7 @@ export interface DocLinksStart {
|
|||
};
|
||||
readonly management: Record<string, string>;
|
||||
readonly ml: Record<string, string>;
|
||||
readonly transforms: Record<string, string>;
|
||||
readonly visualize: Record<string, string>;
|
||||
};
|
||||
}
|
||||
|
|
|
@ -574,6 +574,7 @@ export interface DocLinksStart {
|
|||
};
|
||||
readonly management: Record<string, string>;
|
||||
readonly ml: Record<string, string>;
|
||||
readonly transforms: Record<string, string>;
|
||||
readonly visualize: Record<string, string>;
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue