Yamcs HTTP API
- Activities
- Alarms
- Audit
- Buckets
- Clearance
- Commands
- COP-1
- Database
- Events
- File Transfer
- IAM
- Indexes
- Instances
- Links
- MDB Override
- MDB
- Packets
- Parameter Archive
- Parameter Lists
- Parameter Values
- Processing
- Queues
- Replication
- RocksDB
- Server
- Services
- Sessions
- Stream Archive
- Table
- Time Correlation
- Time
- Timeline
Related
Yamcs Release Notes
Yamcs Server Manual
Source Code Documentation
Download this Document
Get Http TrafficΒΆ
Get HTTP traffic
URI Template
GET /api/http-traffic
Response Type
interface HttpTraffic {
readBytes: string; // String decimal
writtenBytes: string; // String decimal
readThroughput: string; // String decimal
writeThroughput: string; // String decimal
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;
username: string;
}
interface HttpRequestInfo {
protocol: string;
method: string;
uri: string;
keepAlive: boolean;
userAgent: string;
}