Add bandwidth monitors (#100)

This commit is contained in:
Maciej Hirsz
2019-01-31 12:43:53 +01:00
committed by GitHub
parent 6f2863a771
commit 052f5c846c
8 changed files with 72 additions and 7 deletions
+2
View File
@@ -57,6 +57,8 @@ export interface SystemInterval extends BestBlock {
memory: Maybe<Types.MemoryUse>;
cpu: Maybe<Types.CPUUse>;
status: 'Idle' | string; // TODO: 'Idle' | ...?
bandwidth_upload: Maybe<Types.BytesPerSecond>;
bandwidth_download: Maybe<Types.BytesPerSecond>;
}
export interface NodeStart extends BestBlock {