/  Yamcs HTTP API  /  Server  /  List Client Connections

List Client ConnectionsΒΆ

List client connections

URI Template

GET /api/connections

Response Type

interface ListClientConnectionsResponse {
  connections: ClientConnectionInfo[];
}

Related Types

interface ClientConnectionInfo {
  id: string;
  open: boolean;
  active: boolean;
  writable: boolean;
  remoteAddress: string;
  readBytes: string;  // String decimal
  writtenBytes: string;  // String decimal
  readThroughput: string;  // String decimal
  writeThroughput: string;  // String decimal
  httpRequest: HttpRequestInfo;
}

interface HttpRequestInfo {
  protocol: string;
  method: string;
  uri: string;
  keepAlive: boolean;
  userAgent: string;
}