diff --git a/assets/js/components/HostDetails/HostDetails.jsx b/assets/js/components/HostDetails/HostDetails.jsx index 88bdd5a78b..3f2a02dc4f 100644 --- a/assets/js/components/HostDetails/HostDetails.jsx +++ b/assets/js/components/HostDetails/HostDetails.jsx @@ -17,9 +17,11 @@ import DeregistrationModal from '@components/DeregistrationModal'; import { canStartExecution } from '@components/ChecksSelection'; import SuseLogo from '@static/suse_logo.svg'; +import ChecksComingSoon from '@static/checks-coming-soon.svg'; import StatusPill from './StatusPill'; import ProviderDetails from './ProviderDetails'; +import SaptuneSummary from './SaptuneSummary'; import { subscriptionsTableConfiguration, @@ -36,10 +38,12 @@ function HostDetails({ heartbeat, hostID, hostname, + ipAddresses = [], provider, providerData, sapInstances, savingChecks, + saptuneStatus = {}, selectedChecks = [], slesSubscriptions, cleanUpHost, @@ -50,6 +54,12 @@ function HostDetails({ const versionWarningMessage = agentVersionWarning(agentVersion); + const { + package_version: saptuneVersion, + configured_version: saptuneConfiguredVersion, + tuning_state: saptuneTuning, + } = saptuneStatus; + const renderedExporters = Object.entries(exportersStatus).map( ([exporterName, exporterStatus]) => ( {versionWarningMessage} )} -
- , - }, - { title: 'Agent version', content: agentVersion }, - ]} - /> +
+
+ , + }, + { title: 'Agent Version', content: agentVersion }, + { title: 'IP addresses', content: ipAddresses.join(',') }, + ]} + /> +
+
+ +
+
+
+

Check Results

+
Coming soon for Hosts
+ checks coming soon +
+