diff --git a/x-pack/plugins/remote_clusters/public/sections/components/remote_cluster_form/remote_cluster_form.js b/x-pack/plugins/remote_clusters/public/sections/components/remote_cluster_form/remote_cluster_form.js index 791c5ea43f218..dee024944d33a 100644 --- a/x-pack/plugins/remote_clusters/public/sections/components/remote_cluster_form/remote_cluster_form.js +++ b/x-pack/plugins/remote_clusters/public/sections/components/remote_cluster_form/remote_cluster_form.js @@ -327,7 +327,7 @@ export const RemoteClusterForm = injectI18n( helpText={( )} isInvalid={showErrors} diff --git a/x-pack/plugins/remote_clusters/public/sections/remote_cluster_list/components/connection_status/connection_status.js b/x-pack/plugins/remote_clusters/public/sections/remote_cluster_list/components/connection_status/connection_status.js index c60d6f9c74a11..d316267f435e0 100644 --- a/x-pack/plugins/remote_clusters/public/sections/remote_cluster_list/components/connection_status/connection_status.js +++ b/x-pack/plugins/remote_clusters/public/sections/remote_cluster_list/components/connection_status/connection_status.js @@ -12,6 +12,7 @@ import { EuiFlexGroup, EuiFlexItem, EuiIcon, + EuiIconTip, EuiText, } from '@elastic/eui'; @@ -43,16 +44,31 @@ export function ConnectionStatus({ isConnected }) { }); } + const seedNodeTooltip = i18n.translate('xpack.remoteClusters.connectedStatus.notConnectedToolTip', { + defaultMessage: "Ensure the seed nodes are configured with the remote cluster's transport port, not the http port.", + }); + return ( - {icon} + + + {icon} + + + + + {message} + + + - - - {message} - + + );