Add platform health dashboard - #3098
Draft
andreasohlund wants to merge 28 commits into
Draft
Conversation
andreasohlund
commented
Aug 28, 2026
| } | ||
|
|
||
| // 5. Audit instance is available and there are successful audit messages | ||
| // 4. All configured audit instances are available. |
Member
Author
There was a problem hiding this comment.
Not sure about this one, needs disussion
andreasohlund
commented
Aug 28, 2026
| @@ -53,34 +37,6 @@ const { configuration } = storeToRefs(configurationStore); | |||
| <a :href="newVersions.newSPVersion.newspversionlink" target="_blank">v{{ newVersions.newSPVersion.newspversionnumber }} available</a>) | |||
Member
Author
There was a problem hiding this comment.
Needs discussion: should we move this to the health page as well?
andreasohlund
commented
Aug 30, 2026
| const auditIndicators = computed(() => { | ||
| const indicators: StatusIndicator[] = []; | ||
|
|
||
| // Add an indicator for each remote audit instance |
Member
Author
There was a problem hiding this comment.
This is now presented on the platform health page
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Design decisions
Platform healthandPlatform Capabilities.PlatformModelStoreexists as the shared aggregation and normalization layer for platform state: it composes ServiceControl primary data, remote instances, and Monitoring state into one reusablePlatformModel, so feature stores and views do not each fetch, infer roles, or duplicate fallback logic independently.PlatformModelStoreshould compose typed data fromserviceControlClientandmonitoringClientrather than issuing direct fetches itself.serviceControlClient.getRoot(),serviceControlClient.getRemoteInstances(),monitoringClient.getMonitoringRoot()) soPlatformModelStorestays declarative and the client boundary is symmetric across ServiceControl and Monitoring.serviceControlClientinstead of re-declaring an ad hoc root DTO insidePlatformModelStore.PlatformModel.monitoringremainsPlatformInstance | nulland is shared by both Platform health and Platform Capabilities.primary-error,remote-error,remote-audit,monitoring).warningsconcept for now and keep the shared platform model focused on instance state.mapPrimary; when the primary root request succeeds,PlatformModelStorenow trusts the ServiceControl root payload forname,platform_health_status, andplatform_health_version, while keeping the separate fetch-failure fallback path.Show platform custom checkstoggle on the Custom Checks page so operators can still inspect those hidden built-in checks when needed.category + custom_check_id; ServiceControl reuses some custom check IDs across categories, so the frontend cannot treatcustom_check_idalone as a unique semantic identifier.PlatformHealthRowpage-specific rather than pushing table-only display semantics into the shared model.platform-healthstartup mock scenario, and usewindow.__platformHealthruntime helpers to switch topology, status, and custom-check conditions live instead of maintaining multiple startup scenario variants.Not configuredbadges for instance-not-configured states and keep capability-specific readiness semantics there.Availablewhenever Monitoring is configured and connected; use theMetricsindicator to show whether endpoints are currently sending throughput data.Availablewhenever the primary ServiceControl instance is healthy; use theFailedMessagesindicator to warn when multi-region topology makes cross-region failure management read-only.Platform healthpage, while capability-specific widgets such asMessagesandMetricsstay on the cards.danger > warning > infofor outdated-only cases, and the menu item tooltip follows the same status precedence.apiUrlfrom the shared platform model.Keep this section up to date as implementation and product decisions evolve.
Test scenarios
See
docs/frontend/platform-health-page.mdfor:Follow-ups