mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 01:38:56 -04:00
[UA] Fix hardcoded docs path (#216595)
This commit is contained in:
parent
93dafef6ae
commit
5477873daf
3 changed files with 3 additions and 4 deletions
|
@ -375,6 +375,7 @@ export const getDocLinks = ({ kibanaBranch, buildFlavor }: GetDocLinkOptions): D
|
|||
reindexWithPipeline: `${ELASTICSEARCH_DOCS}docs-reindex.html#reindex-with-an-ingest-pipeline`,
|
||||
logsDatastream: `${ELASTIC_WEBSITE_URL}guide/en/elasticsearch/reference/${DOC_LINK_VERSION}/logs-data-stream.html`,
|
||||
usingLogsDbIndexModeWithESSecurity: `${ELASTIC_WEBSITE_URL}guide/en/security/${DOC_LINK_VERSION}/detections-logsdb-index-mode-impact.html`,
|
||||
dataStreamReindex: `${ELASTICSEARCH_DOCS}data-stream-reindex-api.html#reindex-data-stream-api-settings`,
|
||||
},
|
||||
rollupJobs: `${KIBANA_DOCS}data-rollups.html`,
|
||||
elasticsearch: {
|
||||
|
|
|
@ -331,6 +331,7 @@ export interface DocLinks {
|
|||
readonly reindexWithPipeline: string;
|
||||
readonly logsDatastream: string;
|
||||
readonly usingLogsDbIndexModeWithESSecurity: string;
|
||||
readonly dataStreamReindex: string;
|
||||
};
|
||||
readonly rollupJobs: string;
|
||||
readonly elasticsearch: Record<string, string>;
|
||||
|
|
|
@ -119,10 +119,7 @@ export const ConfirmMigrationFlyoutStep: React.FunctionComponent<{
|
|||
defaultMessage="You can increase the speed of reindexing by changing throttling configuration on ES. Where changing throttling configuration allows you to utilize more resources to speed up the reindexing process. {learnMoreHtml}"
|
||||
values={{
|
||||
learnMoreHtml: (
|
||||
<EuiLink
|
||||
href={`${links.elasticsearch.docsBase}data-stream-reindex-api.html#reindex-data-stream-api-settings`}
|
||||
target="_blank"
|
||||
>
|
||||
<EuiLink href={links.upgradeAssistant.dataStreamReindex} target="_blank">
|
||||
<FormattedMessage
|
||||
id="xpack.upgradeAssistant.dataStream.migration.flyout.warningsStep.learnMoreLink"
|
||||
defaultMessage="Learn more"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue