Improve instance stats

This commit is contained in:
syuilo
2019-02-07 16:05:29 +09:00
parent 485f2f460e
commit 7275bc6d3b
2 changed files with 18 additions and 2 deletions

View File

@ -44,12 +44,17 @@ export interface IInstance {
followersCount: number;
/**
* 近の信日時
* 近のリクエスト送信日時
*/
latestRequestSentAt?: Date;
/**
* 近の通信のHTTPステータス
* 近のリクエスト送信時のHTTPステータスコード
*/
latestStatus?: number;
/**
* 直近のリクエスト受信日時
*/
latestRequestReceivedAt?: Date;
}