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

[Backport 2.4] [MD]Update MD data source documentation link #2800

Merged
merged 1 commit into from
Nov 4, 2022
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
6 changes: 6 additions & 0 deletions src/core/public/doc_links/doc_links_service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -403,6 +403,9 @@ export class DocLinksService {
loadingData: `${OPENSEARCH_WEBSITE_DOCS}`,
introduction: `${OPENSEARCH_WEBSITE_DOCS}`,
},
dataSource: {
guide: `${OPENSEARCH_DASHBOARDS_VERSIONED_DOCS}discover/multi-data-sources/`,
},
management: {
opensearchDashboardsGeneralSettings: `${OPENSEARCH_WEBSITE_DOCS}`,
opensearchDashboardsSearchSettings: `${OPENSEARCH_WEBSITE_DOCS}`,
Expand Down Expand Up @@ -759,6 +762,9 @@ export interface DocLinksStart {
readonly loadingData: string;
readonly introduction: string;
};
readonly dataSource: {
readonly guide: string;
};
readonly scriptedFields: {
readonly scriptFields: string;
readonly scriptAggs: string;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ export const ExperimentalCallout = ({ docLinks }: { docLinks: DocLinksStart }) =
defaultMessage="This feature is experimental and should not be used in a production environment. Any index patterns, visualization, and observability panels will be impacted if the feature is deactivated. For more information see "
/>
}
<EuiLink href={docLinks.links.noDocumentation.indexPatterns.introduction} target="_blank">
<EuiLink href={docLinks.links.noDocumentation.dataSource.guide} target="_blank">
{
<FormattedMessage
id="dataSourcesManagement.experimentalFeatureCallout.documentationText"
Expand Down