Mediloop
CLINICAL DEVICE CONNECTORS

Alerts & Events

8 of 10

Connect clinical devices and professional peripherals through standards-based local, network and vendor-specific interfaces.

Threshold alertsEvent streamAcknowledgementsSubscriptionsRulesEscalation
Event and alert types
TypeExamplesTypical destination
Clinical measurement eventNew observation, waveform packet, trend updateFHIR ingest + patient timeline
Device status eventDisconnected, battery low, sensor removedOperations dashboard / workflow
Threshold alertHigh BP, low SpO2, abnormal rhythm indicatorClinical alerts / escalation
Workflow eventScan completed, transcript ready, print job doneWorkflow engine / task list
Operational errorParse error, driver failure, timeoutMonitoring, support and retries
Alert governance
Define which alerts are informational vs actionable.
Deduplicate and throttle noisy device events.
Always preserve source severity and acknowledge state.
Escalation rules should be explicit and testable.
Signal quality
Alert routing should balance safety and alarm fatigue; not every device event becomes a user-facing clinical alert.
Alert pipeline
1
Device emits event
Measurement, status or alert
2
Validate & enrich
Identity, patient context, severity
3
Apply rules
Thresholds, dedupe, escalation
4
Deliver
In-app, workflow or notifications
5
Acknowledge
Track response and closure
6
Audit & analyze
Latency, outcomes, volumes
Subscription example
typescriptCopy
agent.events.subscribe({
  connectorId: 'monitoring-gateway-01',
  eventTypes: ['observation.created', 'device.alert', 'device.status.changed'],
  callbackUrl: '/api/webhooks/devices',
  filters: { siteId: 'lux-clinic-01', severity: ['high', 'critical'] },
});