diff options
| author | syuilo <syuilotan@yahoo.co.jp> | 2019-02-07 16:05:29 +0900 |
|---|---|---|
| committer | syuilo <syuilotan@yahoo.co.jp> | 2019-02-07 16:05:29 +0900 |
| commit | 7275bc6d3b356f3aa8ff7aef92f5abf52a18a13e (patch) | |
| tree | be1da9c8198f48ff18403dfa9e2bc2a8501d9ab0 /src/models/instance.ts | |
| parent | Merge branch 'develop' of https://github.com/syuilo/misskey into develop (diff) | |
| download | sharkey-7275bc6d3b356f3aa8ff7aef92f5abf52a18a13e.tar.gz sharkey-7275bc6d3b356f3aa8ff7aef92f5abf52a18a13e.tar.bz2 sharkey-7275bc6d3b356f3aa8ff7aef92f5abf52a18a13e.zip | |
Improve instance stats
Diffstat (limited to 'src/models/instance.ts')
| -rw-r--r-- | src/models/instance.ts | 9 |
1 files changed, 7 insertions, 2 deletions
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; } |