OSS-first docs
These docs teach the open system first: contracts, generated surfaces, runtimes, governance, and incremental adoption. Studio shows up as the operating layer on top, not as the source of truth.
Integration health monitoring dashboard
Goal
Monitor connectivity and error rates for active integrations.
Context
Operations dashboard for integration hub health.
Source Definition
import {
definePresentation,
StabilityEnum,
} from '@lssm-tech/lib.contracts-spec';
import { IntegrationModel } from './integration.schema';
export const IntegrationHealthPresentation = definePresentation({
meta: {
key: 'integration.health',
version: '1.0.0',
title: 'Integration Health',
description: 'Integration health monitoring dashboard',
domain: 'integration',
owners: ['@integration-team'],
tags: ['integration', 'health', 'monitoring'],
stability: StabilityEnum.Experimental,
goal: 'Monitor connectivity and error rates for active integrations.',
context: 'Operations dashboard for integration hub health.',
},
source: {
type: 'component',
framework: 'react',
componentKey: 'IntegrationHealth',
},
targets: ['react', 'markdown'],
policy: {
flags: ['integration.monitoring.enabled'],
},
});