From 7275bc6d3b356f3aa8ff7aef92f5abf52a18a13e Mon Sep 17 00:00:00 2001 From: syuilo Date: Thu, 7 Feb 2019 16:05:29 +0900 Subject: Improve instance stats --- src/models/instance.ts | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) (limited to 'src/models/instance.ts') diff --git a/src/models/instance.ts b/src/models/instance.ts index 7a94a0a041..904ed95dc0 100644 --- a/src/models/instance.ts +++ b/src/models/instance.ts @@ -44,12 +44,17 @@ export interface IInstance { followersCount: number; /** - * 最近の通信日時 + * 直近のリクエスト送信日時 */ latestRequestSentAt?: Date; /** - * 最近の通信のHTTPステータス + * 直近のリクエスト送信時のHTTPステータスコード */ latestStatus?: number; + + /** + * 直近のリクエスト受信日時 + */ + latestRequestReceivedAt?: Date; } -- cgit v1.2.3-freya