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.
Real-time sync activity monitor
Goal
Monitor live data flow and sync performance.
Context
Real-time operations monitor.
Source Definition
import {
definePresentation,
StabilityEnum,
} from '@lssm-tech/lib.contracts-spec';
import {
FieldMappingModel,
SyncConfigModel,
SyncRunModel,
} from './sync.schema';
export const SyncActivityPresentation = definePresentation({
meta: {
key: 'integration.sync.activity',
version: '1.0.0',
title: 'Sync Activity Monitor',
description: 'Real-time sync activity monitor',
domain: 'integration',
owners: ['@integration-team'],
tags: ['integration', 'sync', 'activity', 'realtime'],
stability: StabilityEnum.Experimental,
goal: 'Monitor live data flow and sync performance.',
context: 'Real-time operations monitor.',
},
source: {
type: 'component',
framework: 'react',
componentKey: 'SyncActivity',
},
targets: ['react', 'markdown'],
policy: {
flags: ['integration.sync.enabled'],
},
});