/  Yamcs HTTP API  /  Parameter Archive  /  Subscribe Backfilling

Subscribe BackfillingΒΆ

Receive backfill notifications

WebSocket

This method requires to upgrade an HTTP connection to WebSocket. See details on how Yamcs uses WebSocket.

Use the message type backfilling.

Input Type

interface SubscribeBackfillingRequest {

  // Yamcs instance name
  instance: string;
}

Output Type

interface SubscribeBackfillingData {

  // Recently finished backfills (bundled over a 5 second interval)
  finished: BackfillFinishedInfo[];
}

Related Types

// Notification message when a backfill finished
interface BackfillFinishedInfo {

  // Range start
  start: string;  // RFC 3339 timestamp

  // Range stop
  stop: string;  // RFC 3339 timestamp

  // Number of processed parameters
  processedParameters: string;  // String decimal
}