tstor/ui/lib/api/torrent_stats.graphql
2024-08-15 11:23:44 +03:00

13 lines
No EOL
237 B
GraphQL

query TorrentTotalStats($since: DateTime!) {
torrentDaemon {
statsHistory(since: $since) {
timestamp
downloadedBytes
uploadedBytes
totalPeers
activePeers
connectedSeeders
}
}
}